/* Open-source font licenses are included in /fonts/LICENSE-*.txt. */
@font-face {
  font-family: "Anton";
  src: url("/fonts/anton-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 500;
  size-adjust: 95%;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 900;
  size-adjust: 97.5%;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/roboto-condensed-latin-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  size-adjust: 103%;
  font-display: swap;
}

:root {
  --ink: #181914;
  --ink-soft: #34352e;
  --paper: #f5f3ed;
  --white: #fff;
  --copper: #b96030;
  --copper-bright: #d36835;
  --sage: #aab0a0;
  --line: rgba(24, 25, 20, 0.18);
  --shell: min(100% - 64px, 1420px);
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --condensed: "Roboto Condensed", "Arial Narrow", var(--body);
  --display-leading: 0.94;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #1679c4;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 156px);
}

.utility-bar {
  min-height: 34px;
  padding: 7px max(24px, calc((100vw - 1420px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: #f0a67d;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 110px;
  padding-inline: max(24px, calc((100vw - 1420px) / 2));
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.5vw, 44px);
  background: rgba(245, 243, 237, 0.96);
  border-bottom: 1px solid rgba(24, 25, 20, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  width: 300px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  font-family: var(--condensed);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.desktop-nav a {
  padding-block: 8px;
  position: relative;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.resources-nav {
  position: relative;
}

.resources-nav summary {
  cursor: pointer;
  list-style: none;
}

.resources-nav summary::-webkit-details-marker {
  display: none;
}

.desktop-nav .resources-nav > summary {
  position: relative;
  padding-block: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.desktop-nav .resources-nav > summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav .resources-nav > summary span {
  color: var(--copper);
  font-size: 0.9em;
  transition: transform 180ms ease;
}

.desktop-nav .resources-nav[open] > summary::after,
.desktop-nav .resources-nav.is-current > summary::after,
.desktop-nav .resources-nav:focus-within > summary::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .resources-nav[open] > summary span {
  transform: rotate(180deg);
}

.desktop-nav .resources-nav:hover > summary,
.desktop-nav .resources-nav[open] > summary {
  color: var(--copper);
}

.desktop-nav .resources-nav-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% - 2px);
  right: -22px;
  width: 286px;
  padding: 30px 10px 10px;
  display: grid;
  counter-reset: resource-item;
  isolation: isolate;
  background: transparent;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.desktop-nav .resources-nav-menu::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 28px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--ink);
  border-left: 8px solid transparent;
}

.desktop-nav .resources-nav-menu::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--ink);
  border-top: 3px solid var(--copper-bright);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.desktop-nav .resources-nav[open] .resources-nav-menu,
.desktop-nav .resources-nav:focus-within .resources-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-nav .resources-nav-menu a {
  position: relative;
  z-index: 1;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  line-height: 1.25;
  letter-spacing: 0.075em;
  transition: background 150ms ease, color 150ms ease, padding 150ms ease;
}

.desktop-nav .resources-nav-menu a:last-child {
  border-bottom: 0;
}

.desktop-nav .resources-nav-menu a::before {
  counter-increment: resource-item;
  content: counter(resource-item, decimal-leading-zero);
  color: #ef9260;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.desktop-nav .resources-nav-menu a::after {
  content: none;
}

.desktop-nav .resources-nav-menu a:hover,
.desktop-nav .resources-nav-menu a[aria-current="page"] {
  background: var(--copper-bright);
  color: var(--white);
  padding-left: 18px;
}

.desktop-nav .resources-nav-menu a:hover::before,
.desktop-nav .resources-nav-menu a[aria-current="page"]::before {
  color: var(--white);
}

@media (min-width: 1041px) and (hover: hover) {
  .desktop-nav .resources-nav:hover .resources-nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.button {
  min-height: 50px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

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

.button-accent:hover {
  background: var(--white);
  color: var(--ink);
}

.header-cta {
  min-width: 202px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.menu-toggle,
.mobile-menu,
.mobile-action-bar {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(720px, calc(100svh - 120px), 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

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

.hero-backdrop {
  z-index: -2;
  object-fit: cover;
  object-position: center 48%;
  transform: scaleX(-1);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 19, 15, 0.9) 0%, rgba(18, 19, 15, 0.72) 46%, rgba(18, 19, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 19, 15, 0.72) 0%, rgba(18, 19, 15, 0.05) 68%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 28px;
  font-family: var(--condensed);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.eyebrow span {
  width: 42px;
  height: 2px;
  background: var(--copper-bright);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(3.9rem, 7.8vw, 8.1rem);
  line-height: var(--display-leading);
  color: var(--white);
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
  color: var(--copper-bright);
  font-style: normal;
}

.hero-lower {
  margin-top: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(280px, 620px) 1fr;
  align-items: end;
  gap: 40px;
}

.hero-lower > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.button-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link-dark {
  color: var(--ink);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: clamp(46px, 5vw, 78px);
  right: clamp(18px, 4vw, 68px);
  width: clamp(160px, 15vw, 220px);
  aspect-ratio: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--copper-bright);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-badge strong {
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.hero-badge span {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip {
  min-height: 70px;
  padding: 0;
  overflow: hidden;
  background: var(--copper);
  color: var(--white);
}

.proof-track {
  display: flex;
  width: max-content;
  animation: proof-scroll 38s linear infinite;
}

.proof-strip:hover .proof-track {
  animation-play-state: paused;
}

.proof-group {
  min-height: 72px;
  padding-inline: 24px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 44px;
}

.proof-strip span {
  position: relative;
  padding-left: 20px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-strip span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ink);
}

@keyframes proof-scroll {
  to {
    transform: translateX(-50%);
  }
}

.intro {
  padding-top: clamp(110px, 13vw, 190px);
  text-align: center;
}

.section-kicker {
  color: var(--copper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
}

.intro h2 {
  max-width: 980px;
  font-size: clamp(3.1rem, 5.8vw, 6.2rem);
  line-height: 0.94;
}

.intro-copy {
  max-width: 760px;
}

.intro-copy .text-link {
  justify-content: center;
}

.intro-copy p {
  margin: 0 0 34px;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.possibilities {
  padding-top: 0;
}

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

.possibility-grid > div {
  position: relative;
  min-height: 280px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.possibility-grid > div::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 14, 0.1), rgba(16, 17, 14, 0.86));
}

.possibility-grid img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.possibility-grid > div:nth-child(4n) {
  border-right: 0;
}

.possibility-grid > div:nth-child(-n + 4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.possibility-grid span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--copper-bright);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.possibility-grid h3 {
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.possibilities-action {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

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

.section-heading,
.process-intro {
  margin-bottom: clamp(50px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.section-heading h2,
.process-intro h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 5.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading > p,
.process-intro > p {
  margin: 0;
  color: #606159;
  font-size: 1.1rem;
  line-height: 1.55;
}

.light-heading > p {
  color: #b8b8b0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-grid article {
  min-height: 320px;
  padding: 34px 28px 38px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

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

.benefit-number {
  color: var(--copper-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.benefit-grid h3 {
  margin: auto 0 18px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.3vw, 2.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.benefit-grid p {
  margin: 0;
  color: #b8b8b0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.system-compare {
  position: relative;
  overflow: hidden;
  background: #ece7de;
  color: var(--ink);
}

.system-compare-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(45, 39, 31, 0.12);
}

.system-compare-menu-wrap {
  min-width: 0;
  padding: 22px;
  background: #171814;
  color: var(--white);
}

.system-compare-menu-label {
  margin: 10px 12px 24px;
  color: #a7a99f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-compare-menu {
  display: grid;
  gap: 8px;
}

.system-compare-menu button {
  width: 100%;
  min-height: 92px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #d1d2cb;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.system-compare-menu button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.system-compare-menu button[aria-selected="true"] {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  color: var(--white);
  transform: translateX(8px);
}

.system-compare-menu button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.system-compare-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.system-compare-menu button > span:nth-child(2) {
  min-width: 0;
}

.system-compare-menu strong,
.system-compare-menu small {
  display: block;
}

.system-compare-menu strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.system-compare-menu small {
  margin-top: 7px;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  opacity: 0.72;
  text-transform: uppercase;
}

.system-compare-menu button > span:last-child {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.system-compare-menu button[aria-selected="true"] > span:last-child {
  transform: translateX(4px);
}

.system-compare-panels {
  min-width: 0;
  display: grid;
}

.system-compare-panels > article {
  min-height: 650px;
  padding: clamp(44px, 6vw, 88px);
  align-content: center;
}

.system-compare-panels > article[hidden] {
  display: none;
}

.system-compare-panels > article:not([hidden]) {
  display: grid;
  animation: system-compare-in 240ms ease both;
}

@keyframes system-compare-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.system-compare-result,
.system-compare-category {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-compare-result {
  width: fit-content;
  margin-bottom: 28px;
  padding: 9px 12px;
  background: #f3dfd3;
  color: var(--copper);
}

.system-compare-category {
  color: #77796f;
}

.system-compare-panels h3 {
  max-width: 850px;
  margin: 11px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5vw, 5.6rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.system-compare-lead {
  max-width: 820px;
  margin: 0 0 36px;
  color: #55574f;
  font-size: 1.08rem;
  line-height: 1.62;
}

.system-compare-points {
  max-width: 900px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.system-compare-points > div {
  min-height: 170px;
  padding: 25px 28px;
}

.system-compare-points > div + div {
  border-left: 1px solid var(--line);
}

.system-compare-points .is-udo {
  background: #f3eee6;
  border-top: 4px solid var(--copper-bright);
}

.system-compare-points span {
  color: #76786e;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-compare-points .is-udo span {
  color: var(--copper);
}

.system-compare-points p {
  margin: 13px 0 0;
  color: #55574f;
  font-size: 0.92rem;
  line-height: 1.58;
}

.system-compare-note {
  max-width: 920px;
  margin: 26px 0 0;
  color: #66685f;
  font-size: 0.82rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .system-compare-panels > article:not([hidden]) {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .system-compare-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .system-compare-menu-wrap {
    padding: 18px;
  }

  .system-compare-menu {
    padding-bottom: 4px;
    grid-auto-flow: column;
    grid-auto-columns: minmax(235px, 1fr);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .system-compare-menu button {
    min-height: 96px;
    scroll-snap-align: start;
  }

  .system-compare-menu button[aria-selected="true"] {
    transform: none;
  }

  .system-compare-panels > article {
    min-height: 620px;
    padding: clamp(42px, 8vw, 70px);
  }
}

@media (max-width: 620px) {
  .system-compare-menu-label {
    margin: 6px 4px 18px;
  }

  .system-compare-menu {
    grid-auto-columns: minmax(225px, 82vw);
  }

  .system-compare-menu button {
    min-height: 94px;
    padding: 16px 14px;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 11px;
  }

  .system-compare-index {
    width: 34px;
    height: 34px;
  }

  .system-compare-menu strong {
    font-size: 1.45rem;
  }

  .system-compare-panels > article {
    min-height: 0;
    padding: 38px 22px 44px;
  }

  .system-compare-result {
    margin-bottom: 24px;
  }

  .system-compare-panels h3 {
    font-size: clamp(2.75rem, 12.5vw, 4rem);
  }

  .system-compare-lead {
    font-size: 1rem;
  }

  .system-compare-points {
    grid-template-columns: 1fr;
  }

  .system-compare-points > div {
    min-height: 0;
    padding: 22px;
  }

  .system-compare-points > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-areas:
    "one two"
    "one three";
  gap: clamp(30px, 4vw, 62px);
}

.project-1 { grid-area: one; }
.project-2 { grid-area: two; }
.project-3 { grid-area: three; }

.project-card {
  min-width: 0;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: #d5d3cb;
}

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

.project-1 .project-image {
  aspect-ratio: 0.92;
}

.project-2 .project-image,
.project-3 .project-image {
  aspect-ratio: 1.75;
}

.project-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--copper-bright);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.project-meta {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}

.project-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.project-meta p {
  margin: 0;
  color: #66675e;
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: right;
}

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

.process .section-kicker {
  color: #ffd4bc;
}

.process-intro > p {
  color: rgba(255, 255, 255, 0.82);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.process-list li {
  min-height: 150px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.process-list > li > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list li div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.process-list p {
  max-width: 530px;
  margin: 0;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.84);
}

.mechanics {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 122px);
}

.mechanics-image {
  min-height: 680px;
}

.mechanics-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.mechanics-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.9rem, 4.8vw, 5.15rem);
  line-height: var(--display-leading);
}

.mechanics-copy > p:not(.section-kicker) {
  margin: 0;
  font-size: 1.1rem;
}

.check-list {
  margin: 34px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.check-list span {
  color: var(--copper);
  font-weight: 900;
}

.finishes {
  padding: 0;
  background: var(--white);
}

.finishes-grid {
  min-height: 820px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.finish-copy {
  padding: clamp(72px, 9vw, 140px) max(32px, calc((100vw - 1420px) / 2));
  padding-right: clamp(48px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finish-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.9rem, 4.8vw, 5.15rem);
  line-height: var(--display-leading);
}

.finish-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 0;
  font-size: 1.07rem;
}

.finish-copy .text-link,
.finish-copy .button {
  align-self: flex-start;
}

.finish-summary {
  margin: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.finish-summary > div {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.finish-summary strong {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.finish-summary span {
  color: #64665e;
  font-size: 0.88rem;
  line-height: 1.45;
}

.finish-image {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}

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

.finish-image p {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  padding: 14px 16px;
  background: rgba(24, 25, 20, 0.82);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare-frame {
  --position: 58%;
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #ccc;
}

.compare-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-frame input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  pointer-events: none;
  transform: translateX(-1px);
}

.compare-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--copper-bright);
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  transform: translate(-50%, -50%);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  padding: 8px 12px;
  background: rgba(24, 25, 20, 0.84);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-before { right: 18px; }
.label-after { left: 18px; }

.testimonial {
  padding-top: 0;
}

.testimonial-grid {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  background: var(--copper);
  color: var(--white);
}

.testimonial blockquote {
  margin: 0;
  padding: clamp(72px, 8vw, 120px);
  align-self: center;
}

.testimonial blockquote > p {
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.testimonial blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial blockquote footer span {
  color: #ffd59a;
  letter-spacing: 0.16em;
}

.testimonial-grid > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  margin: 0;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-intro h2 {
  margin-bottom: 32px;
  font-size: clamp(2.9rem, 4.5vw, 4.9rem);
  line-height: var(--display-leading);
}

.faq-intro > p:not(.section-kicker) {
  color: #606159;
}

.faq-intro a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 92px;
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--copper);
  font-family: var(--body);
  font-size: 1.75rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 30px;
  color: #5e5f57;
  font-size: 1rem;
}

.final-cta {
  position: relative;
  min-height: min(780px, 80vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.final-cta > img,
.final-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  transform: scaleX(-1);
}

.final-cta-overlay {
  background: linear-gradient(90deg, rgba(24, 25, 20, 0.96) 0%, rgba(24, 25, 20, 0.8) 44%, rgba(24, 25, 20, 0.2) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  max-width: 940px;
  font-size: clamp(3.6rem, 6.7vw, 7rem);
  line-height: var(--display-leading);
}

.final-cta-content > p:not(.section-kicker) {
  max-width: 580px;
  margin: 30px 0 38px;
  color: #deded7;
  font-size: 1.15rem;
}

.site-footer {
  padding: 88px 0 112px;
  background: #11120f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.2fr) 0.65fr 0.95fr 0.75fr;
  gap: clamp(38px, 5vw, 76px);
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.footer-contact {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact a {
  width: fit-content;
  margin: 0 auto 7px;
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.footer-contact address,
.footer-start p {
  max-width: 340px;
  margin: 0;
  color: #999b92;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-link:hover {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
}

.instagram-mark {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.instagram-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  background: currentColor;
  border-radius: 50%;
}

.footer-grid h2 {
  margin: 0 0 24px;
  font-family: var(--condensed);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  margin-bottom: 10px;
  display: block;
  color: #c6c7c0;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--copper-bright);
}

.footer-quote {
  margin-bottom: 24px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--copper-bright);
  color: var(--copper-bright);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-google-reviews {
  width: min(100%, 185px);
  margin-top: 28px;
  display: block;
  border-radius: 4px;
  transition: opacity 180ms ease;
}

.footer-google-reviews:hover {
  opacity: 0.78;
}

.footer-google-reviews:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 6px;
}

.footer-google-reviews img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #777970;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Shared interior-page system */
.inner-page {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: clamp(510px, 63vw, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

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

.page-hero > img {
  z-index: -2;
  object-fit: cover;
}

.page-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 19, 15, 0.9), rgba(18, 19, 15, 0.42) 70%, rgba(18, 19, 15, 0.2)),
    linear-gradient(0deg, rgba(18, 19, 15, 0.76), transparent 65%);
}

.page-hero-content {
  padding-block: clamp(90px, 11vw, 150px) clamp(62px, 8vw, 104px);
}

.page-kicker,
.breadcrumb {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumb {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.72);
}

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

.breadcrumb span {
  margin-inline: 9px;
  color: var(--copper-bright);
}

.page-kicker {
  margin: 0 0 22px;
  color: #f0a67d;
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.page-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.page-section {
  padding-block: clamp(78px, 9vw, 136px);
}

.page-section-dark {
  background: var(--ink);
  color: var(--white);
}

.page-section-sage {
  background: #d9ded3;
}

.content-intro,
.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(50px, 9vw, 132px);
}

.content-intro h2,
.media-split h2,
.page-section-heading h2,
.page-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.content-intro-copy,
.prose {
  color: #55574f;
  font-size: 1.06rem;
}

.content-intro-copy > :first-child,
.prose > :first-child {
  margin-top: 0;
}

.content-intro-copy > :last-child,
.prose > :last-child {
  margin-bottom: 0;
}

.content-intro-copy strong,
.prose strong {
  color: var(--ink);
}

.prose h2,
.prose h3 {
  color: var(--ink);
  font-family: var(--display);
  line-height: 1;
  text-transform: uppercase;
}

.prose h2 {
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 4.1vw, 4.4rem);
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 2rem;
}

.prose a,
.contact-card a,
.document-card a:not(.button) {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.prose ul {
  padding-left: 1.2em;
}

.page-section-heading {
  max-width: 910px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.page-section-heading > p:not(.section-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #606159;
  font-size: 1.08rem;
}

.page-section-dark .page-section-heading > p:not(.section-kicker) {
  color: #b8b8b0;
}

.media-split {
  align-items: center;
}

.media-split.reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.05fr);
}

.media-split.reverse .media-split-image {
  order: 2;
}

.media-split-image {
  min-height: 540px;
  background: #d5d3cb;
}

.media-split-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.step-grid,
.content-card-grid,
.finish-grid,
.document-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
}

.step-card {
  min-height: 300px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.step-card:last-child {
  border-right: 0;
}

.step-card > span {
  color: var(--copper-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-card h3,
.content-card h3,
.finish-card h3,
.document-card h3,
.contact-card h2,
.contact-card h3 {
  margin: auto 0 16px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  color: #b8b8b0;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--copper);
  color: var(--white);
}

.stat-item {
  min-height: 168px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.stat-item span {
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.content-card,
.finish-card,
.document-card,
.contact-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.content-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.85;
  object-fit: cover;
}

.content-card-body,
.document-card,
.contact-card {
  padding: 30px;
}

.content-card h3,
.finish-card h3,
.document-card h3,
.contact-card h2,
.contact-card h3 {
  margin-top: 0;
}

.content-card p,
.finish-card p,
.document-card p,
.contact-card p,
.contact-card address {
  margin: 0;
  color: #606159;
  font-size: 0.94rem;
  font-style: normal;
}

.notice {
  margin-bottom: 46px;
  padding: 22px 26px;
  background: #eee6dc;
  border-left: 4px solid var(--copper);
  color: #4e5048;
}

.notice strong {
  color: var(--ink);
}

.ideas-uses-section {
  padding-top: clamp(42px, 5vw, 72px);
}

.ideas-uses-section .notice {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.ideas-uses-section .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ideas-uses-section .content-card img {
  aspect-ratio: 1.55;
  object-position: center top;
}

.ideas-uses-section .content-card img.ideas-image-focus-lower {
  object-position: center 68%;
}

.ideas-uses-section .content-card-body {
  min-height: 176px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ideas-uses-section .content-card-body h3 {
  margin-bottom: 16px;
}

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

.finish-card {
  overflow: hidden;
}

.finish-sample {
  width: 100%;
  height: auto;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: #f6f4ee;
  border-bottom: 1px solid var(--line);
}

.finish-card.white-swatch .finish-sample {
  background: linear-gradient(135deg, #fff 0%, #f5f3ed 100%);
}

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

.finish-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.8rem;
}

.haint-blue-disclaimer {
  margin-top: 28px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: #edf7f7;
  border-left: 4px solid var(--copper-bright);
}

.haint-blue-disclaimer strong {
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.haint-blue-disclaimer p {
  margin: 0;
  color: #4f534e;
  font-size: 0.92rem;
  line-height: 1.55;
}

.haint-blue-disclaimer a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.texture-grid {
  margin-top: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.texture-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.texture-card > div:last-child {
  padding: 26px 28px 30px;
}

.texture-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.texture-card p {
  margin: 0;
  color: #606159;
}

.texture-image {
  aspect-ratio: 1.75;
  overflow: hidden;
  background: #f3f1eb;
}

.texture-image img {
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.texture-image-rustic img {
  transform: translateX(-50%);
}

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

.document-card,
.contact-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.document-card .button,
.contact-card .button {
  width: fit-content;
  margin-top: auto;
}

.document-label {
  margin-bottom: 40px;
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card address {
  margin-bottom: 22px;
}

.contact-card p + p {
  margin-top: 9px;
}

.faq-page .page-section-heading {
  max-width: 940px;
}

.faq-categories {
  display: grid;
  gap: clamp(72px, 9vw, 124px);
}

.faq-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.faq-category-heading {
  position: sticky;
  top: 150px;
}

.faq-category-heading > span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.faq-category-heading h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.faq-category-heading p {
  max-width: 350px;
  margin: 20px 0 0;
  color: #606159;
}

.faq-page .faq-category .faq-list {
  max-width: none;
  margin: 0;
}

.faq-list details p a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .faq-category {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-category-heading {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .faq-categories {
    gap: 68px;
  }

  .faq-category-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }
}

.page-cta {
  padding-block: clamp(80px, 9vw, 132px);
  background: var(--copper);
  color: var(--white);
}

.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.page-cta h2 {
  max-width: 850px;
}

.page-cta-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
}

.page-cta .button-dark:hover {
  background: var(--white);
  color: var(--ink);
}

/* About page */
.about-hero > img {
  object-position: center 48%;
  transform: scaleX(-1);
}

.about-hero h1 {
  max-width: 1180px;
  font-size: clamp(3.7rem, 6.35vw, 6.75rem);
}

.about-jump-nav {
  background: var(--copper);
  color: var(--white);
}

.about-jump-nav .shell {
  min-height: 68px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.about-jump-nav a {
  min-width: 180px;
  padding: 20px 26px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.about-jump-nav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.about-jump-nav a:hover {
  background: rgba(24, 25, 20, 0.16);
}

.about-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 136px);
}

.about-service-copy h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.about-service-copy > p:not(.section-kicker) {
  margin: 28px 0 34px;
  color: #c7c7bf;
  font-size: 1.06rem;
}

.service-facts {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.service-facts article {
  min-height: 150px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 54px minmax(150px, 0.65fr) minmax(200px, 1fr);
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.service-facts article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-facts h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-facts p {
  margin: 4px 0 0;
  color: #b8b8b0;
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.team-photo {
  min-height: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #d8d9d2;
  border: 1px solid rgba(24, 25, 20, 0.15);
}

.team-photo img {
  width: 100%;
  min-height: 0;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-photo picture {
  height: 100%;
  display: block;
}

.about-testimonials {
  background: #e5e0d6;
}

.contact-testimonials {
  background: #d9ded3;
}

.testimonial-carousel-stage {
  position: relative;
}

.testimonial-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  transform: translateY(-50%);
}

.testimonial-carousel-button[data-carousel-prev] {
  left: -24px;
}

.testimonial-carousel-button[data-carousel-next] {
  right: -24px;
}

.testimonial-carousel-button:hover {
  background: var(--ink);
  transform: translateY(calc(-50% - 2px));
}

.testimonial-carousel-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.testimonial-carousel-status {
  width: fit-content;
  min-width: 160px;
  margin: 22px auto 0;
  color: #56584f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-carousel [hidden] {
  display: none !important;
}

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

.about-testimonial-grid figure {
  min-height: 440px;
  margin: 0;
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.1);
}

.testimonial-quote-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding-top: 13px;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.testimonial-stars {
  margin: 28px 0 20px;
  color: var(--copper);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.about-testimonial-grid blockquote {
  margin: 0;
  color: #40423c;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-testimonial-grid figcaption {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.about-testimonial-grid figcaption strong {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.about-testimonial-grid figcaption span {
  margin-top: 4px;
  color: #6c6d65;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Payment page */
.payment-hero {
  min-height: clamp(480px, 54vw, 620px);
}

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

.payment-hero h1 {
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.payment-section {
  background: #e5e0d6;
}

.payment-layout {
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.payment-intro h2,
.payment-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.payment-intro h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
}

.payment-intro > p:not(.section-kicker) {
  margin: 25px 0 0;
  color: #575850;
  font-size: 1.04rem;
}

.payment-support {
  margin-top: 38px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(24, 25, 20, 0.18);
}

.payment-support strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.payment-support a {
  width: fit-content;
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.payment-card {
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.1);
}

.payment-label {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-card h2 {
  max-width: 570px;
  font-size: clamp(2.7rem, 4.3vw, 4.4rem);
}

.payment-card > p:not(.payment-label) {
  margin: 24px 0 0;
  color: #575850;
}

.payment-disclosure {
  margin: 30px 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f7e7dc;
  border-left: 4px solid var(--copper-bright);
}

.payment-disclosure strong {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-disclosure span {
  color: #56574f;
}

.payment-card .button {
  width: 100%;
}

/* Financing page and restrained financing references */
.financing-hero {
  min-height: clamp(520px, 60vw, 680px);
}

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

.financing-hero h1 {
  max-width: 920px;
  font-size: clamp(3.8rem, 6.6vw, 7rem);
}

.financing-overview {
  background: var(--paper);
}

.financing-intro-copy .button {
  margin-top: 26px;
}

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

.financing-step-grid .step-card {
  min-height: 320px;
}

.financing-details-section {
  background: #e5e0d6;
}

.financing-details-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.financing-details-copy h2,
.financing-disclosure-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.financing-details-copy h2 {
  max-width: 690px;
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
}

.financing-details-copy .check-list {
  max-width: 690px;
}

.financing-disclosure-card {
  padding: clamp(34px, 5vw, 56px);
  background: var(--ink);
  color: var(--white);
  border-top: 5px solid var(--copper-bright);
  box-shadow: 0 24px 60px rgba(24, 25, 20, 0.14);
}

.financing-card-label {
  margin: 0 0 18px;
  color: var(--copper-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.financing-disclosure-card h2 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}

.financing-disclosure-card > p:not(.financing-card-label) {
  margin: 24px 0 30px;
  color: #c8c9c2;
}

.financing-disclosure-card .text-link {
  color: var(--white);
}

.financing-faq {
  max-width: 1180px;
}

.financing-note {
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.5;
}

.financing-note a {
  color: var(--copper-bright);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.final-cta-content > p.financing-note {
  max-width: 580px;
  margin: 18px 0 0;
  color: #d1d2cb;
  font-size: 0.82rem;
}

.form-section-intro > p.financing-note {
  margin-top: 18px;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .financing-step-grid,
  .financing-details-grid {
    grid-template-columns: 1fr;
  }

  .financing-step-grid .step-card {
    min-height: 240px;
    border-right: 0;
  }

  .financing-step-grid .step-card:last-child {
    border-bottom: 0;
  }

  .financing-details-grid {
    gap: 52px;
  }

  .financing-disclosure-card {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .financing-hero h1,
  .financing-details-copy h2 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .financing-step-grid .step-card {
    min-height: 220px;
  }

  .financing-disclosure-card {
    padding: 34px 26px;
  }
}

/* Dealer and careers pages */
.dealer-hero > img {
  object-position: center 52%;
  transform: scaleX(-1);
}

.warranty-document-grid .document-card {
  min-height: 390px;
}

.warranty-document-grid .document-label {
  margin-bottom: 30px;
}

.warranty-document-grid h3 {
  min-height: 2em;
  margin-bottom: 18px;
}

.warranty-document-grid p {
  margin-bottom: 28px;
}

.dealer-hero h1,
.career-hero h1 {
  font-size: clamp(3.65rem, 6.1vw, 6.5rem);
}

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

.dealer-card {
  min-height: 285px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.dealer-card > span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dealer-card h3 {
  margin: 34px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.dealer-card p {
  margin: 0;
  color: #65665e;
}

.dealer-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 25px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dealer-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.dealer-program-grid article {
  min-height: 285px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.dealer-program-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.dealer-program-grid h3 {
  margin: 52px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.dealer-program-grid p {
  max-width: 520px;
  margin: 0;
  color: #b8b8b0;
}

.embedded-form-section {
  background: #e5e0d6;
}

.form-section-intro {
  max-width: 980px;
  margin-bottom: 48px;
}

.form-section-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.form-section-intro > p:not(.section-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: #5f6058;
  font-size: 1.06rem;
}

.form-embed-wrap {
  max-width: 1040px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.14);
  box-shadow: 0 24px 65px rgba(24, 25, 20, 0.1);
}

.form-embed-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px) clamp(22px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
  border-bottom: 5px solid var(--copper-bright);
}

.form-embed-step {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--copper-bright);
  font-family: var(--condensed);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.form-embed-toolbar > div {
  min-width: 0;
}

.form-embed-eyebrow,
.form-embed-toolbar strong,
.form-embed-meta {
  display: block;
  text-transform: uppercase;
}

.form-embed-eyebrow {
  margin-bottom: 3px;
  color: var(--copper-bright);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.form-embed-toolbar strong {
  font-family: var(--condensed);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.form-embed-meta {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #d2d3cc;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.form-embed-body {
  padding: clamp(18px, 4vw, 42px);
  background: var(--white);
}

.form-embed-body iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.form-embed-wrap input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-embed-wrap select,
.form-embed-wrap textarea {
  min-height: 44px !important;
}

.form-embed-note {
  margin: 0;
  padding: 17px clamp(22px, 4vw, 42px) 18px;
  background: #f2efe8;
  border-top: 1px solid rgba(24, 25, 20, 0.1);
  color: #65665e;
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Formstack injects its fields into the page, so its presentation can match the site. */
.form-embed-wrap[data-form-provider="formstack"] .form-embed-body {
  padding: clamp(28px, 5vw, 58px) clamp(22px, 6vw, 68px);
}

.form-embed-wrap[data-form-provider="formstack"] .fsform-container,
.form-embed-wrap[data-form-provider="formstack"] .fsForm,
.form-embed-wrap[data-form-provider="formstack"] .fsPage,
.form-embed-wrap[data-form-provider="formstack"] .fsSection {
  width: 100% !important;
  max-width: none !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsform-container,
.form-embed-wrap[data-form-provider="formstack"] .fsForm {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-family: var(--body) !important;
  box-shadow: none !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsPage,
.form-embed-wrap[data-form-provider="formstack"] .fsSection {
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSectionHeader {
  width: 100% !important;
  margin: 48px 0 28px !important;
  padding: 0 0 16px !important;
  border-bottom: 2px solid var(--copper-bright) !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSection:first-of-type .fsSectionHeader,
.form-embed-wrap[data-form-provider="formstack"] .fsSectionHeader:first-child {
  margin-top: 0 !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSectionHeading {
  width: auto !important;
  margin: 0 !important;
  color: var(--ink) !important;
  font-family: var(--display) !important;
  font-size: clamp(2rem, 4vw, 3.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 0.98 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSectionText,
.form-embed-wrap[data-form-provider="formstack"] .fsLabel,
.form-embed-wrap[data-form-provider="formstack"] .fsSupporting,
.form-embed-wrap[data-form-provider="formstack"] .fsOptionLabel,
.form-embed-wrap[data-form-provider="formstack"] input,
.form-embed-wrap[data-form-provider="formstack"] select,
.form-embed-wrap[data-form-provider="formstack"] textarea,
.form-embed-wrap[data-form-provider="formstack"] button {
  font-family: var(--body) !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSectionText {
  color: #5f6058 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsFieldCell {
  width: 100% !important;
  margin-bottom: 24px !important;
  color: var(--ink) !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsLabel {
  color: var(--ink) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.015em !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsRequiredMarker {
  color: var(--copper-bright) !important;
}

.form-embed-wrap[data-form-provider="formstack"] input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.form-embed-wrap[data-form-provider="formstack"] select,
.form-embed-wrap[data-form-provider="formstack"] textarea {
  width: 100% !important;
  min-height: 50px !important;
  padding: 12px 14px !important;
  background: #f7f5f0 !important;
  border: 1px solid rgba(24, 25, 20, 0.3) !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  font-size: 1rem !important;
  box-shadow: none !important;
}

.form-embed-wrap[data-form-provider="formstack"] textarea {
  min-height: 124px !important;
}

.form-embed-wrap[data-form-provider="formstack"] input:focus,
.form-embed-wrap[data-form-provider="formstack"] select:focus,
.form-embed-wrap[data-form-provider="formstack"] textarea:focus {
  border-color: var(--copper-bright) !important;
  outline: 3px solid rgba(211, 104, 53, 0.2) !important;
  outline-offset: 1px !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSubmitButton {
  min-height: 52px !important;
  margin: 24px 0 0 !important;
  padding: 15px 24px !important;
  background: var(--copper-bright) !important;
  border: 1px solid var(--copper-bright) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-family: var(--condensed) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.form-embed-wrap[data-form-provider="formstack"] .fsSubmitButton:hover,
.form-embed-wrap[data-form-provider="formstack"] .fsSubmitButton:focus-visible {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

.form-embed-wrap noscript p {
  margin: 0;
}

.form-embed-wrap noscript a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
}

.career-hero > img {
  object-position: center 62%;
}

.career-openings {
  background: #e5e0d6;
}

.career-openings-heading {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.career-openings-heading > p:last-child {
  max-width: 680px;
}

.job-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.job-listing-card {
  min-width: 0;
  display: flex;
}

.job-listing-trigger {
  width: 100%;
  height: 100%;
  min-height: 510px;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.2);
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.job-listing-trigger:hover,
.job-listing-trigger:focus-visible {
  border-color: var(--copper-bright);
  box-shadow: 0 24px 55px rgba(24, 25, 20, 0.13);
  transform: translateY(-4px);
}

.job-listing-topline {
  min-height: 74px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--ink);
  color: var(--white);
}

.job-listing-topline > span {
  min-width: 0;
  color: #f1a57b;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.job-listing-topline b {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--condensed);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.job-listing-copy {
  width: 100%;
  min-height: 0;
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.job-listing-status {
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.job-listing-title {
  width: 100%;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(2.15rem, 2.8vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: var(--display-leading);
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.job-listing-subtitle {
  margin-top: 10px;
  color: #5d5f57;
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.job-listing-summary {
  max-width: 580px;
  margin-top: 26px;
  color: #5d5f57;
  font-size: 0.97rem;
  line-height: 1.65;
}

.job-listing-facts {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-listing-facts > span {
  padding: 7px 10px;
  background: #e7e3da;
  color: #55574f;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.job-listing-action {
  margin-top: auto;
  padding-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--copper);
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-listing-action b {
  margin-left: 8px;
}

.job-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.job-detail-hero::before,
.job-detail-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.job-detail-hero::before {
  top: -36%;
  right: -12%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: clamp(34px, 5vw, 72px) solid rgba(211, 104, 53, 0.18);
}

.job-detail-hero::after {
  right: 13%;
  bottom: -44%;
  width: min(32vw, 470px);
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.035);
}

.job-detail-hero-content {
  position: relative;
  padding-block: clamp(86px, 10vw, 148px);
}

.job-detail-hero .breadcrumb {
  margin-bottom: clamp(42px, 6vw, 70px);
}

.job-detail-hero h1 {
  max-width: 1160px;
  margin: 15px 0 18px;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.job-social-detail-page .job-detail-hero h1 {
  max-width: 1040px;
  font-size: clamp(3rem, 4.8vw, 5.35rem);
}

.job-detail-subtitle {
  margin: 0 0 24px;
  color: #f1a57b;
  font-family: var(--condensed);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-detail-hero .page-lead {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.76);
}

.job-detail-hero-facts {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.job-detail-hero-facts li {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.job-detail-content {
  min-width: 0;
}

.job-detail-highlight {
  margin-bottom: clamp(46px, 7vw, 78px);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--copper-bright);
  color: var(--white);
}

.job-detail-highlight strong {
  font-family: var(--condensed);
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.job-detail-highlight span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.job-detail-content section {
  max-width: 820px;
  padding-block: clamp(38px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.job-detail-content section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.job-detail-content h2 {
  max-width: 760px;
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.job-detail-content p {
  max-width: 760px;
  margin: 0 0 19px;
  color: #565850;
  font-size: 1rem;
  line-height: 1.72;
}

.job-detail-content ul {
  max-width: 790px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.job-detail-content li {
  position: relative;
  padding-left: 26px;
  color: #4f514a;
  line-height: 1.62;
}

.job-detail-content li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-bright);
}

.job-equal-opportunity {
  max-width: 790px !important;
  margin: 36px 0 0 !important;
  padding: 23px 25px;
  background: #e7e3da;
  border-left: 4px solid var(--copper-bright);
  color: #4d4f47 !important;
  font-size: 0.86rem !important;
}

.job-detail-sidebar {
  position: sticky;
  top: 140px;
  padding: 30px;
  background: var(--white);
  border-top: 5px solid var(--copper-bright);
  box-shadow: 0 22px 60px rgba(24, 25, 20, 0.1);
}

.job-detail-sidebar > p {
  margin: 0 0 26px;
  font-family: var(--condensed);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.job-detail-sidebar dl {
  margin: 0 0 30px;
}

.job-detail-sidebar dl > div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.job-detail-sidebar dt {
  margin-bottom: 4px;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.job-detail-sidebar dd {
  margin: 0;
  color: #50524a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.job-detail-sidebar .text-link {
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-detail-sidebar {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .job-listing-grid {
    grid-template-columns: 1fr;
  }

  .job-listing-trigger {
    min-height: 470px;
  }

  .job-detail-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.3rem);
  }

  .job-detail-highlight {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-detail-highlight span {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .job-listing-topline,
  .job-listing-copy {
    padding-inline: 22px;
  }

  .job-listing-title {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
  }

  .job-detail-hero-content {
    padding-block: 72px 82px;
  }

  .job-detail-content h2 {
    font-size: clamp(2.4rem, 11.5vw, 3.45rem);
  }

  .job-detail-sidebar {
    padding: 25px 22px;
  }
}

/* Conversion thank-you page */
.thank-you-main {
  min-height: calc(100vh - 88px);
  display: grid;
}

.thank-you-hero {
  position: relative;
  min-height: clamp(680px, 78vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.thank-you-hero > img,
.thank-you-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.thank-you-hero > img {
  object-fit: cover;
  object-position: center 54%;
}

.thank-you-hero-overlay {
  background: linear-gradient(90deg, rgba(18, 19, 15, 0.94) 0%, rgba(18, 19, 15, 0.82) 48%, rgba(18, 19, 15, 0.38) 100%);
}

.thank-you-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
  color: var(--white);
}

.thank-you-content-inner {
  max-width: 860px;
}

.thank-you-check {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 1.65rem;
  font-weight: 900;
}

.thank-you-content h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.5vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.thank-you-lead {
  max-width: 710px;
  margin: 30px 0 0;
  color: #dedfd8;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

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

.thank-you-actions .button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.thank-you-actions .button-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.thank-you-next {
  max-width: 710px;
  margin-top: clamp(54px, 7vw, 78px);
  padding: 25px 0 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 4px solid var(--copper-bright);
}

.thank-you-next strong {
  display: block;
  margin-bottom: 5px;
  color: var(--copper-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thank-you-next p {
  margin: 0;
  color: #dedfd8;
}

@media (max-width: 620px) {
  .form-section-intro {
    margin-bottom: 34px;
  }

  .form-embed-wrap {
    width: calc(100% - 32px);
  }

  .form-embed-toolbar {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .form-embed-step {
    width: 44px;
    height: 44px;
  }

  .form-embed-meta {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
    padding: 6px 9px;
  }

  .form-embed-body {
    padding: 14px 8px;
  }

  .form-embed-note {
    padding: 15px 18px 17px;
  }

  .form-embed-wrap[data-form-provider="formstack"] .form-embed-body {
    padding: 26px 18px 34px;
  }

  .form-embed-wrap[data-form-provider="formstack"] .fsSectionHeader {
    margin-top: 38px !important;
  }

  .form-embed-wrap[data-form-provider="formstack"] .fsSectionHeading {
    font-size: clamp(1.8rem, 10vw, 2.55rem) !important;
  }

  .thank-you-hero {
    min-height: 720px;
    align-items: end;
  }

  .thank-you-hero-overlay {
    background: linear-gradient(0deg, rgba(18, 19, 15, 0.98) 0%, rgba(18, 19, 15, 0.82) 68%, rgba(18, 19, 15, 0.48) 100%);
  }

  .thank-you-content {
    padding-top: 110px;
    padding-bottom: 82px;
  }

  .thank-you-content h1 {
    font-size: clamp(3.65rem, 17vw, 5.3rem);
  }

  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-next {
    padding-left: 18px;
  }
}

/* Footer legal pages */
.legal-hero {
  min-height: clamp(430px, 49vw, 560px);
}

.legal-hero > img {
  object-position: center 55%;
}

.legal-hero h1 {
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.legal-section {
  background: #e5e0d6;
}

.legal-content {
  max-width: 980px;
  padding: clamp(38px, 6vw, 76px);
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.1);
}

.legal-updated {
  margin: 0 0 54px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-content > h2 {
  margin: 54px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.legal-content > h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  margin: 32px 0 10px;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #4f514a;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.3em;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-contact-box {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #f2efe8;
  border-left: 4px solid var(--copper-bright);
}

.legal-contact-box strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.legal-contact-box address {
  margin-bottom: 8px;
}

/* Contact and measuring guide */
.contact-scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.office-contact a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.office-contact address a {
  color: inherit;
  font-weight: inherit;
}

.form-section-actions {
  margin-top: 30px;
}

.measure-hero > img {
  object-position: center 55%;
}

.measure-hero h1 {
  font-size: clamp(3.7rem, 6.3vw, 6.8rem);
}

.measure-step-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.measure-step-number {
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
}

.measure-step-copy h2,
.measure-step-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.65vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.measure-step-copy > p:not(.section-kicker) {
  margin: 27px 0 0;
  color: #55574f;
  font-size: 1.04rem;
}

.measure-step-copy .check-list {
  margin-top: 32px;
}

.measure-figure {
  margin: 0;
  padding: clamp(20px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.1);
}

.measure-figure img {
  width: 100%;
  height: auto;
}

.measure-figure figcaption {
  margin-top: 18px;
  color: #696a62;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.measure-step-heading {
  max-width: 1060px;
  margin-bottom: clamp(48px, 7vw, 84px);
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 24px;
}

.measure-step-heading .measure-step-number {
  margin: 0;
}

.measure-step-heading div > p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5e6058;
}

.measure-diagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.measure-diagram-grid article {
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.measure-diagram-grid h3 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.measure-diagram-grid ul {
  margin: 0;
  padding-left: 1.2em;
  color: #56574f;
}

.measure-diagram-grid li + li {
  margin-top: 8px;
}

.measure-diagram-grid figure {
  margin: auto 0 0;
  padding-top: 38px;
}

.measure-diagram-grid img {
  width: 100%;
  height: auto;
}

.measure-callout {
  margin-top: 28px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  gap: 28px;
  background: #f3e1d5;
  border-left: 4px solid var(--copper-bright);
}

.measure-callout strong {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.measure-callout p {
  margin: 0;
  color: #56574f;
}

.page-section-dark .measure-step-copy > p:not(.section-kicker) {
  color: #b8b8b0;
}

.page-section-dark .measure-figure {
  color: var(--ink);
}

.measure-step-copy .button {
  margin-top: 34px;
}

.measure-downloads .document-card {
  padding: 0;
  overflow: hidden;
}

.document-preview {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #f7f6f1;
  border-bottom: 1px solid var(--line);
}

.document-preview-portrait {
  object-position: center top;
}

.document-card-content {
  min-height: 300px;
  padding: 28px 30px 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.measure-downloads .document-label {
  margin-bottom: 24px;
}

.measure-downloads .document-card-content p {
  margin-bottom: 26px;
}

.measure-zip-link {
  margin-top: 28px;
  padding: 24px 28px;
  background: #e5e0d6;
}

.measure-zip-link a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Projects index and project detail pages */
.projects-index-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.projects-index-photo {
  position: absolute;
  inset: 0;
  width: 100%;
}

.projects-index-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 25, 20, 0.92) 0%, rgba(24, 25, 20, 0.7) 50%, rgba(24, 25, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(24, 25, 20, 0.72), transparent 64%);
}

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

.projects-index-intro {
  position: relative;
  z-index: 1;
  padding-block: clamp(90px, 11vw, 150px);
}

.projects-index-intro > * {
  max-width: 760px;
}

.projects-index-intro h1,
.project-detail-intro h1 {
  margin: 16px 0 28px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.8vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.projects-index-intro > p:not(.breadcrumb, .page-kicker) {
  max-width: 580px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.projects-index-intro .breadcrumb,
.project-detail-intro .breadcrumb {
  margin-bottom: 34px;
}

.project-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.project-index-card {
  min-width: 0;
}

.project-index-card a {
  display: block;
}

.project-index-cta-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-index-image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--ink);
}

.project-index-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(0deg, rgba(24, 25, 20, 0.82), transparent);
}

.project-index-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-index-cta-image {
  isolation: isolate;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, #db713c 0%, #bd5428 58%, #8e381b 100%);
}

.project-index-cta-image::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(24, 25, 20, 0.68) 0%, rgba(24, 25, 20, 0.06) 72%),
    radial-gradient(circle at 88% 6%, rgba(255, 255, 255, 0.22), transparent 42%);
}

.project-index-cta-mark {
  position: absolute;
  top: 14%;
  right: -9%;
  width: 76%;
  aspect-ratio: 1.42;
  border: clamp(18px, 2.4vw, 34px) solid rgba(255, 255, 255, 0.14);
  border-radius: 30%;
  transform: rotate(-7deg);
  transition: border-color 320ms ease, transform 420ms ease;
}

.project-index-cta-content {
  position: relative;
  z-index: 1;
}

.project-index-cta-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-index-cta-content strong {
  max-width: 360px;
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.project-index-cta-content span {
  display: inline-block;
  margin-top: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-index-cta-content b {
  margin-left: 8px;
  color: inherit;
}

.project-index-cta-card > a:hover .project-index-cta-mark,
.project-index-cta-card > a:focus-visible .project-index-cta-mark {
  border-color: rgba(255, 255, 255, 0.24);
  transform: rotate(-4deg) scale(1.045);
}

.project-index-cta-card .project-index-copy {
  flex: 1;
}

.project-index-image > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-index-image b {
  margin-left: 8px;
  color: #f09a6c;
}

.project-index-card a:hover .project-index-image img,
.project-index-card a:focus-visible .project-index-image img {
  transform: scale(1.035);
}

.project-index-copy {
  padding: 24px 0 12px;
}

.project-index-copy > p {
  margin: 0 0 9px;
  color: var(--copper);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-index-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.project-index-copy ul {
  margin: 19px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.project-index-copy li {
  padding: 7px 10px;
  background: #e7e3da;
  color: #55574f;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-detail-intro {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(580px, 62vw, 800px);
  padding: clamp(96px, 11vw, 154px) max(32px, calc((100vw - 1420px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

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

.project-detail-hero-image {
  object-fit: cover;
}

.project-detail-hero-image.hero-marcellus {
  object-position: center 51%;
}

.project-detail-hero-image.hero-chicago {
  object-position: center 38%;
}

.project-detail-hero-image.hero-newaygo {
  object-position: center 47%;
}

.project-detail-hero-image.hero-west-olive {
  object-position: center 48%;
}

.project-detail-hero-image.hero-lake-geneva {
  object-position: center 49%;
}

.project-detail-hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 17, 13, 0.93) 0%, rgba(16, 17, 13, 0.76) 42%, rgba(16, 17, 13, 0.34) 74%, rgba(16, 17, 13, 0.5) 100%),
    linear-gradient(0deg, rgba(16, 17, 13, 0.7), transparent 68%);
}

.project-detail-intro > p,
.project-detail-intro > h1 {
  position: relative;
  z-index: 1;
}

.project-detail-intro .breadcrumb {
  max-width: 1160px;
}

.project-detail-intro h1 {
  max-width: 1050px;
  margin: 16px 0 38px;
  font-size: clamp(4.2rem, 7.4vw, 8rem);
  line-height: 1;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.project-detail-intro h1 em {
  color: var(--copper-bright);
  font-style: normal;
}

.project-detail-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.project-feature {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(76px, 9vw, 124px);
}

.project-feature-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.project-feature-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.project-feature-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.project-feature-heading > p:last-child {
  max-width: 330px;
  margin: 0 0 8px;
  color: #5b5d55;
  font-size: 0.88rem;
}

.project-index-image img.project-card-image-top {
  object-position: center 28%;
}

.project-callout-layout {
  display: block;
}

.project-callout-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #20211c;
  isolation: isolate;
}

.project-callout-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.project-callout-layout-portrait .project-callout-visual {
  width: min(100%, 720px);
  margin-inline: auto;
}

.project-callout-visual figcaption,
.project-gallery-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  padding: 9px 11px;
  background: rgba(24, 25, 20, 0.82);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-photo-hotspot {
  position: absolute;
  z-index: 5;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.project-photo-hotspot:hover,
.project-photo-hotspot:focus-visible,
.project-photo-hotspot[aria-expanded="true"] {
  z-index: 10;
}

.project-hotspot-number {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--copper-bright);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-hotspot-number::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.project-hotspot-card {
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  width: 270px;
  padding: 17px 19px;
  background: var(--white);
  color: #55574f;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  transform: translate(10px, -50%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.project-hotspot-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-photo-hotspot.hotspot-flip .project-hotspot-card {
  right: calc(100% + 14px);
  left: auto;
  transform: translate(-10px, -50%);
}

.project-photo-hotspot:hover .project-hotspot-number,
.project-photo-hotspot:focus-visible .project-hotspot-number,
.project-photo-hotspot[aria-expanded="true"] .project-hotspot-number {
  transform: scale(1.08);
  box-shadow: 0 7px 28px rgba(0, 0, 0, 0.42);
}

.project-photo-hotspot:focus-visible {
  outline: none;
}

.project-photo-hotspot:focus-visible .project-hotspot-number {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.project-photo-hotspot:hover .project-hotspot-card,
.project-photo-hotspot:focus-visible .project-hotspot-card,
.project-photo-hotspot[aria-expanded="true"] .project-hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.project-photo-hotspot.hotspot-flip:hover .project-hotspot-card,
.project-photo-hotspot.hotspot-flip:focus-visible .project-hotspot-card,
.project-photo-hotspot.hotspot-flip[aria-expanded="true"] .project-hotspot-card {
  transform: translate(0, -50%);
}

.project-callout-marcellus .hotspot-1 { left: 31.97%; top: 42.58%; }
.project-callout-marcellus .hotspot-2 { left: 79.20%; top: 49.94%; }
.project-callout-marcellus .hotspot-3 { left: 66.22%; top: 63.20%; }
.project-callout-chicago .hotspot-1 { left: 46.86%; top: 35.47%; }
.project-callout-chicago .hotspot-2 { left: 30.69%; top: 53.74%; }
.project-callout-chicago .hotspot-3 { left: 81.76%; top: 64.51%; }
.project-callout-newaygo .hotspot-1 { left: 21.01%; top: 7.17%; }
.project-callout-newaygo .hotspot-2 { left: 86.01%; top: 12.18%; }
.project-callout-newaygo .hotspot-3 { left: 78.67%; top: 30.71%; }
.project-callout-west-olive .hotspot-1 { left: 15.90%; top: 49.94%; }
.project-callout-west-olive .hotspot-2 { left: 35.48%; top: 36.68%; }
.project-callout-west-olive .hotspot-3 { left: 67.07%; top: 36.68%; }
.project-callout-lake-geneva .hotspot-1 { left: 29.63%; top: 40.29%; }
.project-callout-lake-geneva .hotspot-2 { left: 48.88%; top: 49.94%; }
.project-callout-lake-geneva .hotspot-3 { left: 70.80%; top: 45.37%; }

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 8px;
  gap: 20px;
  align-items: stretch;
}

.project-gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #20211c;
}

.project-gallery-grid figure:first-child:not(.project-gallery-portrait) {
  grid-column: 1 / -1;
}

.project-gallery-grid figure.project-gallery-centered {
  width: calc(50% - 10px);
  grid-column: 1 / -1;
  justify-self: center;
}

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

.project-voice-grid-single {
  grid-template-columns: minmax(0, 820px);
}

.page-section-sage .content-intro-copy a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.project-facts {
  padding-block: 48px;
  background: var(--copper-bright);
  color: var(--white);
}

.project-facts-grid dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-facts-grid dl > div {
  padding: 6px clamp(18px, 2.5vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.project-facts-grid dl > div:first-child {
  padding-left: 0;
}

.project-facts-grid dl > div:last-child {
  border-right: 0;
}

.project-facts dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.project-facts-grid > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.74rem;
}

.project-summary {
  padding-block: clamp(90px, 11vw, 154px);
  background: var(--ink);
  color: var(--white);
}

.project-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(58px, 10vw, 150px);
}

.project-summary h2 {
  max-width: 800px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.project-summary-copy {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.project-summary-copy p {
  margin: 0;
  color: #b9bbb3;
}

.project-summary-copy p + p {
  margin-top: 22px;
}

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

.project-voice-card {
  min-height: 410px;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
}

.project-voice-card.customer-voice {
  background: var(--copper-bright);
  color: var(--white);
}

.project-voice-card.installer-voice {
  background: #e4e0d5;
}

.project-voice-label {
  margin: 0 0 auto;
  font-size: 0.7rem !important;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-voice-card > p:nth-child(2) {
  margin: 56px 0 38px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.project-voice-card.project-voice-card-centered .project-voice-label {
  margin-bottom: 0;
}

.project-voice-card.project-voice-card-centered > p:nth-child(2) {
  margin: auto 0;
}

.project-voice-card footer {
  display: flex;
  flex-direction: column;
}

.project-voice-card footer strong {
  font-size: 0.82rem;
}

.project-voice-card footer span {
  margin-top: 3px;
  font-size: 0.73rem;
  opacity: 0.72;
}

.project-pagination {
  padding-block: 34px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid var(--line);
}

.project-pagination a {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Resource navigation and pages */
.resource-hero > img {
  object-position: center 54%;
}

.tools-resource-hero > img {
  object-position: center 40%;
}

.installation-resource-hero > img {
  object-position: center 60%;
}

.videos-resource-hero > img {
  transform: scaleX(-1);
}

.resource-intro-grid,
.resource-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(58px, 10vw, 150px);
}

.resource-intro-grid h2,
.resource-scope-grid h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.4vw, 5.8rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.resource-intro-grid > div:last-child > p,
.resource-scope-grid > div:last-child > p {
  margin-top: 0;
  color: #55574f;
  font-size: 1.02rem;
}

.resource-safety-note {
  margin-top: 32px;
  padding: 24px 26px;
  background: #f0dfd3;
  border-left: 4px solid var(--copper-bright);
}

.resource-safety-note strong {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.resource-safety-note p {
  margin: 9px 0 0;
  color: #55574f;
  font-size: 0.87rem;
}

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

.resource-step-grid article {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(24, 25, 20, 0.12);
}

.resource-step-grid article > img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.resource-step-grid article > div {
  padding: 28px;
}

.resource-step-grid span,
.resource-tool-grid > article > span {
  color: var(--copper);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.resource-step-grid h3,
.resource-tool-grid h3 {
  margin: 12px 0 13px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.resource-step-grid p {
  margin: 0;
  color: #5c5e56;
  font-size: 0.9rem;
}

.resource-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(46px, 8vw, 112px);
}

.resource-video-feature > div:last-child h2 {
  margin: 12px 0 24px;
  font-family: var(--display);
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.resource-video-feature > div:last-child > p:not(.section-kicker) {
  color: #5a5c54;
}

.resource-video-feature .text-link {
  margin-top: 20px;
}

.resource-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.resource-tool-grid article {
  min-width: 0;
  min-height: 410px;
  padding: clamp(28px, 3.5vw, 46px);
  background: var(--white);
}

.resource-tool-grid ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #5a5c54;
  font-size: 0.88rem;
}

.resource-tool-grid li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.page-section-dark .resource-scope-grid > div:last-child > p {
  color: #b9bbb3;
}

.resource-scope-grid .button {
  margin-top: 24px;
}

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

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

.resource-link-grid > a {
  position: relative;
  min-height: 240px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #e5e0d5;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.resource-link-grid > a:hover {
  background: var(--copper-bright);
  color: var(--white);
  transform: translateY(-4px);
}

.resource-link-grid span {
  margin-bottom: auto;
  color: var(--copper);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-link-grid > a:hover span {
  color: rgba(255, 255, 255, 0.76);
}

.resource-link-grid h3 {
  margin: 42px 35px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.resource-link-grid b {
  position: absolute;
  right: 24px;
  bottom: 27px;
}

.resource-video-feature-large {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.resource-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resource-video-grid article {
  min-width: 0;
  background: var(--white);
}

.resource-video-grid article > div:last-child {
  padding: 28px 30px 32px;
}

.resource-video-grid span {
  color: var(--copper);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-video-grid h3 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.resource-video-grid p {
  margin: 0;
  color: #5b5d55;
  font-size: 0.88rem;
}

.resource-library-action {
  margin-top: 40px;
  text-align: center;
}

.installation-guide-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.installation-guide-steps li {
  min-height: 280px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.installation-guide-steps > li > span {
  color: #ef9260;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.installation-guide-steps h3 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.installation-guide-steps p {
  margin: 0;
  color: #b9bbb3;
  font-size: 0.9rem;
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .site-header {
    grid-template-columns: 285px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 270px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .header-cta {
    min-width: 155px;
    padding-inline: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 100px;
    grid-template-columns: 275px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 260px;
  }

  .desktop-nav {
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .header-cta {
    min-width: 150px;
    padding-inline: 15px;
    font-size: 0.93rem;
  }

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

  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mechanics-image,
  .mechanics-image img {
    min-height: 590px;
  }

  .finishes-grid {
    min-height: 700px;
  }

  .finish-image {
    min-height: 700px;
  }

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

  .testimonial blockquote {
    padding: 76px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 40px;
  }

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

  .about-service-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .team-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 54px;
  }

  .payment-layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(430px, 1.25fr);
    gap: 48px;
  }

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

  .measure-step-grid {
    grid-template-columns: 1fr;
  }

  .measure-step-grid {
    gap: 48px;
  }

  .resource-tool-grid,
  .resource-link-grid,
  .resource-link-grid.resource-link-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 44px, 760px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .utility-bar {
    padding-inline: 22px;
  }

  .utility-bar p {
    max-width: 70%;
  }

  .site-header {
    min-height: 88px;
    padding-inline: 22px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 230px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 11px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

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

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

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

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

  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: var(--mobile-menu-top, 122px);
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--mobile-menu-top, 122px));
    overflow-y: auto;
    display: block;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu nav {
    width: var(--shell);
    margin-inline: auto;
    padding: 24px 0 30px;
  }

  .mobile-menu a {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.8rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu .resources-nav > summary {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.8rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu .resources-nav > summary span {
    color: var(--copper);
    font-family: var(--body);
    font-size: 1.1rem;
    transition: transform 180ms ease;
  }

  .mobile-menu .resources-nav[open] > summary span {
    transform: rotate(180deg);
  }

  .mobile-menu .resources-nav.is-current > summary {
    color: var(--copper);
  }

  .mobile-menu .resources-nav-menu {
    padding: 8px 16px 14px;
    background: #e9e5dc;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu .resources-nav-menu a {
    padding: 11px 0;
    font-family: var(--condensed);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.06em;
  }

  .mobile-menu .resources-nav-menu a[aria-current="page"] {
    color: var(--copper);
  }

  .hero-lower,
  .intro-grid,
  .section-heading,
  .process-intro,
  .mechanics,
  .faq,
  .content-intro,
  .media-split,
  .media-split.reverse,
  .page-cta-grid {
    grid-template-columns: 1fr;
  }

  .media-split.reverse .media-split-image {
    order: 0;
  }

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

  .step-card:nth-child(2),
  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .step-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

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

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

  .about-jump-nav .shell {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .about-jump-nav a {
    min-width: 160px;
  }

  .team-feature,
  .about-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-testimonial-grid figure {
    min-height: 360px;
  }

  .testimonial-carousel-stage {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    grid-template-areas:
      "testimonials testimonials testimonials"
      "previous . next";
    gap: 16px 12px;
  }

  .testimonial-carousel-track {
    grid-area: testimonials;
  }

  .testimonial-carousel-button {
    position: static;
    top: auto;
    transform: none;
  }

  .testimonial-carousel-button[data-carousel-prev] {
    grid-area: previous;
    justify-self: start;
    left: auto;
  }

  .testimonial-carousel-button[data-carousel-next] {
    grid-area: next;
    justify-self: end;
    right: auto;
  }

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

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-intro {
    max-width: 680px;
  }

  .dealer-grid,
  .dealer-program-grid {
    grid-template-columns: 1fr;
  }

  .dealer-card,
  .dealer-program-grid article {
    min-height: 245px;
  }

  .contact-scenario-grid,
  .measure-diagram-grid {
    grid-template-columns: 1fr;
  }

  .measure-step-heading {
    grid-template-columns: 1fr;
  }

  .measure-callout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .resource-intro-grid,
  .resource-scope-grid,
  .resource-video-feature,
  .resource-video-feature-large {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .resource-step-grid article:last-child {
    grid-column: 1 / -1;
  }

  .resource-video-grid {
    grid-template-columns: 1fr;
  }

  .hero-lower {
    gap: 32px;
  }

  .button-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-backdrop {
    object-position: 42% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 19, 15, 0.88), rgba(18, 19, 15, 0.42)),
      linear-gradient(0deg, rgba(18, 19, 15, 0.78), rgba(18, 19, 15, 0.08));
  }

  .hero-badge {
    display: none;
  }

  .intro-grid {
    align-items: start;
  }

  .intro-copy {
    max-width: 620px;
  }

  .section-heading,
  .process-intro {
    align-items: start;
    gap: 28px;
  }

  .section-heading > p,
  .process-intro > p {
    max-width: 600px;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "one one"
      "two three";
  }

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

  .possibility-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .possibility-grid > div:nth-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .project-1 .project-image {
    aspect-ratio: 1.65;
  }

  .project-2 .project-image,
  .project-3 .project-image {
    aspect-ratio: 1.15;
  }

  .project-meta {
    display: block;
  }

  .project-meta p {
    margin-top: 6px;
    text-align: left;
  }

  .process-list li div {
    grid-template-columns: 1fr 1fr;
  }

  .mechanics-image,
  .mechanics-image img {
    min-height: 0;
    aspect-ratio: 1.3;
  }

  .mechanics-copy {
    max-width: 680px;
  }

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

  .finish-copy {
    padding-inline: 22px;
  }

  .finish-image {
    min-height: 600px;
  }

  .compare-frame {
    aspect-ratio: 1.55;
  }

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

  .testimonial-grid > img {
    height: 440px;
  }

  .faq {
    gap: 55px;
  }

  .final-cta-overlay {
    background: linear-gradient(90deg, rgba(24, 25, 20, 0.94), rgba(24, 25, 20, 0.48));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-grid > div:last-child {
    max-width: 420px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 36px);
  }

  body {
    padding-bottom: 64px;
  }

  .section {
    padding-block: 82px;
  }

  .page-section {
    padding-block: 76px;
  }

  .page-hero {
    min-height: 540px;
  }

  .page-hero-content {
    padding-block: 76px 62px;
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 14.5vw, 4.5rem);
    line-height: var(--display-leading);
  }

  .page-lead {
    font-size: 1.03rem;
  }

  .content-intro,
  .media-split,
  .page-cta-grid {
    gap: 42px;
  }

  .content-intro h2,
  .media-split h2,
  .page-section-heading h2,
  .page-cta h2,
  .prose h2 {
    font-size: clamp(2.65rem, 11.5vw, 3.75rem);
  }

  .media-split-image,
  .media-split-image img {
    min-height: 0;
    aspect-ratio: 0.95;
  }

  .step-grid,
  .stat-band,
  .content-card-grid,
  .finish-grid,
  .document-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .step-card:last-child {
    border-bottom: 0;
  }

  .stat-item {
    min-height: 138px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .content-card-body,
  .document-card,
  .contact-card {
    padding: 25px;
  }

  .measure-downloads .document-card {
    padding: 0;
  }

  .document-card-content {
    min-height: 0;
    padding: 25px;
  }

  .ideas-uses-section .content-card-body {
    min-height: 0;
  }

  .haint-blue-disclaimer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    padding: 22px;
  }

  .haint-blue-disclaimer a {
    width: fit-content;
  }

  .testimonial-carousel-status {
    min-width: 0;
  }

  .testimonial-carousel-button {
    width: 44px;
    height: 44px;
  }

  .about-hero h1,
  .about-service-copy h2,
  .payment-hero h1,
  .payment-intro h2,
  .payment-card h2,
  .dealer-hero h1,
  .career-hero h1,
  .form-section-intro h2,
  .legal-hero h1,
  .measure-hero h1,
  .measure-step-copy h2,
  .measure-step-heading h2 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .legal-content {
    padding: 32px 24px;
  }

  .service-facts article {
    grid-template-columns: 48px 1fr;
    gap: 12px 18px;
  }

  .service-facts h3 {
    margin-top: 7px;
  }

  .service-facts p {
    grid-column: 2;
    margin-top: -4px;
  }

  .possibilities {
    padding-top: 0;
  }

  .utility-bar {
    min-height: 30px;
    padding: 7px 18px;
    font-size: 0.57rem;
  }

  .utility-bar p {
    max-width: 66%;
  }

  .site-header {
    min-height: 78px;
    padding-inline: 18px;
  }

  .brand {
    width: 200px;
  }

  .mobile-menu {
    top: var(--mobile-menu-top, 108px);
    max-height: calc(100svh - var(--mobile-menu-top, 108px));
  }

  .hero-copy {
    padding-top: 92px;
    padding-bottom: 76px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.76rem;
  }

  .eyebrow span {
    width: 28px;
    margin-top: 6px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
    line-height: var(--display-leading);
  }

  .hero-lower {
    margin-top: 34px;
  }

  .hero-lower > p {
    font-size: 1.1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button-row .button,
  .button-row .text-link {
    width: 100%;
  }

  .button-row .text-link {
    justify-content: space-between;
  }

  .hero-backdrop {
    object-position: 32% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 19, 15, 0.8), rgba(18, 19, 15, 0.45)),
      linear-gradient(0deg, rgba(18, 19, 15, 0.96) 0%, rgba(18, 19, 15, 0.68) 58%, rgba(18, 19, 15, 0.28) 100%);
  }

  .proof-strip {
    min-height: 58px;
    padding-inline: 0;
  }

  .proof-strip span {
    font-size: 0.72rem;
  }

  .proof-group {
    min-height: 62px;
    gap: 32px;
  }

  .intro {
    padding-top: 100px;
  }

  .section-kicker {
    margin-bottom: 20px;
    font-size: 0.72rem;
  }

  .intro h2,
  .section-heading h2,
  .process-intro h2,
  .mechanics-copy h2,
  .finish-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.7rem, 11.8vw, 3.85rem);
    line-height: 0.94;
  }

  .process-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.85rem);
  }

  .intro-grid {
    gap: 38px;
  }

  .possibility-grid > div {
    min-height: 210px;
    padding: 22px 16px;
  }

  .possibility-grid h3 {
    font-size: 1.7rem;
  }

  .intro-copy p {
    font-size: 1rem;
  }

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

  .benefit-grid article {
    min-height: 250px;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .benefit-grid h3 {
    font-size: 2.15rem;
  }

  .project-grid {
    display: block;
  }

  .project-card + .project-card {
    margin-top: 48px;
  }

  .project-1 .project-image,
  .project-2 .project-image,
  .project-3 .project-image {
    aspect-ratio: 1 / 1.08;
  }

  .process-list li {
    min-height: 0;
    padding-block: 28px;
    grid-template-columns: 52px 1fr;
    align-items: start;
  }

  .process-list li div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list h3 {
    font-size: 2.35rem;
  }

  .process-list p {
    font-size: 0.92rem;
  }

  .mechanics {
    gap: 50px;
  }

  .mechanics-image,
  .mechanics-image img {
    aspect-ratio: 0.9;
  }

  .finish-copy {
    padding: 82px 18px;
  }

  .finish-summary > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .finish-image {
    min-height: 500px;
  }

  .compare .section-heading {
    margin-bottom: 42px;
  }

  .compare-frame {
    aspect-ratio: 0.9;
  }

  .compare-frame > img {
    object-fit: cover;
    object-position: center;
  }

  .compare-line span {
    width: 48px;
    height: 48px;
  }

  .testimonial {
    padding-top: 0;
  }

  .testimonial blockquote {
    padding: 82px 28px 70px;
  }

  .testimonial blockquote > p {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .testimonial-grid > img {
    height: 390px;
  }

  .quote-mark {
    top: 18px;
    left: 20px;
    font-size: 9rem;
  }

  .faq {
    gap: 48px;
  }

  .faq-list summary {
    min-height: 80px;
    font-size: 1.55rem;
  }

  .final-cta {
    min-height: 710px;
  }

  .final-cta > img {
    object-position: 68% center;
  }

  .final-cta-overlay {
    background: linear-gradient(180deg, rgba(24, 25, 20, 0.42), rgba(24, 25, 20, 0.95));
  }

  .final-cta-content {
    align-self: end;
    padding-bottom: 72px;
  }

  .final-cta-content h2 {
    font-size: clamp(3.25rem, 14vw, 4.7rem);
  }

  .site-footer {
    padding: 72px 0 66px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 60px;
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-action-bar a + a {
    margin: 7px;
    margin-left: 0;
    background: var(--ink);
    color: var(--white);
  }
}

@media (max-width: 1040px) {
  .projects-index-hero {
    min-height: 670px;
  }

  .projects-index-photo {
    inset: 0;
    width: 100%;
  }

  .projects-index-photo::after {
    background: linear-gradient(90deg, rgba(24, 25, 20, 0.93), rgba(24, 25, 20, 0.58)), linear-gradient(0deg, rgba(24, 25, 20, 0.84), transparent 60%);
  }

  .projects-index-photo img {
    object-position: center 42%;
  }

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

  .project-summary-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

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

  .project-feature-heading .section-kicker {
    margin-bottom: -8px;
  }

  .project-facts-grid dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .project-facts-grid dl > div:nth-child(2) {
    border-right: 0;
  }

  .project-facts-grid dl > div:nth-child(3) {
    padding-left: 0;
  }

  .project-summary-copy {
    max-width: 650px;
  }

  .project-voice-card {
    min-height: 370px;
  }
}

@media (max-width: 620px) {
  .projects-index-hero {
    min-height: 590px;
  }

  .projects-index-intro {
    padding-block: 70px;
  }

  .projects-index-intro h1,
  .project-detail-intro h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.5rem);
    line-height: 1;
  }

  .project-summary h2 {
    font-size: clamp(2.45rem, 12.5vw, 4rem);
  }

  .project-index-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-index-image {
    aspect-ratio: 0.93;
  }

  .project-callout-visual {
    overflow: visible;
  }

  .project-photo-hotspot,
  .project-hotspot-number {
    width: 40px;
    height: 40px;
  }

  .project-hotspot-number {
    border-width: 2px;
    font-size: 0.8rem;
  }

  .project-hotspot-number::after {
    inset: -6px;
  }

  .project-hotspot-card,
  .project-photo-hotspot.hotspot-flip .project-hotspot-card {
    top: calc(100% + 10px);
    right: auto;
    left: 0;
    width: min(190px, 55vw);
    padding: 13px 14px;
    font-size: 0.7rem;
    line-height: 1.42;
    transform: translateY(8px);
  }

  .project-photo-hotspot.hotspot-flip .project-hotspot-card {
    right: 0;
    left: auto;
  }

  .project-photo-hotspot.hotspot-up .project-hotspot-card,
  .project-photo-hotspot.hotspot-up.hotspot-flip .project-hotspot-card {
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(-8px);
  }

  .project-photo-hotspot:hover .project-hotspot-card,
  .project-photo-hotspot:focus-visible .project-hotspot-card,
  .project-photo-hotspot[aria-expanded="true"] .project-hotspot-card,
  .project-photo-hotspot.hotspot-flip:hover .project-hotspot-card,
  .project-photo-hotspot.hotspot-flip:focus-visible .project-hotspot-card,
  .project-photo-hotspot.hotspot-flip[aria-expanded="true"] .project-hotspot-card {
    transform: translateY(0);
  }

  .project-photo-hotspot.hotspot-up:hover .project-hotspot-card,
  .project-photo-hotspot.hotspot-up:focus-visible .project-hotspot-card,
  .project-photo-hotspot.hotspot-up[aria-expanded="true"] .project-hotspot-card {
    transform: translateY(0);
  }

  .project-callout-visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 0.59rem;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .project-gallery-grid figure,
  .project-gallery-grid figure:first-child:not(.project-gallery-portrait) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    grid-row-end: auto !important;
  }

  .project-gallery-grid figure.project-gallery-portrait {
    aspect-ratio: 3 / 4;
  }

  .project-gallery-grid figure.project-gallery-centered {
    width: 100%;
    justify-self: stretch;
  }

  .project-detail-intro {
    min-height: 570px;
    padding: 76px 18px 64px;
  }

  .project-detail-hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 17, 13, 0.89), rgba(16, 17, 13, 0.62)),
      linear-gradient(0deg, rgba(16, 17, 13, 0.82), transparent 64%);
  }

  .project-detail-intro .breadcrumb {
    justify-content: flex-start;
    overflow-x: auto;
    text-align: left;
    white-space: nowrap;
  }

  .project-facts {
    padding-block: 38px;
  }

  .project-facts-grid dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-facts-grid dl > div,
  .project-facts-grid dl > div:first-child,
  .project-facts-grid dl > div:nth-child(3) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .project-facts-grid dl > div:last-child {
    border-bottom: 0;
  }

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

  .project-voice-card {
    min-height: 350px;
    padding: 32px 26px;
  }

  .project-pagination {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-step-grid,
  .resource-tool-grid,
  .resource-link-grid,
  .resource-link-grid.resource-link-grid-four,
  .installation-guide-steps {
    grid-template-columns: 1fr;
  }

  .resource-step-grid article:last-child {
    grid-column: auto;
  }

  .resource-tool-grid article {
    min-height: 0;
  }

  .resource-link-grid > a {
    min-height: 220px;
  }

  .installation-guide-steps li {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }
}

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

  .proof-track {
    animation: none !important;
  }

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

@media print {
  .utility-bar,
  .site-header,
  .mobile-menu,
  .mobile-action-bar {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
    color: black;
  }
}

/* Blog */
.blog-index-hero {
  position: relative;
  min-height: min(760px, 82vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #20211c;
  color: var(--white);
}

.blog-index-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.blog-index-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 19, 15, 0.88) 0%, rgba(18, 19, 15, 0.6) 45%, rgba(18, 19, 15, 0.16) 78%), linear-gradient(0deg, rgba(18, 19, 15, 0.48), transparent 50%);
}

.blog-index-hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  padding-block: 150px 96px;
}

.blog-index-hero .breadcrumb,
.blog-index-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.blog-index-hero h1 {
  max-width: 900px;
  margin: 20px 0 22px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.7vw, 8.8rem);
  font-weight: 400;
  line-height: var(--display-leading);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.blog-index-hero-content > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.blog-feed {
  padding-block: 118px 132px;
}

.blog-feed-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.blog-feed-heading h2,
.blog-resource-band h2,
.related-posts-heading h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 6.3rem);
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.blog-feed-heading > p {
  max-width: 470px;
  margin: 0;
  color: #5b5d55;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: 560px;
  background: var(--ink);
  color: var(--white);
}

.blog-featured-image,
.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-featured-image img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.blog-featured-card:hover .blog-featured-image img,
.blog-card:hover .blog-card-image img {
  transform: scale(1.025);
}

.blog-featured-copy {
  padding: clamp(46px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-kicker {
  margin: 0 0 20px;
  color: var(--copper-bright);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-featured-copy h3,
.blog-card-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.blog-featured-copy h3 {
  font-size: clamp(2.7rem, 4.6vw, 5.1rem);
}

.blog-featured-copy h3 a,
.blog-card-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-featured-copy > p:not(.blog-card-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.68;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: #85877f;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-meta > * + *::before {
  content: "·";
  margin-right: 20px;
}

.blog-featured-copy .text-link,
.blog-card-copy .text-link {
  align-self: flex-start;
  margin-top: 30px;
}

.blog-featured-copy .text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: #f1ece3;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  background: #2d2e29;
}

.blog-card-copy {
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
}

.blog-card-copy h3 {
  font-size: clamp(2.25rem, 3.4vw, 3.75rem);
}

.blog-card-copy > p:not(.blog-card-kicker) {
  margin: 20px 0 0;
  color: #5b5d55;
  font-size: 0.92rem;
  line-height: 1.68;
}

.blog-card-copy .text-link {
  margin-top: auto;
  padding-top: 30px;
}

.blog-resource-band {
  padding-block: 112px;
  background: #dce0d0;
}

.blog-resource-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: 90px;
  align-items: start;
}

.blog-resource-links {
  border-top: 1px solid rgba(24, 25, 20, 0.22);
}

.blog-resource-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(24, 25, 20, 0.22);
  color: var(--ink);
  text-decoration: none;
}

.blog-resource-links span {
  color: #66685f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-resource-links strong {
  font-family: var(--condensed);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.reading-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--copper-bright);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.blog-article-hero {
  position: relative;
  min-height: clamp(720px, 78vh, 900px);
  padding-block: 110px 82px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #20211c;
  color: var(--white);
}

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

.blog-article-hero-background {
  object-fit: cover;
}

.blog-article-hero-joists .blog-article-hero-background {
  object-position: center 43%;
}

.blog-article-hero-screened .blog-article-hero-background {
  object-position: center 48%;
}

.blog-article-hero-birds .blog-article-hero-background {
  object-position: center 50%;
}

.blog-article-hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 15, 12, 0.94) 0%, rgba(14, 15, 12, 0.8) 48%, rgba(14, 15, 12, 0.38) 76%, rgba(14, 15, 12, 0.16) 100%),
    linear-gradient(0deg, rgba(14, 15, 12, 0.76) 0%, rgba(14, 15, 12, 0.18) 68%, rgba(14, 15, 12, 0.28) 100%);
}

.blog-article-hero .shell {
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

.blog-article-hero .breadcrumb {
  margin-bottom: 58px;
}

.blog-article-hero .breadcrumb,
.blog-article-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.blog-article-hero h1 {
  max-width: 1080px;
  margin: 18px 0 38px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4rem, 7.8vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.018em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
}

.blog-article-deck {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-meta > * + *::before {
  content: "·";
  margin-right: 22px;
  color: var(--copper-bright);
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 32px;
}

.blog-share > span {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-share a,
.blog-share button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-share a:hover,
.blog-share button:hover,
.blog-share a:focus-visible,
.blog-share button:focus-visible {
  border-color: var(--copper-bright);
  background: var(--copper-bright);
  color: var(--white);
}

.blog-article-copy figure figcaption {
  color: #71736b;
  font-size: 0.72rem;
  line-height: 1.5;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 800px);
  justify-content: center;
  gap: clamp(54px, 8vw, 110px);
  padding-block: 110px 130px;
}

.blog-toc {
  position: sticky;
  top: 142px;
  align-self: start;
  padding-top: 6px;
}

.blog-toc > p {
  margin: 0 0 17px;
  color: var(--copper-bright);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-toc nav {
  border-top: 1px solid #d2ccc1;
}

.blog-toc nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #d2ccc1;
  color: #55574f;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.blog-toc nav a:hover,
.blog-toc nav a:focus-visible,
.blog-toc nav a.is-active {
  color: var(--copper-bright);
}

.blog-toc nav a.is-active {
  padding-left: 10px;
  border-left: 3px solid var(--copper-bright);
}

.blog-back-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-article-copy {
  min-width: 0;
  color: #42443e;
  font-size: clamp(1.04rem, 1.35vw, 1.17rem);
  line-height: 1.8;
}

.blog-article-copy p {
  margin: 0 0 1.55em;
}

.blog-article-copy .blog-lead {
  color: var(--ink);
  font-size: clamp(1.24rem, 1.75vw, 1.48rem);
  line-height: 1.62;
}

.blog-article-copy a {
  color: #b74d20;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-article-copy h2 {
  margin: 2.2em 0 0.58em;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: var(--display-leading);
  letter-spacing: -0.012em;
  text-transform: uppercase;
  scroll-margin-top: 150px;
}

.blog-article-copy figure {
  margin: 1.2em 0 2em;
}

.blog-article-copy figure img {
  width: 100%;
  height: auto;
  max-height: 620px;
  display: block;
  object-fit: cover;
  background: #292a25;
}

.blog-article-copy figure figcaption {
  padding-top: 10px;
}

.blog-article-copy .blog-figure-portrait {
  width: min(100%, 590px);
  margin-inline: auto;
}

.blog-article-copy .blog-figure-portrait img {
  max-height: 760px;
  object-fit: contain;
}

.blog-article-callout {
  margin-block: 2em !important;
  padding: 27px 30px;
  border-left: 7px solid var(--copper-bright);
  background: #eee8de;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-check-list {
  margin: 1.4em 0 2em;
  padding: 0;
  list-style: none;
}

.blog-check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 750;
}

.blog-check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 15px;
  height: 8px;
  border-bottom: 3px solid var(--copper-bright);
  border-left: 3px solid var(--copper-bright);
  transform: rotate(-45deg);
}

.blog-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 60px;
  padding: 30px;
  background: #dce0d0;
}

.blog-inline-cta p {
  margin: 0;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.related-posts {
  padding-block: 112px 126px;
  background: var(--ink);
  color: var(--white);
}

.related-posts-heading {
  margin-bottom: 40px;
}

.related-posts-heading h2 {
  color: var(--white);
}

.related-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.related-post-grid article {
  min-width: 0;
  background: #f1ece3;
}

.related-post-grid article > a {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  text-decoration: none;
}

.related-post-grid img {
  grid-row: 1 / 4;
  width: 100%;
  height: 100%;
  min-height: 290px;
  display: block;
  object-fit: cover;
}

.related-post-grid span,
.related-post-grid h3,
.related-post-grid b {
  margin-inline: 30px;
}

.related-post-grid span {
  align-self: end;
  margin-top: 30px;
  color: var(--copper-bright);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-post-grid h3 {
  margin-block: 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: var(--display-leading);
  text-transform: uppercase;
}

.related-post-grid b {
  align-self: start;
  margin-bottom: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 450px;
  }

  .blog-resource-band-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-article-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 55px;
  }

  .related-post-grid article > a {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
  }

  .related-post-grid img {
    grid-row: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .blog-index-hero {
    min-height: 650px;
  }

  .blog-index-hero-overlay {
    background: linear-gradient(0deg, rgba(18, 19, 15, 0.9) 0%, rgba(18, 19, 15, 0.38) 72%, rgba(18, 19, 15, 0.18) 100%);
  }

  .blog-index-hero-content {
    padding-block: 100px 68px;
  }

  .blog-index-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .blog-feed {
    padding-block: 76px 86px;
  }

  .blog-feed-heading,
  .blog-card-grid,
  .related-post-grid {
    grid-template-columns: 1fr;
  }

  .blog-feed-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .blog-featured-card {
    min-height: 0;
  }

  .blog-featured-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .blog-featured-copy {
    padding: 36px 28px 42px;
  }

  .blog-featured-copy h3,
  .blog-card-copy h3 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .blog-card-grid {
    gap: 18px;
    margin-top: 18px;
  }

  .blog-card-copy {
    padding: 30px 26px 36px;
  }

  .blog-card-meta > * + *::before,
  .blog-article-meta > * + *::before {
    display: none;
  }

  .blog-resource-band {
    padding-block: 76px;
  }

  .blog-resource-band-grid {
    gap: 34px;
  }

  .blog-resource-links a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .blog-article-hero {
    min-height: 740px;
    padding-block: 74px 62px;
  }

  .blog-article-hero-overlay {
    background:
      linear-gradient(0deg, rgba(14, 15, 12, 0.96) 0%, rgba(14, 15, 12, 0.78) 68%, rgba(14, 15, 12, 0.48) 100%),
      linear-gradient(90deg, rgba(14, 15, 12, 0.5), rgba(14, 15, 12, 0.18));
  }

  .blog-article-hero-joists .blog-article-hero-background {
    object-position: 55% center;
  }

  .blog-article-hero-screened .blog-article-hero-background {
    object-position: 58% center;
  }

  .blog-article-hero-birds .blog-article-hero-background {
    object-position: 62% center;
  }

  .blog-article-hero .breadcrumb {
    margin-bottom: 40px;
  }

  .blog-article-hero h1 {
    font-size: clamp(3.15rem, 15.4vw, 5rem);
  }

  .blog-article-meta {
    gap: 8px 16px;
  }

  .blog-article-meta > * {
    flex-basis: auto;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 72px 86px;
  }

  .blog-toc {
    position: static;
    order: 0;
    padding: 24px;
    background: #eee8de;
  }

  .blog-toc nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-toc nav a:nth-child(odd) {
    padding-right: 14px;
  }

  .blog-toc nav a:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid #d2ccc1;
  }

  .blog-article-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    scroll-margin-top: 96px;
  }

  .blog-article-copy figure {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .blog-article-copy figure figcaption {
    padding-inline: 18px;
  }

  .blog-article-callout {
    margin-inline: -18px;
    padding: 24px 22px;
  }

  .blog-inline-cta {
    grid-template-columns: 1fr;
    margin-inline: -18px;
    padding: 26px 22px;
  }

  .related-posts {
    padding-block: 78px 92px;
  }

  .related-post-grid {
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .blog-toc nav {
    grid-template-columns: 1fr;
  }

  .blog-toc nav a:nth-child(odd),
  .blog-toc nav a:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .blog-toc nav a.is-active {
    padding-left: 8px;
    border-left: 3px solid var(--copper-bright);
  }

  .blog-share {
    align-items: stretch;
  }

  .blog-share > span {
    flex-basis: 100%;
  }

  .blog-share a,
  .blog-share button {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-featured-image img,
  .blog-card-image img {
    transition: none;
  }
}

@media print {
  .reading-progress,
  .blog-share,
  .blog-toc,
  .related-posts,
  .blog-inline-cta {
    display: none !important;
  }

  .blog-article-hero,
  .blog-article-layout {
    padding-block: 30px;
  }

  .blog-article-layout {
    display: block;
  }
}

@media (max-width: 350px) {
  .utility-bar {
    padding-inline: 12px;
    gap: 8px;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .utility-bar a {
    white-space: nowrap;
  }

  .site-header {
    padding-inline: 12px;
    gap: 8px;
  }

  .brand {
    width: min(184px, calc(100vw - 78px));
  }

  .legal-content,
  .project-gallery-section h2 {
    overflow-wrap: anywhere;
  }

  .project-index-cta-image {
    padding: 22px;
  }

  .project-index-cta-content p {
    margin-bottom: 10px;
  }

  .project-index-cta-content strong {
    font-size: 2.45rem;
  }

  .project-index-cta-content span {
    margin-top: 16px;
  }
}

/* Starlight product page */
.starlight-page main {
  overflow: clip;
}

.starlight-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(700px, 82svh, 980px);
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
}

.starlight-hero > img,
.starlight-project-specific > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.starlight-hero-overlay,
.starlight-project-specific-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 16, 14, 0.18) 0%, rgba(15, 16, 14, 0.34) 42%, rgba(15, 16, 14, 0.93) 100%),
    linear-gradient(90deg, rgba(15, 16, 14, 0.48) 0%, transparent 72%);
}

.starlight-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(90px, 12vw, 150px) clamp(72px, 8vw, 112px);
}

.starlight-hero .breadcrumb,
.starlight-hero .breadcrumb a,
.starlight-hero .page-kicker {
  color: var(--white);
}

.starlight-hero .page-kicker {
  margin-top: clamp(44px, 7vw, 88px);
}

.starlight-hero h1 {
  max-width: 1040px;
  margin: 16px 0 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.35rem, 8.4vw, 9rem);
  font-weight: 400;
  line-height: var(--display-leading);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.starlight-hero-content > p:not(.breadcrumb, .page-kicker) {
  max-width: 720px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.62;
}

.starlight-intro {
  padding-block: clamp(88px, 10vw, 152px);
}

.starlight-intro-grid,
.starlight-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: start;
}

.starlight-intro h2,
.starlight-feature h2,
.starlight-purpose-copy h2,
.starlight-project-specific h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.8vw, 6rem);
  font-weight: 400;
  line-height: var(--display-leading);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.starlight-intro-copy p,
.starlight-feature-copy > p:not(.section-kicker),
.starlight-purpose-copy > p:not(.section-kicker),
.starlight-project-specific-copy > p:not(.section-kicker) {
  color: #606159;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.starlight-intro-copy p + p,
.starlight-feature-copy > p + p,
.starlight-purpose-copy > p + p {
  margin-top: 1.35em;
}

.starlight-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 112px);
  border-block: 1px solid var(--line);
}

.starlight-principles article {
  min-width: 0;
  padding: clamp(32px, 4vw, 56px);
}

.starlight-principles article + article {
  border-left: 1px solid var(--line);
}

.starlight-principles span,
.starlight-process > li > span {
  display: block;
  color: var(--copper);
  font-family: var(--condensed);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.starlight-principles h3,
.starlight-process h3,
.starlight-purpose-points h3 {
  margin: 22px 0 12px;
  font-family: var(--condensed);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.starlight-principles p,
.starlight-process p,
.starlight-purpose-points p {
  margin: 0;
  color: #606159;
  line-height: 1.65;
}

.starlight-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 1fr);
  min-height: 780px;
  color: var(--white);
  background: var(--ink);
}

.starlight-feature-image {
  min-height: 680px;
  min-width: 0;
  overflow: hidden;
}

.starlight-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.starlight-feature-copy {
  min-width: 0;
  align-self: center;
  padding: clamp(64px, 7vw, 112px) clamp(42px, 6vw, 96px);
}

.starlight-feature-copy .section-kicker,
.starlight-project-specific-copy .section-kicker {
  color: var(--copper-bright);
}

.starlight-feature h2,
.starlight-project-specific h2 {
  color: var(--white);
}

.starlight-feature-copy > p:not(.section-kicker),
.starlight-project-specific-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.starlight-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(60px, 8vw, 104px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.starlight-process li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  padding: clamp(34px, 5vw, 64px) clamp(24px, 4vw, 56px) clamp(34px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}

.starlight-process li:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid var(--line);
}

.starlight-process h3 {
  margin-top: -2px;
}

.starlight-gallery-section {
  color: var(--white);
  background: #171815;
}

.starlight-gallery-section .page-section-heading h2 {
  color: var(--white);
}

.starlight-gallery-section .page-section-heading p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.starlight-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  margin-top: clamp(54px, 7vw, 92px);
}

.starlight-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #242521;
}

.starlight-gallery-wide {
  grid-row: 1 / span 2;
}

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

.starlight-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 24px 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.5;
  background: linear-gradient(transparent, rgba(15, 16, 14, 0.84));
}

.starlight-purpose-grid {
  align-items: center;
}

.starlight-purpose-points {
  border-top: 1px solid var(--line);
}

.starlight-purpose-points article {
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.starlight-purpose-points h3 {
  margin-top: 0;
}

.starlight-project-specific {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(620px, 76vw, 920px);
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
}

.starlight-project-specific > img {
  object-position: center 62%;
}

.starlight-project-specific-overlay {
  background:
    linear-gradient(180deg, rgba(15, 16, 14, 0.1) 15%, rgba(15, 16, 14, 0.88) 100%),
    linear-gradient(90deg, rgba(15, 16, 14, 0.52), transparent 70%);
}

.starlight-project-specific-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 14vw, 190px) clamp(70px, 9vw, 120px);
}

.starlight-project-specific-copy h2,
.starlight-project-specific-copy > p:not(.section-kicker) {
  max-width: 850px;
}

.starlight-project-specific-copy > p:not(.section-kicker) {
  margin-top: 28px;
}

.starlight-faq-section .faq-list {
  margin-top: clamp(50px, 7vw, 88px);
}

.starlight-product-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 4vw, 48px);
  border-left: 4px solid var(--copper);
  background: rgba(193, 83, 34, 0.08);
}

.starlight-product-note strong {
  font-family: var(--condensed);
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.starlight-product-note p {
  margin: 0;
  color: #606159;
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .starlight-hero {
    min-height: 720px;
  }

  .starlight-feature {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    min-height: 680px;
  }

  .starlight-feature-image {
    min-height: 600px;
  }

  .starlight-gallery {
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.8fr);
  }
}

@media (max-width: 760px) {
  .starlight-hero {
    min-height: 680px;
  }

  .starlight-hero > img {
    object-position: 55% center;
  }

  .starlight-hero-content {
    padding-block: 72px 64px;
  }

  .starlight-hero .page-kicker {
    margin-top: 46px;
  }

  .starlight-hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.6rem);
  }

  .starlight-intro-grid,
  .starlight-purpose-grid,
  .starlight-feature {
    grid-template-columns: 1fr;
  }

  .starlight-intro h2,
  .starlight-feature h2,
  .starlight-purpose-copy h2,
  .starlight-project-specific h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .starlight-principles {
    grid-template-columns: 1fr;
  }

  .starlight-principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .starlight-feature {
    min-height: 0;
  }

  .starlight-feature-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .starlight-feature-copy {
    padding: 64px clamp(18px, 4vw, 32px);
  }

  .starlight-process {
    grid-template-columns: 1fr;
  }

  .starlight-process li,
  .starlight-process li:nth-child(even) {
    padding: 34px 0;
    border-left: 0;
  }

  .starlight-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .starlight-gallery-wide {
    grid-row: auto;
  }

  .starlight-gallery figure {
    aspect-ratio: 4 / 3;
  }

  .starlight-purpose-points {
    margin-top: 8px;
  }

  .starlight-project-specific {
    min-height: 680px;
  }

  .starlight-project-specific > img {
    object-position: 63% center;
  }

  .starlight-product-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .starlight-hero {
    min-height: 650px;
  }

  .starlight-hero-content {
    padding-bottom: 52px;
  }

  .starlight-hero h1 {
    font-size: clamp(3.3rem, 16vw, 4.4rem);
    overflow-wrap: normal;
  }

  .starlight-intro,
  .starlight-faq-section {
    padding-block: 76px;
  }

  .starlight-principles article {
    padding: 30px 22px;
  }

  .starlight-process li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 15px;
  }

  .starlight-gallery-section {
    padding-block: 76px;
  }

  .starlight-project-specific {
    min-height: 620px;
  }

  .starlight-product-note {
    padding: 26px 22px;
  }
}

@media (max-width: 300px) {
  .starlight-intro h2,
  .starlight-feature h2,
  .starlight-purpose-copy h2,
  .starlight-project-specific h2 {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .starlight-gallery img {
    transition: none;
  }
}

/* Branded 404 page */
.error-hero {
  position: relative;
  isolation: isolate;
  min-height: max(650px, calc(100svh - 122px));
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 86% 24%, rgba(211, 104, 53, 0.2), transparent 25%),
    linear-gradient(135deg, #181914 0%, #22231d 58%, #181914 100%);
  color: var(--white);
}

.error-hero::before,
.error-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.error-hero::before {
  width: clamp(360px, 46vw, 760px);
  aspect-ratio: 1;
  top: 50%;
  right: clamp(-330px, -14vw, -120px);
  transform: translateY(-50%);
}

.error-hero::after {
  width: clamp(220px, 29vw, 480px);
  aspect-ratio: 1;
  top: 50%;
  right: clamp(-190px, -5vw, 42px);
  transform: translateY(-50%);
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  align-items: center;
  gap: clamp(56px, 9vw, 150px);
  padding-block: clamp(80px, 10vw, 150px);
}

.error-copy {
  max-width: 880px;
}

.error-copy .page-kicker {
  margin-bottom: clamp(26px, 4vw, 52px);
  color: var(--copper-bright);
}

.error-code {
  margin: 0 0 clamp(24px, 4vw, 48px);
  color: var(--copper-bright);
  font-family: var(--display);
  font-size: clamp(8.5rem, 19vw, 17rem);
  line-height: 0.68;
  letter-spacing: -0.04em;
}

.error-copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 7.3rem);
  font-weight: 400;
  line-height: var(--display-leading);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.error-copy > p:not(.page-kicker, .error-code) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

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

.error-button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.error-paths {
  position: relative;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(24, 25, 20, 0.7);
  backdrop-filter: blur(12px);
}

.error-paths > p {
  margin: 0 0 18px;
  color: var(--copper-bright);
  font-family: var(--condensed);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.error-paths a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-family: var(--condensed);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.error-paths a:hover {
  padding-left: 8px;
  color: var(--copper-bright);
}

.error-paths b {
  color: var(--copper-bright);
}

@media (max-width: 900px) {
  .error-hero {
    min-height: auto;
  }

  .error-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .error-code {
    font-size: clamp(8rem, 34vw, 13rem);
  }

  .error-paths {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .error-layout {
    padding-block: 72px 86px;
  }

  .error-copy h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .error-actions {
    display: grid;
  }

  .error-actions .button {
    width: 100%;
    justify-content: center;
  }

  .error-paths {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-paths a {
    transition: none;
  }
}
