:root {
  --ink: #171717;
  --muted: #6f706d;
  --paper: #f7f3ed;
  --surface: #fffaf3;
  --olive: #4d5a43;
  --olive-dark: #263128;
  --wine: #5a2029;
  --sand: #d8c9b2;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 22px 60px rgba(22, 24, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#products,
#projects,
#process,
#quote {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 44px;
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 154px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.header-socials {
  position: absolute;
  top: 50%;
  right: 184px;
  display: flex;
  gap: 8px;
  transform: translateY(-50%);
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.82;
  transition: opacity 160ms ease, background 160ms ease;
}

.header-socials a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .header-socials a:hover,
.site-header.is-open .header-socials a:hover {
  background: rgba(77, 90, 67, 0.08);
}

.header-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 92px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.nav-item > a {
  opacity: 0.86;
}

.main-nav a:hover,
.nav-item:hover > a {
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 250px;
  padding: 12px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 12px;
  text-transform: none;
  opacity: 0.82;
}

.nav-dropdown a:hover {
  color: var(--wine);
  background: rgba(90, 32, 41, 0.06);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-call {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 13, 0.78), rgba(13, 17, 13, 0.36) 54%, rgba(13, 17, 13, 0.22)),
    linear-gradient(180deg, rgba(13, 17, 13, 0.25), rgba(13, 17, 13, 0.14));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 88px));
  margin-left: 44px;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: 1.02;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--olive);
}

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

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

.button.full {
  width: 100%;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: -54px auto 0;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.trust-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 108px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(77, 90, 67, 0.24);
  border-radius: 50%;
  color: var(--olive);
  background: rgba(77, 90, 67, 0.08);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text,
.trust-text strong,
.trust-text span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-pad {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 72px;
  align-items: end;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(22, 24, 20, 0.08);
}

.product-card-link {
  display: block;
  height: 100%;
}

.product-card-link:hover img {
  transform: scale(1.025);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-content {
  padding: 24px;
}

.product-content span {
  display: block;
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.interior-product {
  width: 100%;
  color: #fff;
  background: var(--olive-dark);
}

.interior-product-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.interior-product-mark {
  min-height: 360px;
  overflow: hidden;
  background: #d6c8b8;
}

.interior-product-mark img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 48%;
}

.interior-product-copy {
  max-width: 650px;
}

.interior-product-copy h2 {
  color: #fff;
}

.interior-product-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.interior-product-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.interior-product-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.interior-product-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sand);
}

.project-feature {
  border-top: 1px solid var(--line);
}

.project-carousel-window {
  position: relative;
  overflow: hidden;
}

.project-carousel-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.project-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  flex: 0 0 100%;
  gap: 64px;
  align-items: center;
}

.feature-media {
  background: #e8dfd0;
  padding: 18px;
}

.feature-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.feature-media img.project-image-bright {
  filter: brightness(1.15) contrast(0.92) saturate(1.04);
}

.feature-media img.project-image-wide {
  object-position: center center;
}

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

.project-before-after figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.project-before-after span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 8px 11px;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-media.project-before-after img {
  display: block;
  min-height: 440px;
  height: 440px;
  object-fit: cover;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.project-specs {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.project-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.project-specs dt {
  color: var(--wine);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-specs dd {
  margin: 0;
  color: var(--ink);
}

.project-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.projects-hero .product-hero-media img {
  object-position: center 42%;
}

.projects-hero + .product-facts {
  display: none;
}

.projects-index {
  border-top: 1px solid var(--line);
}

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

.project-list-card {
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 90, 67, 0.42);
  box-shadow: var(--shadow);
}

.project-list-card a {
  display: grid;
  height: 100%;
}

.project-list-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-body {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.project-card-meta {
  color: var(--wine);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.project-card-body p {
  margin: 0;
  color: var(--muted);
}

.project-card-body dl {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}

.project-card-body dl div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.project-card-body dt {
  color: var(--wine);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-card-body dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.project-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.project-detail-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.project-detail-specs {
  margin: 0;
}

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

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

.project-gallery-grid figure {
  grid-column: span 4;
  margin: 0;
}

.project-gallery-grid .project-gallery-wide {
  grid-column: span 8;
}

.project-gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-gallery-grid img.project-image-top {
  object-position: center top;
}

.project-gallery-grid video {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #111;
}

.project-gallery-grid .project-gallery-wide img {
  height: 420px;
}

.project-gallery-grid .project-gallery-wide video {
  height: 420px;
}

.project-gallery-grid figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.carousel-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 28px;
  line-height: 1;
}

.carousel-arrow:hover {
  color: #fff;
  background: var(--olive);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(23, 23, 23, 0.22);
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.carousel-dots button.is-active {
  width: 30px;
  background: var(--olive);
}

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

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

.steps article {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.62);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 34px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(77, 90, 67, 0.24);
  border-radius: 50%;
  color: var(--olive);
  background: rgba(77, 90, 67, 0.08);
}

.step-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 72px;
  align-items: start;
  padding: 94px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--olive-dark);
}

.service-areas {
  background: #f5f2ec;
}

.service-areas-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.service-areas-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.service-area-grid a {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.service-area-grid a:hover {
  border-color: var(--olive);
  color: var(--maroon);
}

.quote-copy h2 {
  max-width: 650px;
}

.quote-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.phone-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--sand);
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
}

.quote-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
}

.quote-card h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.quote-card p {
  color: var(--muted);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

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

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.quote-form input:focus,
.quote-form select:focus {
  outline: 2px solid rgba(77, 90, 67, 0.24);
  border-color: var(--olive);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.95fr;
  gap: 48px;
  padding: 54px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #151515;
}

.site-footer img {
  width: 150px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 360px;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 14px;
  color: #fff;
}

.site-footer a {
  margin-bottom: 8px;
}

.footer-service-areas a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1024px) {
  .site-header {
    padding: 16px 28px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: min(680px, calc(100% - 56px));
    margin-left: 28px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .trust-strip,
  .product-grid,
  .project-card-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .interior-product-inner,
  .project-slide,
  .project-detail-intro,
  .service-areas-inner,
  .quote-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .interior-product-mark {
    min-height: 280px;
  }

  .interior-product-mark img {
    height: 360px;
  }

  .project-before-after {
    grid-template-columns: 1fr;
  }

  .project-gallery-grid .project-gallery-wide,
  .project-gallery-grid figure {
    grid-column: span 6;
  }

  .feature-media.project-before-after img {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .brand img {
    width: 132px;
  }

  .header-socials {
    right: 72px;
    gap: 6px;
  }

  .header-socials a {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-item {
    display: grid;
    gap: 12px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 6px 0 0 12px;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 12px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(13, 17, 13, 0.82), rgba(13, 17, 13, 0.36));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 72px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy,
  .intro p:last-child,
  .feature-copy p,
  .quote-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .product-grid,
  .interior-product-points,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .trust-strip div {
    min-height: 92px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section-pad {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .service-areas-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding: 72px 0;
  }

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

  .product-card img {
    height: 250px;
  }

  .interior-product-inner {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .interior-product-mark {
    min-height: 230px;
  }

  .interior-product-mark img {
    height: 300px;
    object-position: center center;
  }

  .interior-product-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .feature-media {
    padding: 10px;
  }

  .feature-media img {
    min-height: 280px;
  }

  .project-carousel-controls {
    margin-top: 24px;
  }

  .project-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .project-card-grid {
    grid-template-columns: 1fr;
  }

  .project-card-body {
    padding: 22px;
  }

  .project-card-body h3 {
    font-size: 22px;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-grid .project-gallery-wide,
  .project-gallery-grid figure {
    grid-column: auto;
  }

  .project-gallery-grid img,
  .project-gallery-grid video,
  .project-gallery-grid .project-gallery-wide img {
    height: 280px;
  }

  .project-gallery-grid .project-gallery-wide video {
    height: 280px;
  }

  .quote-section {
    padding: 70px 18px;
  }

  .quote-form {
    padding: 20px;
  }
}
