:root {
  --navy: #2b3e5c;
  --navy-deep: #1f2e47;
  --beige: #c5b194;
  --beige-deep: #a89372;
  --beige-soft: #d8c9b0;
  --beige-tint: #f0e9dd;
  --beige-mist: #f6f1e6;
  --cream: #faf6ee;
  --cream-warm: #f8f2e6;
  --ink: #2a2a2a;
  --ink-soft: #424242;
  --ink-muted: #665e51;
  --rule: #d9cdb6;
  --rule-soft: #eadfc9;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(42, 42, 42, 0.14);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

p {
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(72px, 10vw, 150px) 0;
}

.section-paper {
  background: var(--beige-mist);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.section-ink {
  background: var(--ink);
  color: var(--cream);
}

.section-ink h2,
.section-ink h3 {
  color: var(--cream);
}

.section-ink p,
.section-ink span {
  color: rgba(250, 246, 238, 0.78);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--beige-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--beige-deep);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.button--line {
  color: var(--ink);
}

.button--line:hover,
.button--line:focus-visible {
  background: var(--beige-tint);
}

.button--light {
  border-color: var(--beige-soft);
  color: var(--cream);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.button--line-light {
  border-color: rgba(250, 246, 238, 0.62);
  color: var(--cream);
}

.button--line-light:hover,
.button--line-light:focus-visible {
  background: rgba(250, 246, 238, 0.1);
  border-color: var(--cream);
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 246, 238, 0.94);
  border-bottom: 1px solid rgba(197, 177, 148, 0.54);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 54px rgba(36, 35, 31, 0.08);
}

.site-header.is-scrolled {
  background: rgba(250, 246, 238, 0.98);
  box-shadow: 0 20px 70px rgba(36, 35, 31, 0.14);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 84px;
}

.site-header.is-scrolled .site-brand__logo {
  height: 64px;
}

.site-header__rail {
  border-bottom: 1px solid rgba(197, 177, 148, 0.38);
  background: rgba(36, 35, 31, 0.96);
  color: rgba(250, 246, 238, 0.82);
}

.site-header__rail-inner {
  width: min(1460px, calc(100% - 32px));
  min-height: 34px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.6fr auto;
  align-items: center;
  gap: 24px;
}

.site-header__rail span,
.site-header__rail a {
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header__rail a {
  justify-self: end;
  color: var(--beige-soft);
}

.site-header__inner {
  position: relative;
  z-index: 102;
  width: min(1460px, calc(100% - 32px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 42px);
}

.site-brand {
  position: relative;
  z-index: 101;
  min-width: 190px;
  min-height: 94px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 auto;
  padding-right: clamp(18px, 3vw, 38px);
}

.site-brand::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule), transparent);
}

.site-brand__logo {
  width: auto;
  height: 74px;
}

.site-brand__line {
  display: none;
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 46px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  padding: 37px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 1px;
  background: var(--beige-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

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

.site-header__actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.site-header__call {
  min-width: 148px;
  display: grid;
  align-content: center;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.42);
  color: var(--ink);
}

.site-header__call span,
.site-header__mobile-proof span {
  display: block;
  margin-bottom: 2px;
  color: var(--beige-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header__call strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-header__cta {
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.site-header__mobile-proof {
  display: none;
}

.nav-toggle {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.95);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 20, 14, 0.82), rgba(26, 20, 14, 0.44) 48%, rgba(26, 20, 14, 0.08)),
    linear-gradient(0deg, rgba(26, 20, 14, 0.72), rgba(26, 20, 14, 0) 48%);
}

@media (min-width: 901px) {
  .hero__media {
    left: 42%;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(26, 20, 14, 0.84), rgba(26, 20, 14, 0.42) 28%, rgba(26, 20, 14, 0.08)),
      linear-gradient(0deg, rgba(26, 20, 14, 0.54), rgba(26, 20, 14, 0) 52%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: calc(100% - (var(--gutter) * 2));
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(92px, 14vw, 190px) 0 clamp(96px, 13vw, 156px);
}

.hero h1,
.hero .eyebrow {
  color: var(--cream);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(250, 246, 238, 0.86);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

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

.hero .button--line {
  border-color: rgba(250, 246, 238, 0.55);
  color: var(--cream);
}

.hero .button--line:hover,
.hero .button--line:focus-visible {
  background: rgba(250, 246, 238, 0.12);
}

.hero__proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: calc(100% - (var(--gutter) * 2));
  max-width: 1240px;
  transform: translateX(-50%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--rule);
  background: rgba(250, 246, 238, 0.96);
}

.trust-strip li {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip li + li {
  border-left: 1px solid var(--rule);
}

.section-intro p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 640px;
  font-size: 19px;
}

.section-heading {
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading--wide {
  max-width: 780px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading--split > div {
  max-width: 790px;
}

.problem-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.problem-card {
  min-height: 148px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.46);
}

.problem-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--beige-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.problem-card p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
}

.service-list {
  border-top: 1px solid var(--rule);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  padding: clamp(26px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--rule);
}

.service-row__number {
  color: var(--beige-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-row p {
  font-size: 18px;
}

.craft__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr) minmax(190px, 0.32fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.craft__image-wrap {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--beige-tint);
}

.craft__image-wrap--large {
  min-height: 620px;
}

.craft__image-wrap--small {
  align-self: end;
  min-height: 360px;
  margin-bottom: -52px;
}

.craft__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.craft__copy {
  padding: clamp(26px, 4vw, 46px) 0;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.material-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(234, 223, 201, 0.26);
  background: rgba(250, 246, 238, 0.04);
}

.project-card:nth-child(2),
.project-card:nth-child(4) {
  transform: translateY(42px);
}

.project-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige-tint);
}

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

.project-card:hover .project-card__image img {
  transform: scale(1.035);
}

.project-card__content {
  padding: 22px;
}

.project-card__content p {
  margin: 0 0 10px;
  color: var(--beige-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin-bottom: 14px;
}

.project-card__content span {
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-steps li {
  min-height: 176px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}

.process-steps p {
  margin: 0;
  font-size: 16px;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

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

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--beige-deep);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 780px;
  margin: -8px 0 24px;
  font-size: 17px;
}

.cta-band {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.cta-band__media {
  min-height: 620px;
  overflow: hidden;
}

.cta-band__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 112px);
}

.cta-band__content h2 {
  max-width: 720px;
}

.cta-band__content p {
  max-width: 560px;
  font-size: 19px;
}

.cta-band__content .button {
  align-self: flex-start;
  margin-top: 14px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #24231f;
  color: var(--cream);
}

.site-footer__backdrop,
.site-footer__backdrop::after,
.site-footer::before {
  position: absolute;
  inset: 0;
}

.site-footer__backdrop {
  opacity: 0.28;
}

.site-footer__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.site-footer__backdrop::after {
  content: "";
  background: linear-gradient(90deg, rgba(36, 35, 31, 0.98), rgba(36, 35, 31, 0.9));
}

.site-footer::before {
  content: "";
  background:
    linear-gradient(180deg, rgba(197, 177, 148, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(234, 223, 201, 0.08) 0 1px, transparent 1px 25%);
  pointer-events: none;
  z-index: 1;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 0 0;
}

.site-footer__statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(46px, 6vw, 82px);
  border-bottom: 1px solid rgba(234, 223, 201, 0.2);
}

.site-footer__statement h2 {
  max-width: 1080px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: 0.92;
}

.site-footer__statement .button {
  min-width: 230px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(42px, 6vw, 78px) 0;
  border-bottom: 1px solid rgba(234, 223, 201, 0.2);
}

.site-footer__logo {
  width: 210px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0 0 10px;
  color: rgba(250, 246, 238, 0.78);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--beige-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--cream);
}

.site-footer__brand span {
  display: block;
  margin-top: 18px;
  color: rgba(250, 246, 238, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__nav {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer__nav a {
  position: relative;
  width: max-content;
  color: rgba(250, 246, 238, 0.8);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.02;
}

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

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--cream);
}

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

.site-footer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.site-footer__contact p {
  margin: 0;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(234, 223, 201, 0.22);
}

.site-footer__contact p:first-child a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
}

.site-footer__contact a {
  overflow-wrap: break-word;
}

.site-footer__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(234, 223, 201, 0.2);
}

.site-footer__proof div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid rgba(234, 223, 201, 0.2);
}

.site-footer__proof span {
  display: block;
  margin-bottom: 10px;
  color: var(--beige-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__proof p {
  margin: 0;
  color: var(--cream);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer__legal {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(234, 223, 201, 0.2);
}

.site-footer__legal p {
  margin: 0;
  color: rgba(250, 246, 238, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__legal p:last-child {
  max-width: 640px;
  text-align: right;
}

.home-art-hero {
  position: relative;
  min-height: clamp(640px, calc(100svh - 120px), 760px);
  overflow: hidden;
  background: #171512;
  color: var(--cream);
}

.home-art-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(234, 223, 201, 0.12) 0 1px, transparent 1px) 50% 0 / 25% 100%,
    linear-gradient(180deg, rgba(234, 223, 201, 0.08) 0 1px, transparent 1px) 0 44% / 100% 31%;
  pointer-events: none;
}

.home-art-hero__image,
.home-art-hero__shade {
  position: absolute;
  inset: 0;
}

.home-art-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% 52%;
  filter: saturate(0.82) contrast(1.06);
}

.home-art-hero__shade {
  background:
    radial-gradient(circle at 70% 22%, rgba(197, 177, 148, 0.18), transparent 27%),
    linear-gradient(90deg, rgba(18, 16, 13, 0.97) 0%, rgba(18, 16, 13, 0.9) 34%, rgba(18, 16, 13, 0.58) 61%, rgba(18, 16, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(18, 16, 13, 0.82) 0%, rgba(18, 16, 13, 0.08) 48%, rgba(18, 16, 13, 0.38) 100%);
}

.home-art-hero__frame {
  position: relative;
  z-index: 3;
  width: min(1480px, calc(100% - (var(--gutter) * 2)));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(38px, 5vw, 66px) 0 clamp(116px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.48fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.home-art-hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: clamp(24px, 3vw, 38px);
  color: rgba(250, 246, 238, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-art-hero__copy {
  position: relative;
  max-width: 1030px;
}

.home-art-hero__copy h1 {
  max-width: 1060px;
  margin-bottom: clamp(24px, 3vw, 38px);
  color: var(--cream);
  font-size: clamp(50px, 5.55vw, 78px);
  line-height: 0.96;
}

.home-art-hero__copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(250, 246, 238, 0.86);
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.48;
}

.home-art-hero__copy .eyebrow {
  color: var(--beige-soft);
}

.home-art-hero__copy .button--line {
  border-color: rgba(250, 246, 238, 0.62);
  color: var(--cream);
}

.home-art-hero__evidence {
  position: relative;
  min-height: 500px;
}

.home-art-hero__plate {
  position: absolute;
  top: 6px;
  right: 0;
  z-index: 4;
  width: min(405px, 100%);
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(234, 223, 201, 0.58);
  background: rgba(250, 246, 238, 0.93);
  color: var(--ink);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.28);
}

.home-art-hero__plate span,
.home-proof-card__copy p,
.home-process__steps span,
.home-service-panel__copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-art-hero__plate strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.home-art-hero__plate p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.home-art-hero__plate dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--rule);
}

.home-art-hero__plate dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.home-art-hero__plate dt,
.home-art-hero__plate dd {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-art-hero__plate dt {
  color: var(--beige-deep);
}

.home-art-hero__plate dd {
  color: var(--ink);
}

.home-art-hero__media-stack {
  position: absolute;
  inset: 0;
}

.home-art-hero__detail {
  position: absolute;
  z-index: 2;
  margin: 0;
  border: 1px solid rgba(234, 223, 201, 0.6);
  background: var(--beige-tint);
  overflow: hidden;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.24);
}

.home-art-hero__detail--copper {
  right: clamp(28px, 4vw, 72px);
  bottom: 0;
  width: clamp(210px, 18vw, 292px);
  height: clamp(270px, 24vw, 365px);
  z-index: 3;
}

.home-art-hero__detail--residence {
  left: 0;
  top: clamp(132px, 16vw, 200px);
  width: clamp(240px, 22vw, 330px);
  height: clamp(160px, 13vw, 205px);
  opacity: 0.92;
}

.home-art-hero__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-art-hero__detail figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: rgba(18, 16, 13, 0.76);
  color: rgba(250, 246, 238, 0.82);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-art-hero__ledger {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0;
  width: min(1480px, calc(100% - (var(--gutter) * 2)));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateX(-50%);
  border: 1px solid rgba(197, 177, 148, 0.68);
  border-bottom: 0;
  background: rgba(250, 246, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 -24px 72px rgba(0, 0, 0, 0.2);
}

.home-art-hero__ledger div {
  min-height: 98px;
  padding: 17px 20px;
  border-right: 1px solid var(--rule);
}

.home-art-hero__ledger div:last-child {
  border-right: 0;
}

.home-art-hero__ledger span {
  display: block;
  margin-bottom: 12px;
  color: var(--beige-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-art-hero__ledger strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 650;
  line-height: 0.95;
}

.home-art-hero__ledger p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.34;
}

.home-diagnostic,
.home-services-theater,
.home-proof-wall,
.home-materials,
.home-process,
.home-close {
  position: relative;
  scroll-margin-top: 180px;
}

.home-diagnostic {
  width: min(1500px, calc(100% - (var(--gutter) * 2)));
  margin: clamp(34px, 5vw, 70px) auto 0;
  padding: clamp(72px, 10vw, 138px) 0 clamp(86px, 12vw, 160px);
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 5.6vw, 88px);
  align-items: center;
}

.home-diagnostic::before,
.home-services-theater::before,
.home-proof-wall::before,
.home-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(197, 177, 148, 0.16) 0 1px, transparent 1px 25%);
  pointer-events: none;
}

.home-diagnostic__intro {
  position: sticky;
  top: 136px;
  align-self: start;
}

.home-diagnostic__intro h2 {
  max-width: 720px;
  font-size: clamp(38px, 4.45vw, 62px);
  line-height: 1;
}

.home-diagnostic__intro p:not(.eyebrow) {
  max-width: 620px;
  font-size: 20px;
}

.home-diagnostic__aside {
  margin-top: clamp(30px, 4vw, 52px);
  padding: 22px 0 0 24px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.home-diagnostic__aside span,
.home-diagnostic__badge span,
.home-materials__note span,
.home-process__prep span {
  display: block;
  margin-bottom: 8px;
  color: var(--beige-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-diagnostic__aside p {
  margin: 0;
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.home-diagnostic__map {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--ink);
}

.home-diagnostic__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-diagnostic__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(18, 16, 13, 0.78), rgba(18, 16, 13, 0.08) 54%),
    linear-gradient(90deg, rgba(18, 16, 13, 0.28), rgba(18, 16, 13, 0.04));
}

.home-diagnostic__badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  width: min(310px, calc(100% - 56px));
  padding: 22px;
  border: 1px solid rgba(234, 223, 201, 0.46);
  background: rgba(250, 246, 238, 0.9);
}

.home-diagnostic__badge strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 650;
  line-height: 1;
}

.home-diagnostic__map ol {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - clamp(56px, 8vw, 104px)));
  margin: 0 0 clamp(26px, 3vw, 42px) clamp(28px, 4vw, 52px);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  background: rgba(250, 246, 238, 0.96);
  box-shadow: 0 22px 70px rgba(18, 16, 13, 0.22);
}

.home-diagnostic__map li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 22px 15px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.home-diagnostic__map span {
  display: grid;
  place-items: start center;
  padding-top: 2px;
  border-right: 1px solid var(--rule-soft);
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.home-diagnostic__map strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.home-diagnostic__map p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.42;
}

.home-services-theater {
  overflow: hidden;
  padding: clamp(58px, 7vw, 104px) var(--gutter);
  background: #e8dfcf;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.home-services-theater__header {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.home-services-theater__header .eyebrow {
  grid-column: 1 / -1;
}

.home-services-theater__header h2 {
  grid-column: 1;
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.75vw, 54px);
  line-height: 1;
}

.home-services-theater__header > p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.home-services-theater__rows {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.home-service-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  min-height: auto;
  border: 1px solid rgba(197, 177, 148, 0.62);
  background: rgba(250, 246, 238, 0.72);
}

.home-service-panel:nth-child(even) {
  grid-template-columns: 1fr;
}

.home-service-panel:nth-child(even) .home-service-panel__image {
  grid-column: auto;
}

.home-service-panel:nth-child(even) .home-service-panel__copy {
  grid-column: auto;
  grid-row: auto;
  padding-left: clamp(26px, 3vw, 42px);
  padding-right: clamp(26px, 3vw, 42px);
}

.home-service-panel__image {
  height: clamp(260px, 22vw, 340px);
  overflow: hidden;
  background: var(--ink);
}

.home-service-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.home-service-panel:hover .home-service-panel__image img {
  transform: scale(1.035);
}

.home-service-panel__copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 3vw, 42px);
}

.home-service-panel__copy h3 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 2.85vw, 40px);
  line-height: 1;
}

.home-service-panel__copy p {
  max-width: 620px;
  font-size: 17px;
}

.home-service-panel__kicker {
  margin: -4px 0 12px;
  color: var(--beige-deep);
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-service-panel__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.home-service-panel__details strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-service-panel__details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-service-panel__details li {
  padding: 8px 10px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-service-panel__details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.home-proof-wall {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(440px, 0.58fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 58px);
  padding: clamp(86px, 10vw, 160px) var(--gutter);
  background: #23211d;
  color: var(--cream);
}

.home-proof-wall > * {
  position: relative;
  z-index: 1;
}

.home-proof-wall h2,
.home-proof-wall h3 {
  color: var(--cream);
}

.home-proof-wall p,
.home-proof-wall span {
  color: rgba(250, 246, 238, 0.76);
}

.home-proof-wall__intro {
  position: sticky;
  top: 124px;
  align-self: start;
}

.home-proof-wall__intro h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(32px, 3.65vw, 52px);
}

.home-proof-wall__intro > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(250, 246, 238, 0.68);
  font-size: 17px;
}

.home-proof-wall__stats {
  display: grid;
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(234, 223, 201, 0.22);
}

.home-proof-wall__stats div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(234, 223, 201, 0.22);
}

.home-proof-wall__stats span {
  display: block;
  margin-bottom: 5px;
  color: var(--beige-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-proof-wall__stats strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.home-proof-wall__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.home-proof-card {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(234, 223, 201, 0.22);
  background: rgba(250, 246, 238, 0.04);
  overflow: hidden;
}

.home-proof-card--1 {
  grid-column: span 8;
}

.home-proof-card--2 {
  grid-column: span 4;
  margin-top: 84px;
}

.home-proof-card--3 {
  grid-column: 4 / span 7;
  margin-top: 18px;
}

.home-proof-card__image {
  height: clamp(420px, 32vw, 520px);
  overflow: hidden;
  background: var(--beige-tint);
}

.home-proof-card--2 .home-proof-card__image {
  height: clamp(340px, 27vw, 430px);
}

.home-proof-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.home-proof-card:hover .home-proof-card__image img {
  transform: scale(1.035);
}

.home-proof-card--2 .home-proof-card__image img {
  object-position: left center;
}

.home-proof-card__copy {
  padding: clamp(22px, 3vw, 34px);
}

.home-proof-card__number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 223, 201, 0.42);
  background: rgba(18, 16, 13, 0.66);
  color: var(--cream) !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-proof-card__copy h3 {
  margin-bottom: 12px;
}

.home-proof-card__copy span {
  display: block;
  font-size: 15px;
  line-height: 1.58;
}

.home-materials {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  background: var(--cream);
}

.home-materials__media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
}

.home-materials__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-materials__note {
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  bottom: clamp(22px, 5vw, 70px);
  width: min(420px, calc(100% - 44px));
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(234, 223, 201, 0.5);
  background: rgba(36, 35, 31, 0.86);
}

.home-materials__note p {
  margin: 0;
  color: rgba(250, 246, 238, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.home-materials__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 120px);
}

.home-materials__copy h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.05vw, 56px);
}

.home-materials__copy p {
  max-width: 620px;
  font-size: 19px;
}

.home-materials__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.home-materials__list span {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-materials__list em {
  color: var(--beige-deep);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.home-process {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 82px);
  padding: clamp(84px, 10vw, 150px) var(--gutter);
  background: var(--beige-mist);
  border-top: 1px solid var(--rule-soft);
}

.home-process > * {
  position: relative;
  z-index: 1;
}

.home-process__title {
  align-self: start;
  position: sticky;
  top: 124px;
}

.home-process__title h2 {
  max-width: 660px;
  font-size: clamp(32px, 3.85vw, 54px);
}

.home-process__title p:not(.eyebrow) {
  max-width: 480px;
  font-size: 18px;
}

.home-process__title .button {
  margin-top: 22px;
}

.home-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.home-process__steps li {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(250, 246, 238, 0.36);
}

.home-process__steps strong {
  display: block;
  margin: 54px 0 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}

.home-process__steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.home-process__prep {
  grid-column: 2;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--rule);
  background: var(--ink);
}

.home-process__prep p {
  max-width: 760px;
  margin: 0;
  color: rgba(250, 246, 238, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.home-close {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.home-close__faq {
  padding: clamp(60px, 8vw, 118px) var(--gutter);
}

.home-close__faq h2 {
  max-width: 690px;
  font-size: clamp(32px, 3.65vw, 52px);
}

.home-close__lead {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 18px;
}

.home-close__cta {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

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

.home-close__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 16, 13, 0.82), rgba(18, 16, 13, 0.08) 62%);
}

.home-close__cta > div {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 56px));
  margin: 0 auto clamp(34px, 6vw, 74px);
  padding: clamp(28px, 4vw, 46px);
  background: rgba(250, 246, 238, 0.94);
  border: 1px solid var(--rule);
}

.home-close__cta h2 {
  font-size: clamp(30px, 3.25vw, 46px);
}

.home-close__checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.home-close__checklist span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.page-hero {
  width: min(1420px, calc(100% - (var(--gutter) * 2)));
  min-height: clamp(620px, 82vh, 880px);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 132px) 0 clamp(54px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.page-hero__copy {
  max-width: 780px;
}

.page-hero__copy p:not(.eyebrow),
.rich-copy p,
.contact-aside p,
.warranty__panel p,
.prep p {
  font-size: 19px;
}

.page-hero__media,
.portfolio-hero-grid,
.process-hero-card,
.contact-hero__panel {
  position: relative;
}

.page-hero__image,
.mosaic-image,
.portfolio-hero-grid img,
.process-hero-card__image,
.contact-hero__image,
.standards__image,
.materials-feature__image,
.case-study__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media--stack {
  min-height: 560px;
  border: 1px solid var(--rule);
  background: var(--beige-tint);
}

.page-hero__media--stack::before {
  content: "";
  position: absolute;
  inset: -24px 34px 34px -24px;
  z-index: -1;
  border: 1px solid var(--beige);
}

.hero-note {
  position: absolute;
  left: clamp(18px, 4vw, 40px);
  right: clamp(18px, 4vw, 40px);
  bottom: clamp(18px, 4vw, 40px);
  padding: 22px;
  background: rgba(250, 246, 238, 0.94);
  border: 1px solid var(--rule);
}

.hero-note span,
.process-hero-card span,
.contact-hero__panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.page-hero__media--mosaic {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.52fr);
  grid-template-rows: 1fr 0.22fr;
  gap: 18px;
}

.mosaic-image {
  border: 1px solid var(--rule);
}

.mosaic-image--wide {
  grid-row: 1 / -1;
}

.mosaic-image--tall {
  min-height: 420px;
}

.page-hero--services {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(690px, 84vh, 910px);
  padding:
    clamp(86px, 9vw, 138px) max(var(--gutter), calc((100vw - 1420px) / 2))
    clamp(68px, 7vw, 104px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  overflow: hidden;
  background: var(--ink);
}

.page-hero--services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.055) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.05), transparent 36%, rgba(197, 177, 148, 0.08));
}

.page-hero--services::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 620px);
  height: 42%;
  border-top: 1px solid rgba(197, 177, 148, 0.24);
  border-left: 1px solid rgba(197, 177, 148, 0.24);
  background: rgba(250, 246, 238, 0.04);
  pointer-events: none;
}

.page-hero--services .page-hero__copy,
.page-hero--services .page-hero__media {
  position: relative;
  z-index: 1;
}

.page-hero--services .page-hero__copy {
  max-width: 800px;
}

.page-hero--services h1 {
  max-width: 820px;
  color: var(--cream);
  font-size: clamp(52px, 6.1vw, 90px);
  line-height: 0.95;
}

.page-hero--services .page-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(19px, 1.55vw, 22px);
}

.page-hero--services .eyebrow {
  color: var(--beige-soft);
}

.services-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(32px, 4.5vw, 56px);
  border-top: 1px solid rgba(197, 177, 148, 0.42);
  border-left: 1px solid rgba(197, 177, 148, 0.42);
}

.services-hero__proof div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-right: 1px solid rgba(197, 177, 148, 0.42);
  border-bottom: 1px solid rgba(197, 177, 148, 0.42);
  background: rgba(250, 246, 238, 0.055);
}

.services-hero__proof span,
.services-hero__note span,
.service-detail__number,
.service-detail__kicker,
.materials-feature__note span {
  color: var(--beige-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.services-hero__proof strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.45;
}

.page-hero--services .page-hero__media--mosaic {
  min-height: clamp(520px, 54vw, 680px);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.42fr);
  grid-template-rows: 1fr 0.32fr;
  gap: 16px;
  transform: translateY(22px);
}

.page-hero--services .mosaic-image {
  border-color: rgba(197, 177, 148, 0.45);
  background: #171613;
  box-shadow: 24px 24px 0 rgba(250, 246, 238, 0.06);
}

.page-hero--services .mosaic-image--wide {
  min-height: inherit;
}

.page-hero--services .mosaic-image--tall {
  min-height: 440px;
}

.services-hero__note {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(197, 177, 148, 0.48);
  background: rgba(250, 246, 238, 0.94);
}

.services-hero__note span {
  display: block;
  margin-bottom: 8px;
  color: var(--beige-deep);
}

.services-hero__note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.service-diagnostic {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.service-diagnostic::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.1) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(0deg, rgba(168, 147, 114, 0.07) 0 1px, transparent 1px 172px);
}

.diagnostic__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.service-diagnostic .section-heading {
  position: sticky;
  top: 150px;
  margin-bottom: 0;
}

.service-diagnostic .section-heading h2 {
  max-width: 560px;
}

.service-diagnostic .diagnostic-grid {
  counter-reset: service-diagnostic;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  border-top: 1px solid var(--rule);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.13);
}

.service-diagnostic .diagnostic-card {
  counter-increment: service-diagnostic;
  position: relative;
  min-height: 178px;
  align-items: flex-end;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.78);
  font-size: clamp(24px, 2.2vw, 32px);
}

.service-diagnostic .diagnostic-card::before {
  content: counter(service-diagnostic, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--beige-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-diagnostic .diagnostic-card:nth-child(3),
.service-diagnostic .diagnostic-card:nth-child(6) {
  background: var(--ink);
  color: var(--cream);
}

.services-catalog {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--beige-mist) 0 34%, var(--cream) 34% 100%);
}

.services-catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.1) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, transparent, rgba(42, 42, 42, 0.04));
}

.services-catalog .container {
  position: relative;
  z-index: 1;
}

.services-catalog .section-heading {
  max-width: 900px;
}

.services-catalog .section-heading h2 {
  max-width: 820px;
}

.services-catalog .service-detail__list {
  display: grid;
  gap: clamp(24px, 3.6vw, 42px);
  border-top: 0;
}

.services-catalog .service-detail__item {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 0;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 24px 24px 0 rgba(197, 177, 148, 0.13);
}

.services-catalog .service-detail__item:nth-child(even) {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.services-catalog .service-detail__item:nth-child(even) .service-detail__media {
  order: 2;
}

.services-catalog .service-detail__item:nth-child(even) .service-detail__body {
  order: 1;
}

.service-detail__media {
  min-height: inherit;
  overflow: hidden;
  background: var(--beige-tint);
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms ease;
}

.services-catalog .service-detail__item:hover .service-detail__media img {
  transform: scale(1.035);
}

.service-detail__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.9vw, 48px);
}

.service-detail__number {
  display: block;
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--beige-deep);
}

.service-detail__kicker {
  margin: 0 0 14px;
  color: var(--beige-deep);
}

.services-catalog .service-detail__item h3 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(31px, 3.15vw, 46px);
}

.services-catalog .service-detail__item p:not(.service-detail__kicker) {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.62;
}

.service-detail__chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(18px, 2.6vw, 28px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.service-detail__chips li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-detail__proof {
  display: block;
  max-width: 780px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.services-catalog .service-detail__item:nth-child(3) .service-detail__body,
.services-catalog .service-detail__item:nth-child(5) .service-detail__body {
  background: var(--ink);
}

.services-catalog .service-detail__item:nth-child(3) h3,
.services-catalog .service-detail__item:nth-child(5) h3 {
  color: var(--cream);
}

.services-catalog .service-detail__item:nth-child(3) p:not(.service-detail__kicker),
.services-catalog .service-detail__item:nth-child(5) p:not(.service-detail__kicker) {
  color: rgba(250, 246, 238, 0.76);
}

.services-catalog .service-detail__item:nth-child(3) .service-detail__chips,
.services-catalog .service-detail__item:nth-child(5) .service-detail__chips,
.services-catalog .service-detail__item:nth-child(3) .service-detail__proof,
.services-catalog .service-detail__item:nth-child(5) .service-detail__proof {
  border-color: rgba(197, 177, 148, 0.36);
}

.services-catalog .service-detail__item:nth-child(3) .service-detail__chips li,
.services-catalog .service-detail__item:nth-child(5) .service-detail__chips li {
  border-color: rgba(197, 177, 148, 0.36);
  color: var(--cream);
  background: rgba(250, 246, 238, 0.04);
}

.services-catalog .service-detail__item:nth-child(3) .service-detail__proof,
.services-catalog .service-detail__item:nth-child(5) .service-detail__proof {
  color: rgba(250, 246, 238, 0.84);
}

.services-materials {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(197, 177, 148, 0.34);
  border-bottom: 1px solid rgba(197, 177, 148, 0.34);
}

.services-materials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.06) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(0deg, rgba(250, 246, 238, 0.04) 0 1px, transparent 1px 170px);
}

.services-materials .materials-feature__grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.services-materials .materials-feature__media {
  position: relative;
  min-height: 640px;
  border-color: rgba(197, 177, 148, 0.45);
  box-shadow: 28px 28px 0 rgba(250, 246, 238, 0.06);
}

.materials-feature__note {
  position: absolute;
  left: clamp(18px, 4vw, 38px);
  right: clamp(18px, 4vw, 38px);
  bottom: clamp(18px, 4vw, 38px);
  padding: 22px 24px;
  border: 1px solid rgba(197, 177, 148, 0.52);
  background: rgba(250, 246, 238, 0.94);
}

.materials-feature__note span {
  display: block;
  margin-bottom: 8px;
  color: var(--beige-deep);
}

.materials-feature__note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}

.services-materials h2 {
  color: var(--cream);
}

.services-materials .eyebrow {
  color: var(--beige-soft);
}

.services-materials .material-grid span {
  border-color: rgba(197, 177, 148, 0.34);
  color: var(--cream);
  background: rgba(250, 246, 238, 0.04);
}

.services-faq {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0 46%, var(--beige-mist) 46% 100%);
}

.services-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.08) 0 1px, transparent 1px 25%);
}

.services-faq .faq__grid {
  position: relative;
  z-index: 1;
}

.services-faq .faq-list {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.13);
}

.services-faq .faq-item:first-child {
  border-top: 0;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(148px, 1fr));
  gap: 0;
  overflow-x: auto;
  border-left: 1px solid var(--rule);
}

.diagnostic-card {
  min-height: 190px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.service-detail__list {
  border-top: 1px solid var(--rule);
}

.service-detail__item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(30px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--rule);
}

.service-detail__item > span,
.focus-grid span,
.timeline-list span {
  color: var(--beige-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-detail__item h3 {
  max-width: 760px;
  margin-bottom: 14px;
}

.service-detail__item p {
  max-width: 900px;
  font-size: 18px;
}

.service-detail__item strong {
  display: block;
  max-width: 940px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.materials-feature__grid,
.standards__grid,
.prep__grid,
.warranty__grid,
.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.materials-feature__media,
.standards__media {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--beige-tint);
}

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

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.focus-grid div {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.5);
}

.focus-grid h3 {
  margin: 0;
}

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

.check-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 17px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--beige-deep);
  transform: rotate(45deg);
}

.check-list--boxed {
  margin-top: 0;
  border-left: 1px solid var(--rule);
}

.check-list--boxed li {
  padding-left: 46px;
  padding-right: 20px;
  background: rgba(255, 253, 248, 0.5);
  border-right: 1px solid var(--rule);
}

.check-list--boxed li::before {
  left: 20px;
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: clamp(640px, 78vh, 820px);
  margin: 0 auto;
  padding:
    clamp(84px, 8vw, 128px) max(var(--gutter), calc((100vw - 1420px) / 2))
    clamp(64px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.05) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.05), transparent 34%, rgba(197, 177, 148, 0.06));
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(var(--gutter), calc((100vw - 1420px) / 2));
  width: 1px;
  background: rgba(197, 177, 148, 0.34);
}

.about-hero__copy,
.about-hero__media {
  position: relative;
  z-index: 1;
}

.about-hero__copy {
  max-width: 850px;
}

.about-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--cream);
  font-size: clamp(52px, 5.75vw, 84px);
  line-height: 0.96;
}

.about-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.62;
}

.about-hero .eyebrow {
  color: var(--beige-soft);
}

.about-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(197, 177, 148, 0.42);
  border-left: 1px solid rgba(197, 177, 148, 0.42);
}

.about-hero__facts div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid rgba(197, 177, 148, 0.42);
  border-bottom: 1px solid rgba(197, 177, 148, 0.42);
  background: rgba(250, 246, 238, 0.055);
}

.about-hero__facts span,
.about-story__proof span,
.about-focus__grid span,
.about-discipline__items span,
.about-trust__items span {
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-hero__facts span {
  color: var(--beige-soft);
}

.about-hero__facts strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.45;
}

.about-hero__media {
  min-height: clamp(500px, 46vw, 620px);
  transform: translateY(18px);
  overflow: hidden;
  border: 1px solid rgba(197, 177, 148, 0.5);
  background: #171613;
  box-shadow: -28px -28px 0 rgba(197, 177, 148, 0.1), 30px 30px 0 rgba(250, 246, 238, 0.06);
}

.about-hero__image,
.about-discipline__image,
.about-standards__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-hero__note {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  right: auto;
  bottom: clamp(18px, 3vw, 38px);
  width: min(440px, calc(100% - 36px));
  padding: 22px 24px;
  background: rgba(250, 246, 238, 0.96);
  border: 1px solid rgba(250, 246, 238, 0.42);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.about-hero__note span {
  display: block;
  margin-bottom: 6px;
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero__note p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.about-story {
  position: relative;
  overflow: hidden;
}

.about-story.section-pad {
  padding-top: clamp(74px, 8vw, 116px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.about-story::before {
  content: "";
  position: absolute;
  inset: clamp(42px, 6vw, 78px) auto clamp(42px, 6vw, 78px) 0;
  width: min(34vw, 430px);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(246, 241, 230, 0.62);
  pointer-events: none;
}

.about-story .container {
  position: relative;
  z-index: 1;
}

.about-story__title h2 {
  position: sticky;
  top: 130px;
  max-width: 620px;
}

.about-story__copy {
  display: grid;
  gap: 24px;
  padding-left: clamp(24px, 4vw, 58px);
  border-left: 1px solid var(--rule);
}

.about-story__copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.72;
}

.about-story__proof {
  margin-top: 14px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--rule);
  background: var(--ink);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.16);
}

.about-story__proof strong {
  display: block;
  max-width: 760px;
  margin: 8px 0 12px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.05;
}

.about-story__proof p {
  max-width: 780px;
  margin: 0;
  color: rgba(250, 246, 238, 0.74);
}

.about-story__proof span {
  color: var(--beige-soft);
}

.about-focus {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6.5vw, 90px) 0 clamp(64px, 7vw, 98px);
  background:
    linear-gradient(90deg, rgba(250, 246, 238, 0.92) 0 58%, rgba(240, 233, 221, 0.9) 58% 100%);
}

.about-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.12) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(0deg, rgba(168, 147, 114, 0.08) 0 1px, transparent 1px 180px);
}

.about-focus::after {
  content: "";
  position: absolute;
  top: clamp(96px, 11vw, 170px);
  right: max(var(--gutter), calc((100vw - 1240px) / 2));
  width: min(32vw, 420px);
  height: clamp(230px, 27vw, 360px);
  border: 1px solid rgba(197, 177, 148, 0.44);
  background:
    linear-gradient(135deg, rgba(42, 42, 42, 0.08), transparent 54%),
    rgba(255, 253, 248, 0.48);
  pointer-events: none;
}

.about-focus .container {
  position: relative;
  z-index: 2;
}

.about-focus__intro {
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.about-focus__intro .eyebrow {
  grid-column: 1;
  padding-top: 10px;
}

.about-focus__intro h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 760px;
  font-size: clamp(40px, 4.45vw, 62px);
}

.about-focus__intro p:not(.eyebrow) {
  grid-column: 1;
  max-width: 700px;
  margin-bottom: 6px;
  padding-top: clamp(18px, 5vw, 68px);
  font-size: 19px;
  line-height: 1.7;
}

.about-focus__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  position: relative;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.13);
}

.about-focus__grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.72);
}

.about-focus__grid article:nth-child(1) {
  grid-column: span 3;
  min-height: 318px;
  padding-top: clamp(30px, 4vw, 48px);
}

.about-focus__grid article:nth-child(2) {
  grid-column: span 3;
  transform: translateY(24px);
}

.about-focus__grid article:nth-child(3) {
  grid-column: span 2;
}

.about-focus__grid article:nth-child(5) {
  grid-column: span 2;
  background: var(--white);
}

.about-focus__grid article:nth-child(4) {
  grid-column: span 2;
  min-height: 240px;
  background: var(--ink);
}

.about-focus__grid article:nth-child(4) h3 {
  color: var(--cream);
}

.about-focus__grid article:nth-child(4) p {
  color: rgba(250, 246, 238, 0.74);
}

.about-focus__grid article:nth-child(4) span {
  color: var(--beige-soft);
}

.about-focus__grid h3 {
  margin: auto 0 0;
  font-size: clamp(28px, 2.5vw, 40px);
}

.about-focus__grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.about-discipline__grid,
.about-standards__grid,
.about-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: stretch;
}

.about-discipline {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.about-discipline.section-pad {
  padding-top: clamp(78px, 8vw, 114px);
  padding-bottom: clamp(78px, 8vw, 114px);
}

.about-discipline::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 44%;
  background: var(--ink);
}

.about-discipline::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(44vw, 620px);
  height: 46%;
  border-top: 1px solid var(--rule-soft);
  border-left: 1px solid var(--rule-soft);
  background:
    repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.1) 0 1px, transparent 1px 120px),
    rgba(246, 241, 230, 0.62);
  pointer-events: none;
}

.about-discipline__grid {
  position: relative;
  z-index: 2;
  align-items: center;
}

.about-discipline__media,
.about-standards__media {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--beige-tint);
}

.about-discipline__media {
  transform: translateY(-24px);
  border-color: rgba(197, 177, 148, 0.48);
  box-shadow: 26px 26px 0 rgba(197, 177, 148, 0.2);
}

.about-discipline__copy {
  align-self: center;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 70px rgba(42, 42, 42, 0.1);
}

.about-discipline__copy > p:not(.eyebrow),
.about-trust__grid > div > p {
  max-width: 780px;
  font-size: 19px;
}

.about-discipline__items,
.about-trust__items {
  display: grid;
  margin-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

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

.about-discipline__items div,
.about-trust__items div {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.54);
}

.about-discipline__items p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.about-standards {
  background:
    linear-gradient(90deg, var(--beige-mist) 0 45%, var(--cream) 45% 100%);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  overflow: hidden;
}

.about-standards.section-pad {
  padding-top: clamp(74px, 8vw, 112px);
  padding-bottom: clamp(74px, 8vw, 112px);
}

.about-standards::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.09) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, transparent 0 64%, rgba(42, 42, 42, 0.045) 64% 100%);
  pointer-events: none;
}

.about-standards__grid {
  position: relative;
  z-index: 1;
}

.about-standards__copy {
  align-self: center;
  order: 1;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.76);
}

.about-standards__media {
  order: 2;
  min-height: 620px;
  box-shadow: -24px -24px 0 rgba(197, 177, 148, 0.16);
}

.about-standards .check-list {
  background: rgba(255, 253, 248, 0.62);
  border-right: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.about-standards .check-list li {
  padding-right: 22px;
  padding-left: 52px;
}

.about-standards .check-list li::before {
  left: 22px;
}

.about-trust__grid {
  align-items: center;
}

.about-trust {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 177, 148, 0.34);
  border-bottom: 1px solid rgba(197, 177, 148, 0.34);
}

.about-trust.section-pad {
  padding-top: clamp(74px, 8vw, 112px);
  padding-bottom: clamp(74px, 8vw, 112px);
}

.about-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.06) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(0deg, rgba(250, 246, 238, 0.04) 0 1px, transparent 1px 160px);
}

.about-trust__grid {
  position: relative;
  z-index: 1;
}

.about-trust__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  border-color: rgba(197, 177, 148, 0.34);
}

.about-trust__items div {
  background: rgba(250, 246, 238, 0.05);
  border-color: rgba(197, 177, 148, 0.34);
}

.about-trust__items strong {
  display: block;
  margin-top: 18px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.05;
}

.cta-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 18px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0 50%, var(--beige-mist) 50% 100%);
  border-top: 1px solid var(--rule-soft);
}

.cta-panel.section-pad {
  padding-top: clamp(74px, 8vw, 112px);
  padding-bottom: clamp(74px, 8vw, 112px);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(var(--gutter), calc((100vw - 1240px) / 2));
  width: 1px;
  background: var(--rule);
}

.cta-panel__inner {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 24px 24px 0 rgba(197, 177, 148, 0.16);
}

.cta-panel h2 {
  max-width: 880px;
}

.page-hero--portfolio {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(700px, 86vh, 930px);
  padding:
    clamp(88px, 9vw, 138px) max(var(--gutter), calc((100vw - 1420px) / 2))
    clamp(68px, 7vw, 104px);
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  overflow: hidden;
  background: var(--ink);
}

.page-hero--portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.055) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.055), transparent 36%, rgba(197, 177, 148, 0.08));
}

.page-hero--portfolio::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(var(--gutter), calc((100vw - 1420px) / 2));
  width: 1px;
  background: rgba(197, 177, 148, 0.34);
  pointer-events: none;
}

.page-hero--portfolio .page-hero__copy,
.page-hero--portfolio .portfolio-hero-grid {
  position: relative;
  z-index: 1;
}

.page-hero--portfolio h1 {
  max-width: 820px;
  color: var(--cream);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
}

.page-hero--portfolio .page-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(19px, 1.55vw, 22px);
}

.page-hero--portfolio .eyebrow {
  color: var(--beige-soft);
}

.portfolio-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(32px, 4.5vw, 56px);
  border-top: 1px solid rgba(197, 177, 148, 0.42);
  border-left: 1px solid rgba(197, 177, 148, 0.42);
}

.portfolio-hero__facts div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid rgba(197, 177, 148, 0.42);
  border-bottom: 1px solid rgba(197, 177, 148, 0.42);
  background: rgba(250, 246, 238, 0.055);
}

.portfolio-hero__facts span,
.portfolio-hero__note span,
.portfolio-project-card__content span,
.portfolio-category-board article > span {
  color: var(--beige-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.portfolio-hero__facts strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.45;
}

.portfolio-hero-grid {
  min-height: clamp(540px, 56vw, 700px);
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.42fr);
  grid-template-rows: minmax(0, 1fr) minmax(170px, 0.34fr);
  gap: 16px;
  transform: translateY(22px);
}

.portfolio-hero-grid__main,
.portfolio-hero-grid__small,
.portfolio-hero-grid__detail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(197, 177, 148, 0.45);
  background: #171613;
}

.portfolio-hero-grid__main {
  grid-row: 1 / -1;
  box-shadow: 24px 24px 0 rgba(250, 246, 238, 0.06);
}

.portfolio-hero-grid__small {
  min-height: 340px;
}

.portfolio-hero-grid__detail {
  min-height: 210px;
}

.portfolio-hero__note {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(197, 177, 148, 0.48);
  background: rgba(250, 246, 238, 0.94);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.portfolio-hero__note span {
  display: block;
  margin-bottom: 8px;
  color: var(--beige-deep);
}

.portfolio-hero__note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.48;
}

.portfolio-cats {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0 62%, var(--beige-mist) 62% 100%);
}

.portfolio-cats::before,
.portfolio-case-studies::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.09) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(0deg, rgba(168, 147, 114, 0.06) 0 1px, transparent 1px 178px);
}

.portfolio-cats .container,
.portfolio-case-studies .container {
  position: relative;
  z-index: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.13);
}

.category-grid article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.7);
}

.category-grid article:nth-child(2),
.category-grid article:nth-child(4) {
  transform: translateY(38px);
}

.category-grid article:nth-child(3) {
  background: var(--ink);
}

.category-grid article:nth-child(3) h3,
.category-grid article:nth-child(3) p,
.category-grid article:nth-child(3) em {
  color: var(--cream);
}

.portfolio-category-board article > span {
  display: block;
  margin-bottom: auto;
  color: var(--beige-deep);
}

.category-grid h3 {
  margin-top: clamp(42px, 6vw, 74px);
  font-size: clamp(27px, 2.4vw, 36px);
}

.category-grid p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.62;
}

.category-grid em {
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.portfolio-proof-wall {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 177, 148, 0.34);
  border-bottom: 1px solid rgba(197, 177, 148, 0.34);
}

.portfolio-proof-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.06) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, transparent 0 56%, rgba(250, 246, 238, 0.045) 56% 100%);
}

.portfolio-proof-wall .container {
  position: relative;
  z-index: 1;
}

.portfolio-project-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.portfolio-project-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 201, 0.28);
  background: rgba(250, 246, 238, 0.04);
}

.portfolio-project-card:nth-child(1),
.portfolio-project-card:nth-child(6) {
  grid-column: span 6;
}

.portfolio-project-card:nth-child(3),
.portfolio-project-card:nth-child(7) {
  transform: translateY(42px);
}

.portfolio-project-card__image {
  height: 330px;
  overflow: hidden;
  background: var(--beige-tint);
}

.portfolio-project-card:nth-child(1) .portfolio-project-card__image,
.portfolio-project-card:nth-child(6) .portfolio-project-card__image {
  height: 410px;
}

.portfolio-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.portfolio-project-card:hover .portfolio-project-card__image img,
.portfolio-project-card:focus-visible .portfolio-project-card__image img {
  transform: scale(1.035);
}

.portfolio-project-card__content {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.portfolio-project-card__content span {
  display: block;
  color: var(--beige-soft);
}

.portfolio-project-card__content h3 {
  margin: 46px 0 14px;
  color: var(--cream);
  font-size: clamp(28px, 2.5vw, 38px);
}

.portfolio-project-card__content p {
  margin: 0;
  color: rgba(250, 246, 238, 0.74);
  font-size: 15px;
  line-height: 1.5;
}

.portfolio-case-studies {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.case-study-list {
  display: grid;
  gap: clamp(28px, 4.5vw, 58px);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 24px 24px 0 rgba(197, 177, 148, 0.13);
}

.case-study:nth-child(even) {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.case-study:nth-child(even) .case-study__media {
  order: 2;
}

.case-study:nth-child(even) .case-study__content {
  order: 1;
}

.case-study__media {
  min-height: 560px;
  overflow: hidden;
  border: 0;
  background: var(--beige-tint);
}

.case-study__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.case-study__content {
  align-self: center;
  padding: clamp(28px, 4.8vw, 60px);
}

.case-study__content h3 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 58px);
}

.case-study__content dl {
  margin: 24px 0 0;
  border-top: 1px solid var(--rule);
}

.case-study__content dl div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.case-study__content dt {
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-study__content dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.process-hero-card {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
}

.process-hero-card__image {
  min-height: 440px;
}

.process-hero-card div {
  padding: clamp(24px, 4vw, 38px);
}

.process-hero-card p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.timeline-list li {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.timeline-list h3 {
  margin: 58px 0 12px;
}

.timeline-list p {
  margin: 0;
  font-size: 16px;
}

.warranty__panel {
  min-height: 420px;
  padding: clamp(34px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: var(--cream);
}

.warranty__panel h2,
.warranty__panel p {
  color: var(--cream);
}

.page-hero--process {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(720px, 84vh, 920px);
  padding:
    clamp(86px, 9vw, 140px) max(var(--gutter), calc((100vw - 1420px) / 2))
    clamp(68px, 8vw, 116px);
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 223, 201, 0.18);
  background: var(--ink);
  color: var(--cream);
}

.page-hero--process .page-hero__copy,
.page-hero--process .process-hero__media {
  position: relative;
  z-index: 1;
}

.page-hero--process h1 {
  max-width: 760px;
  color: var(--cream);
  font-size: clamp(58px, 6.4vw, 108px);
}

.page-hero--process .page-hero__copy > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(18px, 1.5vw, 22px);
}

.page-hero--process .eyebrow {
  color: var(--beige-soft);
}

.process-hero__facts {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 62px);
  border-top: 1px solid rgba(234, 223, 201, 0.25);
  border-left: 1px solid rgba(234, 223, 201, 0.25);
}

.process-hero__facts div {
  min-height: 132px;
  padding: 20px;
  border-right: 1px solid rgba(234, 223, 201, 0.25);
  border-bottom: 1px solid rgba(234, 223, 201, 0.25);
}

.process-hero__facts span,
.process-hero__warranty span,
.process-prep__note span,
.process-warranty__main span,
.process-warranty__points span,
.process-proof__items span {
  display: block;
  margin-bottom: 14px;
  color: var(--beige-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-hero__facts strong {
  display: block;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.35;
}

.process-hero__media {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.58fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-self: stretch;
}

.process-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(234, 223, 201, 0.22);
}

.process-hero__image--main {
  grid-row: 1 / -1;
}

.process-hero__image--side {
  min-height: 330px;
}

.process-hero__warranty {
  align-self: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(234, 223, 201, 0.28);
  background: rgba(250, 246, 238, 0.96);
}

.process-hero__warranty span {
  color: var(--beige-deep);
}

.process-hero__warranty p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 650;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.process-map {
  position: relative;
  overflow: hidden;
}

.process-map__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.process-map__intro {
  position: sticky;
  top: 112px;
  padding: clamp(28px, 4vw, 46px) 0;
}

.process-map__intro h2 {
  max-width: 600px;
  font-size: clamp(46px, 5vw, 76px);
}

.process-map__intro p:not(.eyebrow) {
  max-width: 520px;
  font-size: 18px;
}

.process-map__intro .button {
  margin-top: 18px;
}

.process-map__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-map__steps li {
  min-height: 286px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.62);
}

.process-map__steps li:nth-child(3),
.process-map__steps li:nth-child(6) {
  background: var(--ink);
}

.process-map__steps li:nth-child(3) h3,
.process-map__steps li:nth-child(3) p,
.process-map__steps li:nth-child(6) h3,
.process-map__steps li:nth-child(6) p {
  color: var(--cream);
}

.process-map__steps li:nth-child(3) span,
.process-map__steps li:nth-child(6) span {
  color: var(--beige-soft);
}

.process-map__steps span {
  display: block;
  color: var(--beige-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-map__steps h3 {
  margin: 72px 0 14px;
  font-size: clamp(28px, 2.7vw, 40px);
}

.process-map__steps p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.process-prep {
  overflow: hidden;
  background: var(--cream);
}

.process-prep__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.process-prep__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--beige-tint);
  box-shadow: -24px 24px 0 rgba(197, 177, 148, 0.14);
}

.process-prep__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.process-prep__note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.94);
}

.process-prep__note span {
  color: var(--beige-deep);
}

.process-prep__note p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.process-prep__content h2 {
  max-width: 720px;
  font-size: clamp(48px, 5.5vw, 82px);
}

.process-prep__content > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 19px;
}

.process-prep__lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-prep__lists div {
  min-height: 320px;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-prep__lists h3 {
  margin-bottom: 34px;
  font-size: 28px;
}

.process-prep__lists ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-prep__lists li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.process-prep__lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border: 1px solid var(--beige-deep);
  background: var(--cream);
}

.process-warranty .section-heading--split > p {
  max-width: 560px;
  color: rgba(250, 246, 238, 0.74);
  font-size: 18px;
}

.process-warranty__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
}

.process-warranty__main {
  min-height: 620px;
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(234, 223, 201, 0.28);
  background: rgba(250, 246, 238, 0.05);
}

.process-warranty__main h3 {
  max-width: 560px;
  color: var(--cream);
  font-size: clamp(44px, 5vw, 78px);
}

.process-warranty__main p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(250, 246, 238, 0.76);
  font-size: 18px;
}

.process-warranty__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(234, 223, 201, 0.24);
  border-left: 1px solid rgba(234, 223, 201, 0.24);
}

.process-warranty__points article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid rgba(234, 223, 201, 0.24);
  border-bottom: 1px solid rgba(234, 223, 201, 0.24);
}

.process-warranty__points h3 {
  margin: 58px 0 12px;
  color: var(--cream);
  font-size: clamp(28px, 3vw, 40px);
}

.process-warranty__points p {
  margin: 0;
  color: rgba(250, 246, 238, 0.72);
  font-size: 16px;
}

.process-warranty__exclusions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(234, 223, 201, 0.24);
  background: rgba(250, 246, 238, 0.04);
}

.process-warranty__exclusions h3 {
  color: var(--cream);
  font-size: clamp(34px, 3.6vw, 52px);
}

.process-warranty__exclusions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-warranty__exclusions li {
  position: relative;
  padding-left: 20px;
  color: rgba(250, 246, 238, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.process-warranty__exclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--beige-soft);
}

.process-proof__ledger {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 24px 24px 0 rgba(197, 177, 148, 0.12);
}

.process-proof__intro {
  min-height: 680px;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--cream);
}

.process-proof__intro h2 {
  max-width: 650px;
  color: var(--cream);
  font-size: clamp(44px, 5vw, 78px);
}

.process-proof__intro > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(250, 246, 238, 0.76);
  font-size: 18px;
}

.process-proof__contact {
  margin-top: clamp(42px, 6vw, 84px);
  padding: 24px;
  border: 1px solid rgba(234, 223, 201, 0.26);
  background: rgba(250, 246, 238, 0.05);
}

.process-proof__contact span {
  display: block;
  margin-bottom: 12px;
  color: var(--beige-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-proof__contact strong {
  display: block;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 650;
  line-height: 1;
}

.process-proof__contact p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(250, 246, 238, 0.7);
  font-size: 15px;
}

.process-proof__body {
  display: grid;
  grid-template-rows: auto 1fr;
}

.process-proof__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-proof__items article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-proof__items span {
  display: block;
  margin-bottom: 28px;
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-proof__items strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 650;
  line-height: 1.02;
}

.process-proof__items p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.35;
}

.process-proof__closeout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  border-left: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-proof__closeout > div:first-child {
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--rule);
}

.process-proof__closeout h3 {
  max-width: 360px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.process-proof__closeout-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.process-proof__closeout-grid article {
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

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

.process-proof__closeout-grid h4 {
  margin-bottom: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-proof__closeout-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.process-faq .section-intro p:not(.eyebrow) {
  max-width: 520px;
  font-size: 18px;
}

.process-final-cta {
  border-top: 1px solid var(--rule);
}

.contact-hero__panel {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
}

.contact-hero__image {
  min-height: 430px;
}

.contact-hero__panel > div {
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-hero__panel p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-aside {
  position: sticky;
  top: 112px;
}

.trust-strip--stacked {
  grid-template-columns: 1fr;
  margin-top: 34px;
}

.trust-strip--stacked li + li,
.trust-strip--stacked li:nth-child(3),
.trust-strip--stacked li:nth-child(4) {
  border-left: 0;
  border-top: 1px solid var(--rule);
}

.form-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--rule);
  background: var(--white);
}

.form-panel__intro {
  margin-bottom: 28px;
}

.gform_wrapper form,
.static-form {
  display: grid;
  gap: 18px;
}

.gform_wrapper .gform_fields,
.gform_wrapper ul,
.gform_wrapper li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gform_wrapper .gfield,
.static-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gform_wrapper .gfield_label {
  margin: 0;
}

.gform_wrapper input,
.gform_wrapper select,
.gform_wrapper textarea,
.static-form input,
.static-form select,
.static-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.gform_wrapper textarea,
.static-form textarea {
  min-height: 170px;
  resize: vertical;
}

.gform_wrapper .gfield_description {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.gform_wrapper .gform_button,
.static-form button {
  width: auto;
  min-width: 220px;
  justify-self: start;
  cursor: pointer;
}

.page-hero--contact {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(720px, 86vh, 940px);
  padding:
    clamp(86px, 9vw, 142px) max(var(--gutter), calc((100vw - 1420px) / 2))
    clamp(70px, 8vw, 116px);
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  overflow: hidden;
  border-bottom: 1px solid rgba(234, 223, 201, 0.18);
  background: var(--ink);
  color: var(--cream);
}

.page-hero--contact .page-hero__copy,
.contact-hero__media {
  position: relative;
  z-index: 1;
}

.page-hero--contact h1 {
  max-width: 820px;
  color: var(--cream);
  font-size: clamp(58px, 6.1vw, 104px);
}

.page-hero--contact .page-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(18px, 1.5vw, 22px);
}

.page-hero--contact .eyebrow {
  color: var(--beige-soft);
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 44px);
}

.contact-hero__media {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-self: stretch;
}

.contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(234, 223, 201, 0.24);
}

.contact-hero__image--wide {
  grid-row: 1 / -1;
}

.contact-hero__image--detail {
  min-height: 320px;
}

.contact-hero__card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(234, 223, 201, 0.28);
  background: rgba(250, 246, 238, 0.96);
}

.contact-hero__card span,
.contact-methods__cards article > span,
.contact-fit__list span,
.contact-aside__prompts span,
.contact-prep__items span {
  display: block;
  margin-bottom: 14px;
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-hero__card strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 650;
  line-height: 1;
}

.contact-hero__card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.contact-methods__grid {
  display: grid;
  gap: clamp(30px, 5vw, 60px);
}

.contact-methods__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.contact-methods__cards article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.7);
}

.contact-methods__cards a,
.contact-methods__cards strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 650;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.contact-methods__cards a[href^="mailto:"] {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 850;
  line-height: 1.22;
}

.contact-methods__cards .contact-email-link span {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
  white-space: nowrap;
}

.contact-methods__cards p {
  max-width: 340px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-fit {
  overflow: hidden;
  background: var(--cream);
}

.contact-fit__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-fit__intro {
  position: sticky;
  top: 112px;
}

.contact-fit__intro h2 {
  max-width: 620px;
  font-size: clamp(46px, 5vw, 76px);
}

.contact-fit__intro p:not(.eyebrow) {
  max-width: 540px;
  font-size: 18px;
}

.contact-fit__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.contact-fit__list div {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.65);
}

.contact-fit__list div:nth-child(2),
.contact-fit__list div:nth-child(5) {
  background: var(--ink);
}

.contact-fit__list div:nth-child(2) span,
.contact-fit__list div:nth-child(2) p,
.contact-fit__list div:nth-child(5) span,
.contact-fit__list div:nth-child(5) p {
  color: var(--cream);
}

.contact-fit__list p {
  margin: 42px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 650;
  line-height: 1.08;
}

.contact-main.section-ink {
  position: relative;
  overflow: hidden;
}

.contact-main__grid {
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(34px, 6vw, 86px);
}

.contact-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(234, 223, 201, 0.24);
  background: rgba(250, 246, 238, 0.04);
}

.contact-aside h2 {
  color: var(--cream);
  font-size: clamp(42px, 4.8vw, 72px);
}

.contact-aside p:not(.eyebrow) {
  color: rgba(250, 246, 238, 0.76);
  font-size: 18px;
}

.contact-aside__prompts {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(234, 223, 201, 0.22);
}

.contact-aside__prompts span {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(234, 223, 201, 0.22);
  color: var(--beige-soft);
}

.contact-aside__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(28px, 4vw, 44px);
}

.contact-aside__trust strong {
  min-height: 72px;
  padding: 14px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(234, 223, 201, 0.22);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-form-panel {
  background: var(--cream);
  box-shadow: 24px 24px 0 rgba(250, 246, 238, 0.08);
}

.contact-form-panel .eyebrow {
  color: var(--beige-deep);
}

.contact-form-panel .form-panel__intro h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 64px);
}

.contact-form-panel .form-panel__intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-prep__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.contact-prep__title h2 {
  max-width: 620px;
  font-size: clamp(46px, 5vw, 76px);
}

.contact-prep__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.contact-prep__items article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.68);
}

.contact-prep__items h3 {
  margin: 54px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-prep__items p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-faq .section-intro p:not(.eyebrow) {
  max-width: 520px;
  font-size: 18px;
}

.contact-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 24px 24px 0 rgba(197, 177, 148, 0.12);
}

.contact-final__panel h2 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 78px);
}

.contact-final__panel p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
}

.simple-page {
  padding: clamp(90px, 12vw, 150px) 0;
}

.simple-page__article {
  max-width: 880px;
}

.entry-content {
  font-size: 18px;
}

@media (max-width: 1120px) {
  .site-header__rail {
    display: none;
  }

  .site-header__inner {
    width: calc(100vw - 32px);
    min-height: 86px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 86px;
  }

  .site-brand {
    min-height: 86px;
    min-width: 154px;
    padding-right: 0;
  }

  .site-brand::after {
    display: none;
  }

  .site-brand__logo {
    height: 68px;
  }

  .site-header.is-scrolled .site-brand__logo {
    height: 68px;
  }

  .site-brand__line {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 101;
    width: 52px;
    height: 52px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    background: rgba(255, 253, 248, 0.74);
  }

  .nav-toggle span:not(.screen-reader-text) {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-open .nav-toggle span:not(.screen-reader-text):nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:not(.screen-reader-text):nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:not(.screen-reader-text):nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(18px, 3vw, 28px);
    width: 100vw;
    height: 100dvh;
    max-height: none;
    overflow: auto;
    padding: calc(86px + clamp(28px, 5vw, 48px)) clamp(26px, 5vw, 46px) clamp(28px, 5vw, 46px);
    background: rgba(250, 246, 238, 0.995);
    box-shadow: 0 34px 86px rgba(36, 35, 31, 0.18);
  }

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

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 72px;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule-soft);
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(32px, 3.8vw, 39px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

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

  .site-header__call,
  .site-header__cta {
    min-width: 0;
    width: 100%;
    min-height: 58px;
  }

  .site-header__mobile-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .site-header__mobile-proof span {
    min-height: 58px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--rule);
    color: var(--ink);
    background: var(--beige-mist);
  }

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

  .site-footer__statement .button {
    justify-self: start;
  }

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

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

  .focus-grid,
  .about-focus__grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid--portfolio,
  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portfolio-project-card,
  .portfolio-project-card:nth-child(1),
  .portfolio-project-card:nth-child(6) {
    grid-column: auto;
  }

  .portfolio-project-card:nth-child(3),
  .portfolio-project-card:nth-child(7) {
    transform: none;
  }

  .page-hero--contact {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .contact-hero__media {
    min-height: 560px;
  }

  .contact-methods__cards,
  .contact-fit__grid,
  .contact-main__grid,
  .contact-prep__grid {
    grid-template-columns: 1fr;
  }

  .contact-fit__intro,
  .contact-aside {
    position: static;
  }

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

  .project-card:nth-child(2),
  .project-card:nth-child(4) {
    transform: none;
  }

  .craft__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .craft__image-wrap--small {
    grid-column: 1 / -1;
    min-height: 320px;
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .site-header__rail {
    display: none;
  }

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

  .site-header.is-scrolled .site-header__inner {
    min-height: 82px;
  }

  .site-brand {
    min-height: 82px;
    min-width: 150px;
    padding-right: 0;
  }

  .site-brand::after {
    display: none;
  }

  .site-brand__logo {
    width: auto;
    height: 66px;
  }

  .site-header.is-scrolled .site-brand__logo {
    height: 66px;
  }

  .nav-toggle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    background: rgba(255, 253, 248, 0.78);
  }

  .nav-toggle span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    width: 100vw;
    height: 100dvh;
    max-height: none;
    overflow: auto;
    padding: calc(82px + 26px) var(--gutter) 34px;
    background: rgba(250, 246, 238, 0.995);
    box-shadow: 0 34px 86px rgba(36, 35, 31, 0.18);
  }

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

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-header__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .site-header__call,
  .site-header__cta {
    min-width: 0;
    width: 100%;
  }

  .site-header__mobile-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-header__mobile-proof span {
    min-height: 54px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--rule);
    color: var(--ink);
    background: var(--beige-mist);
  }

  .hero {
    min-height: 820px;
    display: block;
  }

  .hero__content {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .hero__proof {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - (var(--gutter) * 2));
    max-width: 1240px;
    margin: 0 auto 42px;
    transform: none;
  }

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

  .page-hero--services {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .page-hero--portfolio {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .page-hero--process {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .page-hero--contact {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .page-hero--services .page-hero__media--mosaic {
    transform: none;
  }

  .page-hero--portfolio .portfolio-hero-grid {
    transform: none;
  }

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

  .portfolio-project-card,
  .portfolio-project-card:nth-child(1),
  .portfolio-project-card:nth-child(6) {
    grid-column: auto;
  }

  .portfolio-project-card:nth-child(3),
  .portfolio-project-card:nth-child(7) {
    transform: none;
  }

  .process-hero__media {
    min-height: 520px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr);
  }

  .contact-hero__media {
    min-height: 520px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr);
  }

  .process-map__grid,
  .process-prep__grid,
  .process-warranty__grid,
  .process-proof__ledger,
  .process-proof__closeout {
    grid-template-columns: 1fr;
  }

  .process-map__intro {
    position: static;
    padding-top: 0;
  }

  .process-warranty__main {
    min-height: 420px;
  }

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

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

  .service-diagnostic .section-heading {
    position: static;
  }

  .services-catalog .service-detail__item,
  .services-catalog .service-detail__item:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .services-catalog .service-detail__item:nth-child(even) .service-detail__media,
  .services-catalog .service-detail__item:nth-child(even) .service-detail__body {
    order: initial;
  }

  .service-detail__media {
    min-height: 420px;
  }

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

  .trust-strip li {
    min-height: 58px;
  }

  .trust-strip li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .trust-strip li:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .grid-2,
  .about-hero,
  .about-story__grid,
  .about-discipline__grid,
  .about-standards__grid,
  .about-trust__grid,
  .process__grid,
  .faq__grid,
  .cta-band,
  .page-hero,
  .materials-feature__grid,
  .standards__grid,
  .prep__grid,
  .warranty__grid,
  .contact-main__grid,
  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .case-study:nth-child(even) .case-study__media,
  .case-study:nth-child(even) .case-study__content {
    order: initial;
  }

  .page-hero {
    min-height: auto;
    padding-top: 74px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 74px;
    background: var(--ink);
  }

  .about-hero::before {
    background: none;
  }

  .about-hero__facts,
  .about-focus__intro,
  .about-discipline__items {
    grid-template-columns: 1fr;
  }

  .about-focus::after {
    display: none;
  }

  .about-focus__intro .eyebrow,
  .about-focus__intro h2,
  .about-focus__intro p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-focus__intro p:not(.eyebrow) {
    padding-top: 0;
  }

  .about-hero__media {
    transform: none;
  }

  .about-story__title h2 {
    position: static;
  }

  .about-story__copy {
    padding-left: 0;
    border-left: 0;
  }

  .about-discipline::before {
    height: 28%;
  }

  .about-discipline__media,
  .about-standards__media {
    transform: none;
    box-shadow: none;
  }

  .about-discipline__copy {
    padding: clamp(24px, 5vw, 42px);
  }

  .about-standards {
    background: var(--cream);
  }

  .page-hero__media--stack,
  .page-hero__media--mosaic,
  .about-hero__media,
  .about-discipline__media,
  .about-standards__media,
  .portfolio-hero-grid,
  .process-hero-card__image,
  .contact-hero__image,
  .materials-feature__media,
  .standards__media,
  .case-study__media {
    min-height: 420px;
  }

  .contact-aside {
    position: static;
  }

  .contact-hero__panel > div {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .service-row p {
    grid-column: 2;
  }

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

  .craft__image-wrap--large {
    min-height: 460px;
  }

  .section-heading--split {
    align-items: start;
    flex-direction: column;
  }

  .cta-band__media {
    min-height: 420px;
  }

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

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 33px;
  }

  .container,
  .site-footer__inner,
  .site-footer__legal,
  .page-hero {
    width: calc(100vw - (var(--gutter) * 2));
  }

  .site-header__inner {
    width: calc(100vw - 32px);
    min-height: 78px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 78px;
  }

  .site-brand {
    min-width: 132px;
    min-height: 78px;
  }

  .site-brand__logo {
    height: 54px;
  }

  .site-header.is-scrolled .site-brand__logo {
    height: 54px;
  }

  .site-header__nav {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100dvh;
    max-height: none;
    padding: calc(78px + 22px) var(--gutter) 30px;
  }

  .site-header__actions,
  .site-header__mobile-proof {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    padding-top: 56px;
  }

  .site-footer__statement h2 {
    font-size: 40px;
  }

  .site-footer__nav a {
    font-size: 28px;
  }

  .site-footer__contact,
  .site-footer__proof {
    grid-template-columns: 1fr;
  }

  .site-footer__contact p:first-child a {
    font-size: 46px;
  }

  .site-footer__proof div {
    min-height: auto;
  }

  .site-footer__legal {
    display: block;
  }

  .site-footer__legal p:last-child {
    margin-top: 12px;
    text-align: left;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    min-height: auto;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(26, 20, 14, 0.82), rgba(26, 20, 14, 0.42) 58%, rgba(26, 20, 14, 0.16)),
      linear-gradient(90deg, rgba(26, 20, 14, 0.58), rgba(26, 20, 14, 0.08));
  }

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

  .hero__content {
    width: auto;
    max-width: none;
    margin-right: var(--gutter);
    margin-left: var(--gutter);
    padding-top: 88px;
  }

  .hero h1 {
    max-width: calc(100vw - (var(--gutter) * 2));
    font-size: 38px;
  }

  .hero__lead {
    max-width: calc(100vw - (var(--gutter) * 2));
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero .eyebrow {
    max-width: calc(100vw - (var(--gutter) * 2));
    font-size: 11px;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip li + li,
  .trust-strip li:nth-child(3),
  .trust-strip li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .problem-board,
  .process-steps,
  .project-grid,
  .material-grid,
  .focus-grid,
  .services-hero__proof,
  .portfolio-hero__facts,
  .portfolio-project-wall,
  .contact-methods__cards,
  .contact-fit__list,
  .contact-prep__items,
  .about-hero__facts,
  .about-focus__grid,
  .about-discipline__items,
  .about-trust__items,
  .category-grid,
  .timeline-list,
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-grid {
    overflow-x: visible;
  }

  .page-hero--services {
    width: 100%;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .page-hero--services .page-hero__copy,
  .page-hero--services h1,
  .page-hero--services .page-hero__copy > p:not(.eyebrow),
  .services-hero__proof {
    width: calc(100vw - (var(--gutter) * 2));
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .services-hero__proof strong {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .page-hero--services h1 {
    font-size: 34px;
    line-height: 1.04;
    width: min(100%, 330px);
  }

  .page-hero--services .page-hero__copy > p:not(.eyebrow) {
    font-size: 18px;
    width: min(100%, 340px);
  }

  .services-hero__proof div {
    min-height: auto;
    padding: 18px;
  }

  .page-hero--services .page-hero__media--mosaic {
    min-height: auto;
  }

  .services-hero__note {
    padding: 18px;
  }

  .service-diagnostic .diagnostic-grid {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .service-diagnostic .diagnostic-card {
    min-height: 128px;
    padding-top: 48px;
    font-size: 25px;
  }

  .page-hero--portfolio {
    width: 100%;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .page-hero--portfolio .page-hero__copy,
  .page-hero--portfolio h1,
  .page-hero--portfolio .page-hero__copy > p:not(.eyebrow),
  .portfolio-hero__facts {
    width: calc(100vw - (var(--gutter) * 2));
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .page-hero--process {
    width: 100%;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .page-hero--process .page-hero__copy,
  .page-hero--process h1,
  .page-hero--process .page-hero__copy > p:not(.eyebrow),
  .process-hero__facts {
    width: calc(100vw - (var(--gutter) * 2));
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .page-hero--contact {
    width: 100%;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .page-hero--portfolio h1 {
    width: min(100%, 340px);
    font-size: 36px;
    line-height: 1.04;
  }

  .page-hero--process h1 {
    width: min(100%, 342px);
    font-size: 36px;
    line-height: 1.04;
  }

  .page-hero--contact h1 {
    font-size: 42px;
    line-height: 1;
  }

  .page-hero--portfolio .page-hero__copy > p:not(.eyebrow) {
    width: min(100%, 344px);
    font-size: 18px;
  }

  .page-hero--process .page-hero__copy > p:not(.eyebrow) {
    width: min(100%, 344px);
    font-size: 18px;
  }

  .page-hero--contact .page-hero__copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .contact-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hero__media {
    display: block;
    min-height: auto;
  }

  .contact-hero__image {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .contact-hero__image + .contact-hero__image {
    margin-top: 14px;
  }

  .contact-hero__card {
    position: relative;
    margin: -74px 18px 18px;
    padding: 18px;
  }

  .portfolio-hero__facts div {
    min-height: auto;
    padding: 18px;
  }

  .process-hero__facts {
    grid-template-columns: 1fr;
  }

  .process-hero__facts div {
    min-height: auto;
    padding: 18px;
  }

  .process-hero__media {
    display: block;
    min-height: auto;
  }

  .process-hero__image {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .process-hero__image + .process-hero__image {
    margin-top: 14px;
  }

  .process-hero__warranty {
    margin: -74px 18px 18px;
    position: relative;
  }

  .portfolio-hero-grid {
    min-height: auto;
  }

  .portfolio-hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -76px 18px 18px;
  }

  .category-grid article {
    min-height: auto;
    transform: none !important;
  }

  .category-grid h3 {
    margin-top: 42px;
  }

  .process-map__steps,
  .process-prep__lists,
  .process-warranty__points,
  .process-warranty__exclusions,
  .process-warranty__exclusions ul,
  .process-proof__items,
  .process-proof__closeout,
  .contact-methods__cards,
  .contact-fit__grid,
  .contact-fit__list,
  .contact-main__grid,
  .contact-aside__trust,
  .contact-prep__grid,
  .contact-prep__items,
  .contact-final__panel {
    grid-template-columns: 1fr;
  }

  .process-map__steps li,
  .process-warranty__points article,
  .process-prep__lists div,
  .process-proof__items article,
  .contact-methods__cards article,
  .contact-fit__list div,
  .contact-prep__items article {
    min-height: auto;
  }

  .process-map__steps h3,
  .process-warranty__points h3,
  .contact-prep__items h3 {
    margin-top: 42px;
  }

  .contact-fit__intro,
  .contact-aside {
    position: static;
  }

  .contact-aside,
  .contact-form-panel,
  .contact-final__panel {
    padding: 22px 20px;
    box-shadow: none;
  }

  .process-prep__media {
    min-height: 360px;
    box-shadow: none;
  }

  .process-prep__note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -74px 18px 18px;
    padding: 18px;
  }

  .process-warranty__main,
  .process-warranty__points article,
  .process-warranty__exclusions {
    padding: 22px 20px;
  }

  .process-proof__ledger {
    box-shadow: none;
  }

  .process-proof__intro,
  .process-proof__items article,
  .process-proof__closeout > div:first-child,
  .process-proof__closeout-grid article {
    padding: 22px 20px;
  }

  .process-proof__intro {
    min-height: auto;
  }

  .portfolio-project-card {
    min-height: auto;
  }

  .portfolio-project-card__image,
  .portfolio-project-card:nth-child(1) .portfolio-project-card__image,
  .portfolio-project-card:nth-child(6) .portfolio-project-card__image {
    height: 300px;
  }

  .portfolio-project-card__content h3 {
    margin-top: 34px;
  }

  .problem-card,
  .process-steps li,
  .focus-grid div,
  .about-focus__grid article,
  .about-discipline__items div,
  .about-trust__items div,
  .category-grid article,
  .timeline-list li,
  .diagnostic-card {
    min-height: auto;
  }

  .about-hero__media,
  .about-discipline__media,
  .about-standards__media {
    min-height: 360px;
    box-shadow: none;
  }

  .about-hero__copy h1 {
    font-size: 42px;
    line-height: 1;
  }

  .about-hero {
    width: 100%;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

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

  .about-hero__note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -84px 18px 18px;
  }

  .about-focus__grid article:nth-child(1),
  .about-focus__grid article:nth-child(2),
  .about-focus__grid article:nth-child(3),
  .about-focus__grid article:nth-child(4),
  .about-focus__grid article:nth-child(5) {
    grid-column: auto;
  }

  .about-focus__grid article:nth-child(2) {
    transform: none;
  }

  .about-story__proof,
  .about-focus__grid article,
  .about-discipline__items div,
  .about-trust__items div {
    padding: 20px;
  }

  .case-study {
    box-shadow: none;
  }

  .case-study__media {
    min-height: 300px;
  }

  .case-study__content {
    padding: 22px 20px;
  }

  .case-study__content h3 {
    font-size: 32px;
  }

  .case-study__content dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .services-catalog .service-detail__item {
    box-shadow: none;
  }

  .service-detail__body {
    padding: 24px 20px;
  }

  .service-detail__media {
    min-height: 300px;
  }

  .service-detail__number {
    margin-bottom: 26px;
  }

  .services-catalog .service-detail__item h3 {
    font-size: 32px;
  }

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

  .services-materials .materials-feature__media {
    min-height: 380px;
    box-shadow: none;
  }

  .materials-feature__note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -74px 18px 18px;
    padding: 18px;
  }

  .services-faq .faq-list {
    padding: 18px;
    box-shadow: none;
  }

  .page-hero__media--mosaic,
  .portfolio-hero-grid {
    display: block;
  }

  .mosaic-image,
  .portfolio-hero-grid img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .mosaic-image + .mosaic-image,
  .portfolio-hero-grid img + img {
    margin-top: 14px;
  }

  .case-study__content dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .focus-grid div,
  .timeline-list li {
    gap: 42px;
  }

  .cta-panel__inner {
    display: block;
  }

  .cta-panel__inner .button {
    margin-top: 22px;
  }

  .gform_wrapper .gform_button,
  .static-form button {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row p {
    grid-column: auto;
  }

  .craft__image-wrap--large,
  .craft__image-wrap--small {
    min-height: 340px;
  }

  .project-card__image {
    aspect-ratio: 4 / 3;
  }

  .cta-band__content {
    padding: 48px var(--gutter);
  }
}

@media (max-width: 1180px) {
  .home-art-hero__frame {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .home-art-hero__evidence {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 18px;
    margin-top: 28px;
  }

  .home-art-hero__plate {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    max-width: none;
    margin-top: 0;
  }

  .home-art-hero__media-stack {
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .home-art-hero__detail {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    min-height: 250px;
    display: block;
  }

  .home-art-hero__detail--residence {
    opacity: 1;
  }

  .home-art-hero__ledger {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(1480px, calc(100% - (var(--gutter) * 2)));
    margin: 0 auto;
    transform: none;
  }

  .home-art-hero__ledger div {
    min-height: 92px;
  }

  .home-diagnostic,
  .home-services-theater__header,
  .home-proof-wall,
  .home-materials,
  .home-process,
  .home-close {
    grid-template-columns: 1fr;
  }

  .home-diagnostic__intro,
  .home-proof-wall__intro,
  .home-process__title {
    position: static;
  }

  .home-diagnostic__map ol {
    transform: none;
    margin: 0 0 28px 28px;
  }

  .home-service-panel,
  .home-service-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .home-service-panel:nth-child(even) .home-service-panel__image,
  .home-service-panel:nth-child(even) .home-service-panel__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .home-service-panel:nth-child(even) .home-service-panel__copy,
  .home-service-panel__copy {
    padding: clamp(28px, 5vw, 56px);
  }

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

  .home-proof-wall__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    border-left: 1px solid rgba(234, 223, 201, 0.22);
  }

  .home-proof-wall__stats div {
    padding: 16px;
    border-right: 1px solid rgba(234, 223, 201, 0.22);
  }

  .home-proof-card--1,
  .home-proof-card--2,
  .home-proof-card--3 {
    grid-column: span 6;
    margin-top: 0;
  }

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

  .home-process__prep {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .home-diagnostic,
  .home-services-theater,
  .home-proof-wall,
  .home-materials,
  .home-process,
  .home-close {
    scroll-margin-top: 100px;
  }

  .home-art-hero {
    min-height: auto;
  }

  .home-art-hero__shade {
    background:
      linear-gradient(0deg, rgba(18, 16, 13, 0.88) 0%, rgba(18, 16, 13, 0.5) 58%, rgba(18, 16, 13, 0.28) 100%),
      linear-gradient(90deg, rgba(18, 16, 13, 0.78), rgba(18, 16, 13, 0.18));
  }

  .home-art-hero__frame {
    width: calc(100vw - (var(--gutter) * 2));
    min-height: auto;
    display: block;
    padding: 50px 0 24px;
  }

  .home-art-hero__kicker {
    margin-bottom: 26px;
    gap: 8px 16px;
  }

  .home-art-hero__copy h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(34px, 9.5vw, 43px);
    line-height: 1.02;
  }

  .home-art-hero__copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 18px;
  }

  .home-art-hero__copy .hero__actions {
    margin-top: 26px;
  }

  .home-art-hero__evidence {
    display: block;
    margin-top: 22px;
  }

  .home-art-hero__plate {
    margin-top: 22px;
    padding: 22px;
  }

  .home-art-hero__plate strong {
    font-size: 29px;
  }

  .home-art-hero__plate dl {
    display: none;
  }

  .home-art-hero__media-stack {
    display: none;
  }

  .home-art-hero__ledger {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100vw - (var(--gutter) * 2));
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .home-art-hero__ledger div {
    min-height: 82px;
    padding: 14px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .home-art-hero__ledger div:nth-child(even) {
    border-right: 0;
  }

  .home-art-hero__ledger div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .home-art-hero__ledger div:last-child {
    border-bottom: 0;
  }

  .home-art-hero__ledger strong {
    font-size: 21px;
  }

  .home-art-hero__ledger p {
    display: none;
  }

  .home-diagnostic {
    width: calc(100vw - (var(--gutter) * 2));
    padding: 68px 0;
  }

  .home-diagnostic__intro h2,
  .home-services-theater__header h2,
  .home-materials__copy h2,
  .home-process__title h2,
  .home-close__faq h2 {
    font-size: 30px;
    line-height: 1.06;
  }

  .home-diagnostic__map {
    min-height: auto;
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .home-diagnostic__image {
    position: relative;
    height: 420px;
    border: 1px solid var(--rule);
  }

  .home-diagnostic__map::after {
    display: none;
  }

  .home-diagnostic__badge {
    position: static;
    width: 100%;
    margin-top: -1px;
    border-color: var(--rule);
  }

  .home-diagnostic__map ol {
    position: static;
    width: 100%;
    margin: -1px 0 0;
    transform: none;
  }

  .home-diagnostic__map li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 15px 16px;
  }

  .home-services-theater,
  .home-proof-wall,
  .home-process {
    padding: 68px var(--gutter);
  }

  .home-services-theater__header {
    display: block;
  }

  .home-services-theater__rows {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-service-panel {
    min-height: auto;
  }

  .home-service-panel__image,
  .home-service-panel:nth-child(even) .home-service-panel__image {
    min-height: 280px;
  }

  .home-service-panel__copy h3 {
    font-size: 30px;
  }

  .home-service-panel__details li {
    width: 100%;
  }

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

  .home-proof-card--1,
  .home-proof-card--2,
  .home-proof-card--3 {
    grid-column: 1 / -1;
  }

  .home-proof-card__image,
  .home-proof-card--2 .home-proof-card__image {
    height: 320px;
  }

  .home-materials__media {
    min-height: 420px;
  }

  .home-materials__copy {
    padding: 54px var(--gutter);
  }

  .home-materials__list {
    grid-template-columns: 1fr;
  }

  .home-materials__note {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .home-process__steps {
    grid-template-columns: 1fr;
  }

  .home-process__steps li {
    min-height: auto;
  }

  .home-process__steps strong {
    margin-top: 32px;
  }

  .home-close__cta {
    min-height: 560px;
  }

  .home-close__cta > div {
    width: calc(100% - 36px);
  }

  .home-close__checklist {
    grid-template-columns: 1fr;
  }

  .home-service-panel__image {
    min-height: 320px;
  }

  .home-service-panel__copy,
  .home-service-panel:nth-child(even) .home-service-panel__copy {
    padding: 28px 26px 44px;
  }

  .home-service-panel__copy h3 {
    font-size: 30px;
  }

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

  .home-proof-card--1,
  .home-proof-card--2,
  .home-proof-card--3 {
    grid-column: auto;
  }

  .home-proof-card__image,
  .home-proof-card--2 .home-proof-card__image {
    height: 320px;
  }

  .home-materials {
    display: block;
  }

  .home-materials__media {
    min-height: 360px;
  }

  .home-materials__copy,
  .home-close__faq {
    padding: 54px var(--gutter);
  }

  .home-materials__list {
    grid-template-columns: 1fr;
  }

  .home-process__steps {
    grid-template-columns: 1fr;
  }

  .home-process__steps li {
    min-height: auto;
  }

  .home-process__steps strong {
    margin-top: 38px;
  }

  .home-close {
    display: block;
  }

  .home-close__cta {
    min-height: 620px;
  }

  .home-close__cta > div {
    width: calc(100% - (var(--gutter) * 2));
    padding: 26px;
  }
}

/* Contact page: simplified direct layout */
.contact-simple-hero {
  padding-top: clamp(86px, 10vw, 140px);
  padding-bottom: clamp(58px, 7vw, 96px);
  border-bottom: 1px solid var(--rule);
}

.contact-simple-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-simple-hero__copy {
  max-width: 890px;
}

.contact-simple-hero__copy h1 {
  max-width: 850px;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.98;
}

.contact-simple-hero__copy > p:not(.eyebrow) {
  max-width: 730px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.contact-simple-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 44px);
}

.contact-direct-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.72);
}

.contact-direct-panel__item {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.contact-direct-panel__item:first-of-type {
  margin-top: 22px;
}

.contact-direct-panel__item > span,
.contact-request__items span {
  display: block;
  margin-bottom: 10px;
  color: var(--beige-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-direct-panel__item a,
.contact-direct-panel__item strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 650;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.contact-direct-panel__item .contact-email-link {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 850;
  line-height: 1.22;
}

.contact-direct-panel__item .contact-email-link span {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
  white-space: nowrap;
}

.contact-direct-panel__item p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.contact-direct-panel__trust {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.contact-direct-panel__trust strong {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-request {
  background: var(--cream);
}

.contact-request__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.contact-form-panel--simple {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: none;
}

.contact-form-panel--simple .form-panel__intro h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.6vw, 66px);
}

.contact-request__guide {
  position: sticky;
  top: 118px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.contact-request__guide h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 54px);
}

.contact-request__items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.contact-request__items article {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-request__items h3 {
  margin: 0 0 8px;
  font-size: clamp(23px, 2vw, 30px);
}

.contact-request__items p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

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

@media (max-width: 1120px) {
  .contact-simple-hero__grid,
  .contact-request__grid {
    grid-template-columns: 1fr;
  }

  .contact-simple-hero__copy,
  .contact-simple-hero__copy h1,
  .contact-simple-hero__copy > p:not(.eyebrow) {
    max-width: none;
  }

  .contact-direct-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .contact-direct-panel > .eyebrow,
  .contact-direct-panel__trust {
    grid-column: 1 / -1;
  }

  .contact-direct-panel__item {
    min-height: 190px;
    padding: 20px;
    border-top: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
  }

  .contact-direct-panel__item:nth-of-type(3) {
    border-right: 0;
  }

  .contact-direct-panel__item:first-of-type {
    margin-top: 16px;
  }

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

  .contact-request__guide {
    position: static;
  }

  .contact-request__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--rule);
  }

  .contact-request__items article {
    padding: 22px;
    border-right: 1px solid var(--rule);
  }
}

@media (max-width: 700px) {
  .contact-simple-hero {
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .contact-simple-hero__copy,
  .contact-simple-hero__copy h1,
  .contact-simple-hero__copy > p:not(.eyebrow),
  .contact-direct-panel {
    width: calc(100vw - (var(--gutter) * 2));
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .contact-simple-hero__copy h1 {
    font-size: 37px;
    line-height: 1.02;
  }

  .contact-simple-hero__copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .contact-simple-hero__actions,
  .contact-simple-hero__actions .button {
    width: 100%;
  }

  .contact-direct-panel,
  .contact-request__items,
  .contact-direct-panel__trust {
    grid-template-columns: 1fr;
  }

  .contact-direct-panel {
    padding: 22px;
  }

  .contact-direct-panel__item {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
  }

  .contact-direct-panel__item a,
  .contact-direct-panel__item strong,
  .contact-direct-panel__item .contact-email-link span {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .contact-direct-panel__item:nth-of-type(3) {
    border-right: 0;
  }

  .contact-form-panel--simple,
  .contact-request__guide {
    padding: 24px 20px;
  }

  .contact-form-panel--simple .form-panel__intro h2,
  .contact-request__guide h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .contact-request__items {
    border-left: 0;
  }

  .contact-request__items article {
    padding: 18px 0;
    border-right: 0;
  }
}

.button--line-light {
  border-color: rgba(250, 246, 238, 0.52);
  color: var(--cream);
}

.button--line-light:hover,
.button--line-light:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.renovation-hero {
  position: relative;
  min-height: clamp(720px, 88vh, 940px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding:
    clamp(88px, 9vw, 142px) max(var(--gutter), calc((100vw - 1420px) / 2))
    clamp(70px, 8vw, 116px);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.renovation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.058) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.06), transparent 38%, rgba(197, 177, 148, 0.1));
}

.renovation-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46vw, 680px);
  height: 36%;
  border-top: 1px solid rgba(197, 177, 148, 0.26);
  border-left: 1px solid rgba(197, 177, 148, 0.26);
  background: rgba(250, 246, 238, 0.045);
  pointer-events: none;
}

.renovation-hero__copy,
.renovation-hero__media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.renovation-hero__copy {
  max-width: 820px;
}

.renovation-hero h1 {
  max-width: 840px;
  color: var(--cream);
  font-size: clamp(54px, 6.3vw, 98px);
  line-height: 0.95;
}

.renovation-hero__copy > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(250, 246, 238, 0.78);
  font-size: clamp(19px, 1.55vw, 22px);
}

.renovation-hero .eyebrow {
  color: var(--beige-soft);
}

.renovation-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.renovation-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(32px, 4.5vw, 54px);
  border-top: 1px solid rgba(197, 177, 148, 0.42);
  border-left: 1px solid rgba(197, 177, 148, 0.42);
}

.renovation-hero__proof div {
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid rgba(197, 177, 148, 0.42);
  border-bottom: 1px solid rgba(197, 177, 148, 0.42);
  background: rgba(250, 246, 238, 0.055);
}

.renovation-hero__proof span,
.renovation-hero__note span,
.renovation-exterior-card__body span,
.renovation-gallery-card__body span,
.renovation-scope__items em {
  display: block;
  color: var(--beige-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.renovation-hero__proof strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.renovation-hero__media {
  min-height: clamp(540px, 56vw, 700px);
}

.renovation-hero__main {
  width: 82%;
  height: 78%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(197, 177, 148, 0.45);
  box-shadow: 24px 24px 0 rgba(250, 246, 238, 0.06);
}

.renovation-hero__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(197, 177, 148, 0.5);
  background: var(--beige-tint);
}

.renovation-hero__detail img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.renovation-hero__note {
  position: absolute;
  top: clamp(20px, 4vw, 42px);
  right: clamp(14px, 3vw, 30px);
  width: min(320px, 48%);
  padding: 20px 22px;
  border: 1px solid rgba(197, 177, 148, 0.52);
  background: rgba(250, 246, 238, 0.94);
}

.renovation-hero__note span {
  color: var(--beige-deep);
  margin-bottom: 8px;
}

.renovation-hero__note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}

.renovation-scope {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--beige-mist) 0 36%, var(--cream) 36% 100%);
}

.renovation-scope::before,
.renovation-gallery::before,
.renovation-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(168, 147, 114, 0.08) 0 1px, transparent 1px 25%);
}

.renovation-scope__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  min-width: 0;
}

.renovation-scope__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.13);
}

.renovation-scope__items span {
  min-width: 0;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 650;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.renovation-scope__items em {
  color: var(--beige-deep);
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
}

.renovation-feature {
  background: var(--cream);
  overflow: hidden;
}

.renovation-feature .section-heading--split,
.renovation-exterior .section-heading--split {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.renovation-feature .section-heading--split > p,
.renovation-exterior .section-heading--split > p {
  max-width: 620px;
  align-self: end;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.renovation-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.renovation-card {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.82);
}

.renovation-card:first-child {
  grid-row: span 2;
}

.renovation-card__image {
  min-height: 320px;
  overflow: hidden;
  background: var(--beige-tint);
}

.renovation-card:first-child .renovation-card__image {
  min-height: 620px;
}

.renovation-card__image img,
.renovation-exterior-card__image img,
.renovation-gallery-card__image img,
.portfolio-renovation-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.renovation-card__body {
  padding: clamp(22px, 3vw, 34px);
}

.renovation-card h3,
.renovation-exterior-card h3,
.renovation-gallery-card h3,
.portfolio-renovation-teaser h2 {
  margin-bottom: 12px;
}

.renovation-card p:not(.eyebrow),
.renovation-exterior-card p,
.renovation-gallery-card p,
.portfolio-renovation-teaser p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.renovation-exterior {
  position: relative;
  overflow: hidden;
}

.renovation-exterior::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.055) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(250, 246, 238, 0.05), transparent 44%);
}

.renovation-exterior .container {
  position: relative;
  z-index: 1;
}

.renovation-exterior h2,
.renovation-exterior-card h3 {
  color: var(--cream);
}

.renovation-exterior .section-heading--split > p,
.renovation-exterior-card p {
  color: rgba(250, 246, 238, 0.74);
}

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

.renovation-exterior-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  border: 1px solid rgba(234, 223, 201, 0.28);
  background: rgba(250, 246, 238, 0.04);
}

.renovation-exterior-card:nth-child(2) {
  transform: translateY(46px);
}

.renovation-exterior-card__image {
  height: 380px;
  overflow: hidden;
  background: var(--beige-tint);
}

.renovation-exterior-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
}

.renovation-exterior-card__body span,
.renovation-gallery-card__body span {
  color: var(--beige-soft);
}

.renovation-gallery {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.renovation-gallery .container {
  position: relative;
  z-index: 1;
}

.renovation-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.renovation-gallery-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 18px 18px 0 rgba(197, 177, 148, 0.1);
}

.renovation-gallery-card:nth-child(1),
.renovation-gallery-card:nth-child(6) {
  grid-column: span 6;
}

.renovation-gallery-card:nth-child(3),
.renovation-gallery-card:nth-child(5) {
  transform: translateY(38px);
}

.renovation-gallery-card__image {
  height: 360px;
  overflow: hidden;
  background: var(--beige-tint);
}

.renovation-gallery-card:nth-child(1) .renovation-gallery-card__image,
.renovation-gallery-card:nth-child(6) .renovation-gallery-card__image {
  height: 430px;
}

.renovation-gallery-card__body {
  padding: 22px;
}

.renovation-gallery-card__body span {
  color: var(--beige-deep);
}

.renovation-process {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.renovation-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(250, 246, 238, 0.06) 0 1px, transparent 1px 25%);
}

.renovation-process__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.renovation-process h2,
.renovation-process h3 {
  color: var(--cream);
}

.renovation-process .section-intro {
  position: sticky;
  top: 150px;
}

.renovation-process .section-intro p:not(.eyebrow),
.renovation-process__steps p {
  color: rgba(250, 246, 238, 0.72);
}

.renovation-process__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(197, 177, 148, 0.34);
  border-left: 1px solid rgba(197, 177, 148, 0.34);
}

.renovation-process__steps li {
  min-height: 240px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(197, 177, 148, 0.34);
  border-bottom: 1px solid rgba(197, 177, 148, 0.34);
  background: rgba(250, 246, 238, 0.04);
}

.renovation-process__steps h3 {
  margin-top: 58px;
}

.renovation-faq {
  position: relative;
  overflow: hidden;
}

.renovation-faq .container {
  position: relative;
  z-index: 1;
}

.renovation-faq .faq-list {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 22px 22px 0 rgba(197, 177, 148, 0.13);
}

.portfolio-renovation-teaser {
  background: var(--cream);
}

.portfolio-renovation-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 24px 24px 0 rgba(197, 177, 148, 0.13);
}

.portfolio-renovation-teaser__media {
  min-height: 420px;
  overflow: hidden;
  background: var(--beige-tint);
}

.portfolio-renovation-teaser__copy {
  align-self: center;
  padding: clamp(28px, 4.8vw, 60px);
}

.portfolio-renovation-teaser .button {
  margin-top: 12px;
}

@media (max-width: 1120px) {
  .renovation-hero,
  .renovation-scope__grid,
  .renovation-process__grid,
  .portfolio-renovation-teaser__grid {
    grid-template-columns: 1fr;
  }

  .renovation-hero {
    min-height: auto;
    padding-top: 92px;
  }

  .renovation-hero__media {
    min-height: 560px;
  }

  .renovation-hero__detail {
    height: clamp(320px, 52vw, 430px);
  }

  .renovation-feature__grid,
  .renovation-exterior__grid {
    grid-template-columns: 1fr;
  }

  .renovation-card:first-child {
    grid-row: auto;
  }

  .renovation-card:first-child .renovation-card__image {
    min-height: 420px;
  }

  .renovation-exterior-card,
  .renovation-exterior-card:nth-child(2) {
    min-height: 0;
    transform: none;
  }

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

  .renovation-gallery-card,
  .renovation-gallery-card:nth-child(1),
  .renovation-gallery-card:nth-child(6) {
    grid-column: auto;
  }

  .renovation-gallery-card:nth-child(3),
  .renovation-gallery-card:nth-child(5) {
    transform: none;
  }

  .renovation-process .section-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .renovation-hero,
  .renovation-scope,
  .renovation-feature,
  .renovation-exterior,
  .renovation-gallery,
  .renovation-process,
  .renovation-faq {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .renovation-hero__copy,
  .renovation-hero__media,
  .renovation-hero__proof,
  .renovation-scope__grid,
  .renovation-scope__items,
  .renovation-feature__grid,
  .renovation-exterior__grid,
  .renovation-gallery__grid,
  .renovation-process__grid,
  .renovation-process__steps {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .renovation-hero {
    padding-top: 82px;
  }

  .renovation-hero h1 {
    font-size: 39px;
    line-height: 1.01;
  }

  .renovation-hero__copy > p:not(.eyebrow) {
    font-size: 18px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .renovation-hero__actions,
  .renovation-hero__actions .button {
    width: 100%;
  }

  .renovation-hero__proof,
  .renovation-scope__items,
  .renovation-process__steps,
  .renovation-gallery__grid {
    grid-template-columns: 1fr;
  }

  .renovation-hero__proof div,
  .renovation-scope__items span {
    width: 100%;
  }

  .renovation-hero__media {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .renovation-hero__main,
  .renovation-hero__detail {
    position: static;
    width: 100%;
    min-height: 320px;
    height: auto;
    box-shadow: none;
  }

  .renovation-hero__note {
    position: static;
    width: 100%;
  }

  .renovation-scope__items span {
    min-height: auto;
  }

  .renovation-feature .section-heading--split,
  .renovation-exterior .section-heading--split {
    display: block;
  }

  .renovation-card,
  .renovation-card:first-child .renovation-card__image,
  .renovation-exterior-card__image,
  .renovation-gallery-card__image,
  .renovation-gallery-card:nth-child(1) .renovation-gallery-card__image,
  .renovation-gallery-card:nth-child(6) .renovation-gallery-card__image,
  .portfolio-renovation-teaser__media {
    min-height: 300px;
    height: auto;
  }

  .renovation-card__body,
  .renovation-exterior-card__body,
  .renovation-gallery-card__body,
  .portfolio-renovation-teaser__copy {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
