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

:root {
  --carbon: #3c3c3a;
  --carbon-strong: #211f1c;
  --graphite: #242526;
  --copper: #c28668;
  --copper-text: #95583d;
  --paper: #f7f2ec;
  --bone: #ede6dc;
  --cement: #c1b5a7;
  --sand: #bdafa2;
  --white: #ffffff;
  --line: #d8d0c7;
  --line-dark: rgba(247, 242, 236, 0.2);
  --text-muted: #6b6660;
  --shell: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--carbon);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--carbon-strong);
  outline-offset: 4px;
}

.method-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--copper);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 116px;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  translate: 0 -160%;
  background: var(--carbon-strong);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  translate: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: relative;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: min-height 220ms var(--ease), background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(33, 31, 28, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 40px;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand--desktop img {
  width: 188px;
  height: auto;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--carbon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="location"]::after {
  scale: 1 1;
}

.desktop-nav a[aria-current="location"] {
  color: var(--carbon-strong);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--carbon);
  border-radius: 2px;
  background: var(--carbon);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.2;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover {
  border-color: var(--carbon-strong);
  background: var(--carbon-strong);
}

.button > span {
  color: var(--copper);
  transition: translate 220ms var(--ease), color 220ms ease;
}

.button:hover > span {
  translate: 2px -2px;
}

.button--small {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 10px;
}

.text-link,
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--carbon);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 7px;
}

.text-link:hover,
.inline-cta:hover {
  color: var(--carbon-strong);
}

.text-link > span,
.inline-cta > span {
  color: var(--copper-text);
  transition: translate 220ms var(--ease);
}

.text-link:hover > span,
.inline-cta:hover > span {
  translate: 3px 0;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: stretch;
  padding-block: 56px 64px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 636px;
  padding-block: 24px;
}

.eyebrow,
.section-index {
  color: var(--carbon);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}

.eyebrow::before {
  width: 40px;
  height: 1px;
  background: var(--copper);
  content: "";
}

h1,
h2,
h3 {
  color: var(--carbon-strong);
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.7vw, 82px);
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.hero-lead {
  max-width: 610px;
  margin-top: 32px;
  color: #5f5a54;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.hero-action-note {
  max-width: 560px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  width: 100%;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  margin-right: 28px;
  color: var(--copper);
  content: "·";
}

.hero-figure {
  position: relative;
  min-height: 636px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bone);
}

.hero-figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(33, 31, 28, 0.04), rgba(33, 31, 28, 0.2));
  content: "";
  pointer-events: none;
}

.hero-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.level-line {
  position: absolute;
  z-index: 2;
  top: 38%;
  right: 0;
  width: 45%;
  height: 2px;
  background: var(--copper);
}

.level-line i {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  translate: 0 -50%;
  background: var(--copper);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.proof-strip li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 30px 32px 32px 0;
  list-style: none;
}

.proof-strip li > div {
  min-width: 0;
}

.proof-strip li + li {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.proof-strip > li > span {
  color: var(--copper-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.proof-strip strong {
  color: var(--carbon-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip p {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 850px);
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading h2,
.method-intro h2,
.faq-heading h2,
.contact-copy h2 {
  max-width: 920px;
  font-size: clamp(42px, 5.3vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.base-section {
  background: var(--graphite);
  color: var(--paper);
}

.base-section :focus-visible {
  outline-color: var(--copper);
}

.base-kicker {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.base-kicker .section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(247, 242, 236, 0.72);
}

.base-kicker .section-index > span {
  color: var(--copper);
}

.base-kicker .section-index > i {
  width: 24px;
  height: 1px;
  background: rgba(194, 134, 104, 0.72);
}

.base-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(56px, 5.5vw, 88px);
  align-items: start;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cement);
}

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

.image-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.base-figure {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.04;
}

.base-figure img {
  object-position: center;
  filter: brightness(0.84) saturate(0.78);
}

.base-copy .lead {
  max-width: 700px;
  color: var(--paper);
  font-size: clamp(42px, 4.15vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.base-accent {
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 34px;
  background: var(--copper);
}

.base-copy > p:not(.lead) {
  max-width: 700px;
  margin-top: 30px;
  color: rgba(247, 242, 236, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.58;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-block: 44px 48px;
}

.check-grid div {
  min-height: 196px;
  padding: 0 20px;
  border-color: rgba(247, 242, 236, 0.18);
  border-right-style: solid;
  border-right-width: 1px;
}

.base-section .check-grid div {
  border-color: rgba(247, 242, 236, 0.18);
}

.check-grid div:first-child {
  padding-left: 0;
}

.check-grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.check-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(194, 134, 104, 0.55);
  background: transparent;
  color: var(--copper);
}

.check-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.check-grid dt {
  display: grid;
  gap: 20px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-grid dd {
  margin-top: 9px;
  color: rgba(247, 242, 236, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.base-section .inline-cta {
  color: rgba(247, 242, 236, 0.82);
  text-decoration-color: var(--copper);
}

.base-section .inline-cta:hover {
  color: var(--paper);
}

.base-section .inline-cta > span {
  color: var(--copper);
}

.services-section {
  background: var(--paper);
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(48px, 8vw, 120px);
}

.section-heading--split .section-index {
  margin-bottom: 24px;
}

.section-heading--split > p {
  align-self: end;
  padding-bottom: 8px;
  color: var(--text-muted);
  font-size: 16px;
}

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

.service-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding-block: 80px;
  border-bottom: 1px solid var(--line);
}

.service-row--reverse .service-copy {
  order: 2;
}

.service-row--reverse .service-figure {
  order: 1;
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--copper-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.service-copy h3 {
  max-width: 520px;
  font-size: clamp(34px, 3.8vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.service-copy > p {
  max-width: 480px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 16px;
}

.plain-list {
  display: grid;
  margin-block: 30px 34px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.plain-list li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--carbon);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.plain-list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--copper);
  translate: 0 -50%;
  rotate: 45deg;
  content: "";
}

.service-figure {
  height: 590px;
}

.service-duo {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  align-items: end;
}

.service-duo figure:first-child {
  height: 610px;
}

.service-duo figure:last-child {
  height: 490px;
}

.works-section {
  overflow: hidden;
  background: var(--bone);
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 900px);
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.works-heading h2 {
  font-size: clamp(44px, 5.4vw, 74px);
  letter-spacing: -0.047em;
  line-height: 1.01;
}

.works-heading > div > p {
  max-width: 660px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 17px;
}

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

.work-case {
  display: grid;
  align-items: center;
  padding-block: 80px;
  border-bottom: 1px solid var(--line);
}

.work-case--spc {
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: clamp(48px, 7vw, 100px);
}

.work-case--wood {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(48px, 8vw, 112px);
}

.work-case--spc .work-figure {
  height: 650px;
}

.work-case--wood .work-figure {
  height: 610px;
}

.work-case--spc .work-figure img {
  object-position: center 62%;
}

.work-case--deck {
  display: block;
  padding-bottom: 0;
}

.work-case--deck .work-figure {
  height: min(680px, 55vw);
}

.work-case--deck .work-figure img {
  object-position: center 72%;
}

.work-copy {
  max-width: 480px;
}

.work-kicker {
  margin-bottom: 22px;
  color: var(--copper-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-copy h3 {
  font-size: clamp(34px, 3.8vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.work-copy > p:not(.work-kicker),
.work-copy--deck > div > p:not(.work-kicker) {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 16px;
}

.work-data {
  margin-block: 34px;
  border-top: 1px solid var(--line);
}

.work-data > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.work-data dt {
  color: var(--carbon-strong);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-data dd {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.work-figure figcaption span {
  color: var(--copper-text);
}

.work-copy--deck {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 0.85fr);
  gap: clamp(56px, 10vw, 150px);
  max-width: none;
  padding-block: 56px 80px;
}

.work-copy--deck > div:last-child {
  max-width: 560px;
}

.surface-showcase {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.surface-showcase__heading {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 720px);
  gap: 64px;
  align-items: start;
  margin-bottom: 42px;
}

.surface-showcase__heading h3 {
  font-size: clamp(34px, 3.8vw, 52px);
  letter-spacing: -0.043em;
  line-height: 1.03;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.surface-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 28px 36px;
  border-right: 1px solid var(--line);
}

.surface-card:first-child {
  padding-left: 0;
}

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

.surface-card__figure {
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
  border-radius: 0;
}

.surface-card__figure img {
  animation: surface-ken-burns 6s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  object-position: center;
  transform-origin: 42% 50%;
  will-change: transform;
}

.surface-card:nth-child(2) .surface-card__figure img {
  animation-delay: -2s;
  transform-origin: 58% 48%;
}

.surface-card:nth-child(3) .surface-card__figure img {
  animation-delay: -4s;
  transform-origin: 50% 62%;
}

@keyframes surface-ken-burns {
  from {
    transform: scale(1.02) translate3d(-1.4%, 1.1%, 0);
  }

  to {
    transform: scale(1.16) translate3d(1.3%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .surface-card__figure img {
    animation: none;
    transform: none;
    will-change: auto;
  }
}

.surface-card__figure figcaption span {
  color: var(--copper-text);
}

.surface-card--secondary .surface-card__figure::after {
  background: linear-gradient(to bottom, rgba(20, 18, 16, 0.06) 20%, rgba(20, 18, 16, 0.24) 43%, rgba(20, 18, 16, 0.94) 100%);
}

.surface-card__copy {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.surface-card__kicker {
  margin-bottom: 14px;
  color: var(--copper-text);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.surface-card__copy h3 {
  max-width: 340px;
  font-size: clamp(27px, 2.45vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.surface-card__copy > p:not(.surface-card__kicker) {
  max-width: 340px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 15px;
}

.surface-card__specs {
  display: grid;
  margin-block: 24px 26px;
  border-top: 1px solid var(--line);
}

.surface-card__specs > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 12px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.surface-card__specs span {
  color: var(--carbon-strong);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.surface-card__specs p {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.surface-card__specs p + p {
  margin-top: 3px;
}

.surface-card .inline-cta {
  margin-top: auto;
}

.method-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(96px, 7.5vw, 124px);
  border-block: 1px solid rgba(247, 242, 236, 0.08);
  background: var(--graphite);
  color: var(--paper);
}

.method-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(54px, 5vw, 76px);
}

.method-intro h2 {
  max-width: 800px;
  margin-top: 24px;
  color: var(--paper);
  font-size: clamp(48px, 5.8vw, 80px);
  line-height: 0.98;
}

.method-intro__aside {
  max-width: 470px;
  padding: 0 0 5px 22px;
  border-left: 1px solid rgba(247, 242, 236, 0.26);
}

.method-intro__aside p {
  color: rgba(247, 242, 236, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.method-preview {
  display: grid;
  gap: 26px;
}

.method-preview__pages {
  display: flex;
  min-height: 270px;
  align-items: flex-start;
  padding: 2px 18px 0 2px;
}

.method-preview__page {
  position: relative;
  z-index: 1;
  width: clamp(150px, 12.25vw, 178px);
  flex: 0 0 auto;
  margin: 0;
  border: 1px solid rgba(247, 242, 236, 0.28);
  background: var(--paper);
}

.method-preview__page--legajo {
  z-index: 2;
  margin-left: -28px;
  translate: 0 30px;
}

.method-preview__page img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 620 / 877;
  object-fit: cover;
}

.method-preview__page figcaption {
  padding: 8px 10px;
  border-top: 1px solid rgba(30, 34, 33, 0.14);
  color: var(--carbon-strong);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.method-preview__copy {
  max-width: 410px;
}

.method-protocol-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  border: 1px solid rgba(247, 242, 236, 0.72);
  border-radius: 2px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 13px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.method-protocol-link span {
  color: var(--copper);
  transition: translate 220ms var(--ease);
}

.method-protocol-link:hover,
.method-protocol-link:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--carbon-strong);
}

.method-protocol-link:hover span,
.method-protocol-link:focus-visible span {
  translate: 3px 0;
}

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

.method-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 242, 236, 0.28);
}

.method-list li {
  position: relative;
  display: block;
  min-height: 286px;
  padding: 30px 24px 30px 0;
  border-right: 1px solid rgba(247, 242, 236, 0.16);
  list-style: none;
}

.method-list li::before {
  position: absolute;
  top: -29px;
  left: 0;
  width: 2px;
  height: 13px;
  background: var(--copper);
  content: "";
}

.method-list li:not(:first-child) {
  padding-left: 24px;
}

.method-number {
  display: block;
  margin-bottom: clamp(38px, 3.2vw, 52px);
  color: var(--copper);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.method-list li > div {
  display: block;
}

.method-list h3 {
  color: var(--paper);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.method-list p {
  max-width: 210px;
  margin-top: 14px;
  color: rgba(247, 242, 236, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.method-section.is-animated .method-intro > div:first-child,
.method-section.is-animated .method-intro__aside,
.method-section.is-animated .method-list li {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 620ms var(--ease), transform 720ms var(--ease);
}

.method-section.is-animated .method-intro__aside {
  transform: translate3d(28px, 0, 0);
  transition-delay: 90ms;
}

.method-section.is-animated .method-list {
  border-top-color: transparent;
}

.method-section.is-animated .method-list::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(247, 242, 236, 0.28);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms var(--ease) 180ms;
}

.method-section.is-animated.is-visible .method-intro > div:first-child,
.method-section.is-animated.is-visible .method-intro__aside,
.method-section.is-animated.is-visible .method-list li {
  opacity: 1;
  transform: none;
}

.method-section.is-animated.is-visible .method-list::after {
  transform: scaleX(1);
}

.method-section.is-animated.is-visible .method-list li:nth-child(1) { transition-delay: 260ms; }
.method-section.is-animated.is-visible .method-list li:nth-child(2) { transition-delay: 340ms; }
.method-section.is-animated.is-visible .method-list li:nth-child(3) { transition-delay: 420ms; }
.method-section.is-animated.is-visible .method-list li:nth-child(4) { transition-delay: 500ms; }
.method-section.is-animated.is-visible .method-list li:nth-child(5) { transition-delay: 580ms; }

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(64px, 9vw, 140px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
  align-self: start;
}

.faq-heading .section-index {
  margin-bottom: 24px;
}

.faq-heading h2 {
  font-size: clamp(40px, 4.7vw, 64px);
}

.faq-heading > p:last-child {
  max-width: 460px;
  margin-top: 24px;
  color: var(--text-muted);
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 18px;
  align-items: start;
  padding-block: 25px;
  color: var(--carbon-strong);
  cursor: pointer;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span {
  padding-top: 5px;
  color: var(--copper-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.faq-list summary::after {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--carbon);
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 44px 28px 58px;
  color: var(--text-muted);
  font-size: 15px;
}

.contact-section {
  position: relative;
  z-index: 2;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 49% 52%, rgba(194, 134, 104, 0.08), transparent 34%),
    var(--bone);
}

.site-footer {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.contact-copy .section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  color: var(--copper-text);
}

.contact-copy .section-index::before {
  width: 30px;
  height: 1px;
  background: var(--copper-text);
  content: "";
}

.contact-copy h2 {
  max-width: 650px;
  font-size: clamp(46px, 4.65vw, 68px);
  line-height: 1.04;
}

.contact-copy > p:not(.section-index) {
  max-width: 520px;
  margin-top: 34px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.contact-direct {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 86px;
  padding-top: 30px;
  border-top: 1px solid rgba(168, 91, 52, 0.7);
}

.contact-direct::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-text);
  content: "";
}

.contact-direct > span,
.footer-nav > span,
.footer-contact > span {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-direct a {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  color: var(--carbon-strong);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 500;
  text-decoration: none;
}

.contact-direct__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 9px;
  background: rgba(194, 134, 104, 0.12);
  color: var(--copper-text);
}

.contact-direct__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-form {
  padding: 52px 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px rgba(69, 57, 47, 0.13);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form > .field + .field,
.field-row + .field,
.field + .form-submit {
  margin-top: 28px;
}

.field label {
  display: block;
  margin-bottom: 11px;
  color: var(--carbon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field label span {
  color: var(--text-muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 64px;
  border: 1px solid #8d857c;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px 18px;
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--sand);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper-text);
  box-shadow: 0 0 0 1px var(--copper-text);
}

.form-submit {
  width: 100%;
  min-height: 68px;
  justify-content: space-between;
  padding-inline: 26px;
  border-radius: 9px;
  font-size: 13px;
}

.form-submit > span {
  color: var(--white);
  font-size: 25px;
  font-weight: 400;
}

.button.form-submit:hover > span {
  translate: 4px 0;
}

.form-note,
.form-status {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-note__icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--text-muted);
}

.form-note__icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.form-status:empty {
  display: none;
}

.site-footer {
  background: var(--carbon-strong);
  color: var(--paper);
  padding-block: 72px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 0.42fr) minmax(240px, 0.58fr);
  gap: 72px;
}

.footer-name {
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.footer-identity p {
  margin-top: 14px;
  color: rgba(247, 242, 236, 0.65);
  font-size: 12px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav > span,
.footer-contact > span {
  margin-bottom: 8px;
  color: rgba(247, 242, 236, 0.7);
}

.footer-nav a,
.footer-contact a {
  color: var(--paper);
  font-size: 13px;
  text-decoration-color: rgba(194, 134, 104, 0.8);
  text-underline-offset: 5px;
}

.footer-contact p {
  color: rgba(247, 242, 236, 0.58);
  font-size: 12px;
}

.footer-email {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(247, 242, 236, 0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.noscript-note {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
  max-width: 360px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--carbon);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(160px, 1fr) auto auto;
    gap: 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 48px;
  }

  .hero-copy,
  .hero-figure {
    min-height: 590px;
  }

  .section-heading {
    grid-template-columns: 130px 1fr;
    gap: 36px;
  }

  .section-heading--split,
  .method-intro {
    grid-template-columns: 1fr;
  }

  .section-heading--split > p,
  .method-intro__aside {
    max-width: 760px;
  }

  .method-preview {
    grid-template-columns: minmax(290px, 340px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
  }

  .method-preview__pages {
    min-height: 248px;
  }

  .method-preview__page {
    width: 158px;
  }

  .service-row {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 48px;
  }

  .works-heading {
    grid-template-columns: 130px 1fr;
    gap: 36px;
  }

  .work-case--spc,
  .work-case--wood {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 48px;
  }

  .work-case--wood {
    grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  }

  .work-copy--deck {
    gap: 64px;
  }

  .method-list {
    display: block;
    padding: 0 0 0 30px;
    border-top: 0;
    border-left: 1px solid rgba(194, 134, 104, 0.72);
  }

  .method-list li,
  .method-list li:not(:first-child) {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 242, 236, 0.16);
  }

  .method-list li::before {
    top: 47px;
    left: -36px;
    width: 11px;
    height: 2px;
  }

  .method-number {
    margin-bottom: 0;
    font-size: 32px;
  }

  .method-list li > div {
    display: grid;
    grid-template-columns: minmax(190px, 0.58fr) minmax(0, 1fr);
    gap: 44px;
  }

  .method-list p {
    max-width: 560px;
    margin-top: 0;
    font-size: 15px;
  }

  .faq-grid,
  .contact-grid {
    gap: 64px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding-block: 88px;
  }

  .surface-showcase__heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

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

  .surface-card {
    padding-inline: 0 20px;
  }

  .surface-card:nth-child(2) {
    padding-right: 0;
    padding-left: 20px;
    border-right: 0;
  }

  .surface-card:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    margin-top: 36px;
    padding: 36px 0 0;
    border-top: 1px solid var(--line);
  }

  .surface-card:last-child .surface-card__figure {
    margin-bottom: 0;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .desktop-nav {
    display: none;
  }

  .brand--desktop,
  .header-cta {
    display: none;
  }

  .brand--mobile {
    display: inline-flex;
  }

  .brand--mobile img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 23px;
    height: 1px;
    background: var(--carbon);
    transition: rotate 180ms ease, translate 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    translate: 0 4px;
    rotate: 45deg;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    translate: 0 -4px;
    rotate: -45deg;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 20px;
    overflow-y: auto;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 22px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--carbon-strong);
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 500;
    letter-spacing: -0.03em;
    text-decoration: none;
  }

  .mobile-menu .mobile-menu-cta {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 17px 20px;
    border: 0;
    background: var(--carbon);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 44px 40px;
  }

  .hero-copy {
    min-height: 0;
    padding-block: 12px 0;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(44px, 10.8vw, 68px);
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-meta {
    margin-top: 48px;
  }

  .hero-figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip li {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 24px 0;
  }

  .proof-strip li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .section-heading--split,
  .works-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .section-heading h2,
  .works-heading h2,
  .method-intro h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(40px, 8vw, 58px);
  }

  .base-grid,
  .service-row,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .base-grid {
    gap: 48px;
  }

  .base-kicker {
    margin-bottom: 48px;
  }

  .base-figure {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .check-grid div {
    min-height: 196px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .check-grid div:nth-child(odd) {
    padding-left: 0;
  }

  .check-grid div:nth-child(even) {
    padding-right: 0;
  }

  .service-row,
  .service-row--reverse {
    gap: 40px;
    padding-block: 64px;
  }

  .service-row--reverse .service-copy,
  .service-row--reverse .service-figure {
    order: initial;
  }

  .service-figure {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-duo figure:first-child,
  .service-duo figure:last-child {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .work-case--spc,
  .work-case--wood {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 64px;
  }

  .work-case--wood .work-figure {
    order: -1;
  }

  .work-case--spc .work-figure,
  .work-case--wood .work-figure,
  .work-case--deck .work-figure {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .work-case--spc .work-figure img {
    object-position: center 70%;
  }

  .work-case--deck {
    padding-top: 64px;
  }

  .work-copy {
    max-width: 620px;
  }

  .work-copy--deck {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 40px 64px;
  }

  .method-intro {
    gap: 24px;
    margin-bottom: 64px;
  }

  .method-section {
    padding-block: 88px;
  }

  .method-list li {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .method-list li > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }

  .contact-grid {
    gap: 56px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .contact-direct {
    margin-top: 52px;
  }

  .contact-form {
    width: 100%;
    max-width: 760px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid var(--line-dark);
  }

}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 64px;
  }

  .surface-showcase {
    padding-top: 32px;
  }

  .surface-showcase__heading h3 {
    font-size: 36px;
  }

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

  .surface-card,
  .surface-card:nth-child(2),
  .surface-card:last-child {
    display: flex;
    grid-column: auto;
    gap: 0;
    margin: 0;
    padding: 0 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .surface-card + .surface-card,
  .surface-card:nth-child(2) + .surface-card {
    padding-top: 32px;
  }

  .surface-card:last-child {
    border-top: 0;
    border-bottom: 0;
  }

  .surface-card__figure,
  .surface-card:last-child .surface-card__figure {
    margin-bottom: 24px;
  }

  .method-section {
    padding-block: 68px;
  }

  .method-intro__aside {
    padding-left: 16px;
  }

  .method-intro__aside p {
    font-size: 15px;
  }

  .hero-grid {
    padding-top: 32px;
  }

  .eyebrow {
    margin-bottom: 28px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(42px, 12.5vw, 56px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .button-row {
    display: grid;
    width: 100%;
    gap: 18px;
    margin-top: 32px;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    width: fit-content;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
    margin-top: 40px;
  }

  .hero-action-note {
    font-size: 13px;
  }

  .service-row,
  .service-row--reverse {
    padding-block: 56px;
  }

  .hero-meta span + span::before {
    display: none;
  }

  .hero-figure {
    aspect-ratio: 4 / 5.3;
  }

  .section-heading h2,
  .works-heading h2,
  .method-intro h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(38px, 10.6vw, 50px);
  }

  .base-copy .lead {
    font-size: clamp(38px, 10.6vw, 50px);
  }

  .base-figure {
    aspect-ratio: 4 / 4.6;
  }

  .check-grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin-block: 40px;
  }

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

  .check-grid div:first-child,
  .check-grid div:last-child,
  .check-grid div:nth-child(odd),
  .check-grid div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
  }

  .check-icon {
    width: 56px;
    height: 56px;
  }

  .service-copy h3 {
    font-size: 38px;
  }

  .work-case--spc,
  .work-case--wood {
    padding-block: 56px;
  }

  .work-case--deck {
    padding-top: 56px;
  }

  .work-case--spc .work-figure,
  .work-case--wood .work-figure {
    aspect-ratio: 4 / 4.3;
  }

  .work-case--deck .work-figure {
    aspect-ratio: 4 / 3.2;
  }

  .work-copy h3 {
    font-size: 38px;
  }

  .work-data > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-duo {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-duo figure:first-child,
  .service-duo figure:last-child {
    aspect-ratio: 0.76;
  }

  .service-duo .image-frame figcaption {
    min-height: 54px;
    padding-inline: 9px;
    font-size: 8px;
  }

  .method-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding-block: 28px;
  }

  .method-list li::before {
    top: 40px;
    left: -36px;
  }

  .method-number {
    font-size: 28px;
  }

  .method-list h3 {
    font-size: 27px;
  }

  .faq-list summary {
    grid-template-columns: 32px 1fr 24px;
    gap: 10px;
    font-size: 18px;
  }

  .faq-list details p {
    padding: 0 0 25px 42px;
  }

  .contact-direct a {
    font-size: 18px;
  }

  .contact-copy .section-index {
    margin-bottom: 26px;
  }

  .contact-direct {
    margin-top: 46px;
    padding-top: 24px;
  }

  .contact-direct__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 58px;
  }

  .field textarea {
    min-height: 132px;
  }

  .form-submit {
    min-height: 62px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .form-note {
    align-items: flex-start;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .field-row .field + .field {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.no-js .contact-form {
  display: none;
}

/* Servicios: tarjetas visuales con contenido superpuesto */
.services-section .section-heading--split {
  margin-bottom: 56px;
}

.services-section .section-heading--split h2 {
  max-width: 800px;
  font-size: clamp(48px, 5.5vw, 76px);
}

.services-section .section-heading--split > p {
  max-width: 385px;
  padding-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
}

.surface-showcase {
  padding-top: 0;
  border-top: 0;
}

.surface-grid {
  gap: 6px;
  border: 0;
}

.surface-card,
.surface-card:first-child,
.surface-card:last-child {
  display: block;
  padding: 0;
  border: 0;
}

.surface-card__figure,
.surface-card:last-child .surface-card__figure {
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 5px;
}

.surface-card__figure::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 16, 0.03) 20%, rgba(20, 18, 16, 0.16) 43%, rgba(20, 18, 16, 0.91) 100%);
  content: "";
  pointer-events: none;
}

.surface-card__figure img {
  object-position: center;
}

.surface-card__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 32px 36px;
  color: var(--white);
}

.surface-card__copy {
  display: block;
  height: auto;
  max-width: calc(100% - 72px);
}

.surface-card__kicker {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.surface-card__kicker::first-letter {
  color: var(--copper);
}

.surface-card__copy h3 {
  max-width: none;
  color: var(--white);
  font-size: clamp(30px, 2.4vw, 39px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.surface-card__copy > p:not(.surface-card__kicker) {
  max-width: 340px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.surface-card__specs {
  margin: 26px 0 0;
  border-top-color: rgba(255, 255, 255, 0.34);
}

.surface-card__specs > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  padding: 13px 0 0;
  border-bottom: 0;
}

.surface-card__specs span {
  color: var(--white);
  font-size: 9px;
}

.surface-card__specs p,
.surface-card__specs p + p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.surface-card__cta {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, translate 180ms var(--ease);
}

.surface-card__cta:hover {
  background: var(--copper-text);
  translate: 2px 0;
}

.surface-card__cta svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.surface-card__figure figcaption {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 18px;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
}

.surface-card__figure figcaption span {
  color: var(--copper);
}

.surface-process-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
  color: var(--carbon-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.surface-process-link::before,
.surface-process-link::after {
  width: min(100%, 420px);
  height: 1px;
  background: var(--line);
  content: "";
}

.surface-process-link > span {
  color: var(--copper-text);
  font-size: 20px;
  line-height: 0;
}

@media (max-width: 960px) {
  .surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .surface-card:last-child {
    grid-column: 1 / -1;
  }

  .surface-card__figure,
  .surface-card:last-child .surface-card__figure {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 560px) {
  .services-section .section-heading--split {
    margin-bottom: 38px;
  }

  .services-section .section-heading--split > p {
    padding-bottom: 0;
    font-size: 15px;
  }

  .surface-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .surface-card,
  .surface-card:nth-child(2),
  .surface-card:last-child {
    display: block;
    grid-column: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .surface-card__figure,
  .surface-card:last-child .surface-card__figure {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0;
  }

  .surface-card__overlay {
    padding: 26px 24px;
  }

  .surface-card__copy {
    max-width: calc(100% - 58px);
  }

  .surface-card__kicker {
    margin-bottom: 14px;
  }

  .surface-card__copy h3 {
    font-size: 31px;
  }

  .surface-card__specs {
    margin-top: 21px;
  }

  .surface-card__specs > div {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .surface-card__cta {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .surface-card__figure figcaption {
    top: 14px;
    right: 15px;
  }

  .surface-process-link {
    gap: 12px;
    margin-top: 30px;
    font-size: 9px;
  }
}

/* Footer */
.site-footer {
  padding: 0 0 30px;
  background: var(--graphite);
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.16fr) minmax(180px, 0.76fr) minmax(280px, 0.9fr);
  gap: 0;
  padding-block: 54px 46px;
}

.footer-identity,
.footer-nav,
.footer-contact {
  min-height: 226px;
}

.footer-identity {
  display: flex;
  flex-direction: column;
  padding-right: clamp(38px, 5vw, 84px);
}

.footer-brand {
  display: block;
  width: min(100%, 280px);
}

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

.footer-location {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 242, 236, 0.22);
  color: rgba(247, 242, 236, 0.9);
  font-size: 15px;
}

.footer-location > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--copper);
}

.footer-location svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.footer-nav,
.footer-contact {
  align-items: stretch;
  gap: 17px;
  padding-left: clamp(38px, 5vw, 84px);
  border-left: 1px solid rgba(247, 242, 236, 0.2);
}

.footer-nav > span,
.footer-contact > span {
  margin: 4px 0 16px;
  color: #e4aa81;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.footer-nav a {
  position: relative;
  width: fit-content;
  color: var(--paper);
  font-size: 19px;
  line-height: 1.2;
  text-decoration: none;
}

.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  scale: 0 1;
  transform-origin: left;
  background: var(--copper);
  content: "";
  transition: scale 180ms var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #efb68c;
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  scale: 1 1;
}

.footer-contact {
  gap: 18px;
}

.footer-contact__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(247, 242, 236, 0.2);
  color: rgba(247, 242, 236, 0.9);
  font-size: 17px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-contact__link strong {
  color: var(--paper);
  font-weight: 500;
}

.footer-contact__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  color: var(--copper);
}

.footer-contact__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-diagnosis-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: #efb68c;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, translate 180ms var(--ease);
}

.footer-diagnosis-cta::before {
  width: 40px;
  height: 1px;
  background: var(--copper);
  content: "";
  transition: width 180ms var(--ease);
}

.footer-diagnosis-cta:hover {
  color: var(--white);
  translate: 4px 0;
}

.footer-diagnosis-cta:hover::before {
  width: 58px;
}

.footer-diagnosis-cta > span {
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 26px;
  border-top-color: rgba(247, 242, 236, 0.24);
  color: rgba(247, 242, 236, 0.82);
  font-size: 11px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }

  .footer-identity {
    min-height: 300px;
  }

  .footer-contact {
    min-height: auto;
    grid-column: 1 / -1;
    min-height: 0;
    padding-top: 42px;
    padding-left: 0;
    border-top: 1px solid rgba(247, 242, 236, 0.2);
    border-left: 0;
  }

  .footer-contact__link,
  .footer-diagnosis-cta {
    max-width: 430px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-bottom: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 62px 54px;
  }

  .footer-identity,
  .footer-nav,
  .footer-contact {
    min-height: 0;
    padding: 0 0 42px;
    border: 0;
  }

  .footer-identity,
  .footer-nav {
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(247, 242, 236, 0.2);
  }

  .footer-brand {
    width: min(100%, 270px);
  }

  .footer-location {
    margin-top: 46px;
    padding-top: 22px;
    font-size: 14px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav > span,
  .footer-contact > span {
    margin-bottom: 12px;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .footer-contact {
    gap: 24px;
  }

  .footer-contact__link {
    padding-bottom: 24px;
    font-size: 16px;
  }

  .footer-diagnosis-cta {
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
    padding-top: 20px;
    font-size: 9px;
  }
}

.hero-stop {
  color: var(--copper-text);
}

.proof-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(149, 88, 61, 0.72);
  border-radius: 50%;
  color: var(--copper-text);
}

.proof-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

@media (min-width: 961px) {
  .site-header,
  .header-inner {
    min-height: 94px;
  }

  .header-inner.shell {
    width: min(calc(100% - 64px), 1410px);
  }

  .hero-grid.shell {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .hero-copy {
    height: clamp(620px, 41.9vw, 704px);
    min-height: 0;
    padding: 70px 64px 58px max(64px, calc((100vw - 1410px) / 2));
  }

  .hero-copy h1 {
    max-width: 580px;
    font-size: clamp(54px, 4.8vw, 82px);
    letter-spacing: -0.052em;
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 520px;
    margin-top: 30px;
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.55;
  }

  .button-row {
    margin-top: 34px;
  }

  .hero-meta {
    display: none;
  }

  .hero-figure {
    height: clamp(620px, 41.9vw, 704px);
    min-height: 0;
    margin-top: 32px;
    margin-right: 32px;
    margin-bottom: 32px;
    border-radius: 0;
  }

  .hero-figure > img {
    object-position: center 43%;
  }

  .hero-figure figcaption,
  .hero-figure .level-line {
    display: none;
  }

  .proof-strip.shell {
    width: min(calc(100% - 64px), 1410px);
    min-height: 143px;
    border-top: 1px solid var(--line);
  }

  .proof-strip li {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 34px 38px 34px 20px;
  }

  .proof-strip li + li {
    padding-left: 58px;
  }

  .proof-strip strong {
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .proof-strip p {
    max-width: 255px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
  }

  .footer-grid.shell,
  .footer-bottom.shell {
    width: min(calc(100% - 64px), 1540px);
  }
}

@media (max-width: 720px) {
  .method-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .method-preview__pages {
    min-height: 246px;
    justify-content: center;
    padding-right: 24px;
  }

  .method-preview__copy {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .method-intro__aside {
    width: 100%;
    max-width: none;
  }

  .method-preview__pages {
    min-height: 226px;
    padding-right: 18px;
  }

  .method-preview__page {
    width: min(42vw, 148px);
  }

  .method-preview__page--legajo {
    margin-left: -22px;
    translate: 0 24px;
  }

  .method-protocol-link {
    width: 100%;
    max-width: 350px;
    padding-inline: 14px;
    text-align: center;
  }
}

@media print {
  .site-header,
  .contact-form,
  .button,
  .text-link,
  .inline-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding-block: 36px;
  }

  .method-section,
  .site-footer {
    background: #fff;
    color: #000;
  }

  .method-intro h2,
  .method-list h3,
  .footer-grid,
  .footer-grid a,
  .footer-grid p {
    color: #000 !important;
  }
}
