@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-var.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: -60px;
  left: 16px;
  padding: 12px 18px;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 16px;
}

[hidden] {
  display: none !important;
}

:root {
  --paper: #f3f0e8;
  --paper-soft: #f8f6f0;
  --ink: #242722;
  --muted: #676b62;
  --green: #46564b;
  --green-dark: #2e3931;
  --oak: #c8a881;
  --stone: #c9c0b2;
  --line: rgba(36, 39, 34, 0.18);
  --serif: 'Iowan Old Style', 'Baskerville', 'Times New Roman', serif;
  --sans: Inter, 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--oak);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid #8e5d2d;
  outline-offset: 4px;
}

.shell {
  width: min(1380px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding: 132px 0;
  scroll-margin-top: 78px;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}
h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  line-height: 0.98;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  column-gap: 54px;
  align-items: start;
  margin-bottom: 76px;
}
.section-heading .eyebrow {
  padding-top: 12px;
}
.section-heading h2 {
  grid-column: 2;
  margin-bottom: 22px;
}
.section-intro {
  grid-column: 2;
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.nav-shell {
  width: min(1480px, calc(100% - 48px));
  height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: height 0.35s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 240, 232, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled .nav-shell {
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 25px;
}
.brand-mark i {
  position: absolute;
  left: 2px;
  width: 16px;
  height: 9px;
  border: 1.5px solid currentColor;
  transform: skewY(-30deg);
}
.brand-mark i:first-child {
  top: 2px;
}
.brand-mark i:last-child {
  bottom: 2px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.84rem;
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(34, 38, 33, 0.08);
  padding: 11px 17px;
  font-size: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.site-header.is-scrolled .nav-cta {
  border-color: var(--line);
  background: var(--green);
  color: #fff;
}
.nav-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 880px;
  height: 100svh;
  max-height: 1080px;
  color: #fff;
  background: var(--green-dark);
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  animation: heroReveal 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(24, 29, 25, 0.78) 0%,
      rgba(24, 29, 25, 0.56) 38%,
      rgba(24, 29, 25, 0.14) 72%,
      rgba(24, 29, 25, 0.26) 100%
    ),
    linear-gradient(0deg, rgba(20, 24, 21, 0.54), transparent 45%);
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(40px, calc((100% - 1380px) / 2));
  width: min(760px, 56vw);
  transform: translateY(-43%);
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(4.2rem, 7vw, 7.8rem);
  line-height: 0.89;
  text-wrap: balance;
}
.hero-copy {
  max-width: 590px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.07rem;
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}
.button {
  min-height: 52px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 19px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 0.25s ease;
}
.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}
.button:active {
  transform: translateY(1px);
}
.button-light {
  background: #f6f2e9;
  color: var(--ink);
}
.button-light:hover {
  background: var(--oak);
}
.button-dark {
  background: var(--green-dark);
  color: #fff;
}
.button-dark:hover {
  background: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding: 9px 0 6px;
  font-size: 0.85rem;
}
.light-link {
  color: #fff;
}
.hero-services {
  position: absolute;
  z-index: 2;
  right: max(40px, calc((100% - 1380px) / 2));
  bottom: 40px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}
.hero-services span {
  min-width: 175px;
  padding: 15px 22px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.75rem;
}
.hero-services b {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 400;
}
.hero-place,
.hero-index {
  position: absolute;
  z-index: 2;
  top: 135px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero-place {
  right: max(40px, calc((100% - 1380px) / 2));
}
.hero-index {
  left: max(40px, calc((100% - 1380px) / 2));
  top: auto;
  bottom: 44px;
}
@keyframes heroReveal {
  from {
    transform: scale(1.035);
    opacity: 0.55;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.projects-section {
  background: var(--paper-soft);
}
.project-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: auto auto;
  gap: 66px 28px;
}
.project {
  min-width: 0;
}
.project-1 {
  grid-row: 1 / span 2;
  padding-right: 42px;
}
.project-image {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--stone);
  overflow: hidden;
  cursor: pointer;
}
.project-1 .project-image {
  aspect-ratio: 4 / 5;
}
.project-2 .project-image,
.project-3 .project-image {
  aspect-ratio: 16 / 9;
}
.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.project.is-active .project-image::after {
  opacity: 1;
  transform: scale(0.96);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}
.project-2 .project-image img {
  object-position: center 58%;
}
.project-3 .project-image img {
  object-position: center 52%;
}
.project-image:hover img {
  transform: scale(1.025);
}
.project:not(.is-active) .project-image img {
  filter: saturate(0.74);
}
.project-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: rgba(246, 242, 233, 0.9);
  color: var(--ink);
  font-size: 0.68rem;
}
.project-copy {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}
.project-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}
.project-copy p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.project-2 .project-copy,
.project-3 .project-copy {
  grid-template-columns: 180px 1fr;
}
.focus-note {
  width: calc(39% - 12px);
  margin-left: auto;
  margin-top: 40px;
  border-top: 1px solid var(--ink);
  padding-top: 15px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 7px 20px;
}
.focus-note span {
  grid-row: 1 / span 2;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.focus-note strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}
.focus-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.services-section {
  background: var(--paper);
}
.services-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 11vw;
  align-items: start;
}
.services-sticky {
  position: sticky;
  top: 112px;
}
.services-sticky h2 {
  font-size: clamp(2.9rem, 4.7vw, 5.3rem);
}
.services-sticky > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}
.services-sticky img {
  width: 70%;
  aspect-ratio: 4 / 3;
  margin: 54px 0 0 auto;
  object-fit: cover;
  object-position: center 55%;
}
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-list li {
  display: grid;
  grid-template-columns: 54px 1fr 36px;
  gap: 22px;
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.service-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--green);
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-list h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}
.service-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.service-index {
  color: #8a8d85;
  font-size: 0.68rem;
  text-align: right;
}

.process-section {
  overflow: hidden;
  background: var(--green-dark);
  color: #f5f1e7;
}
.process-section .eyebrow {
  color: #c1c9bd;
}
.process-section .section-intro {
  color: rgba(255, 255, 255, 0.62);
}
.process {
  position: relative;
  margin-top: 18px;
}
.process-rail {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.process-rail span {
  display: block;
  height: 1px;
  background: #d4bd9e;
  transition: width 0.5s ease;
}
.process-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.process-buttons button {
  position: relative;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  min-height: 128px;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.process-buttons button::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: var(--green-dark);
  transition:
    background 0.3s,
    transform 0.3s;
}
.process-buttons button.is-active {
  color: #fff;
}
.process-buttons button.is-active::before {
  background: #d4bd9e;
  transform: scale(1.15);
}
.process-buttons button span {
  margin-bottom: 8px;
  font-size: 0.67rem;
}
.process-buttons button b {
  max-width: 170px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.process-panel {
  min-height: 300px;
  margin-top: 30px;
  padding: 52px 0 0 33%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 120px minmax(300px, 650px);
  gap: 46px;
}
.process-panel-number {
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: 0.8;
}
.process-panel h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
}
.process-panel div p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.materials-section {
  background: #ded8cc;
}
.materials-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 680px;
  background: var(--paper-soft);
}
.material-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #bbb2a5;
}
.material-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.7s ease,
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.material-visual > img.is-active {
  opacity: 1;
  transform: scale(1);
}
.material-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(246, 242, 233, 0.9);
  color: var(--ink);
  padding: 13px 16px;
  backdrop-filter: blur(10px);
}
.material-caption span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.material-caption b {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}
.material-control {
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
}
.material-options {
  border-top: 1px solid var(--line);
}
.material-options button {
  position: relative;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 24px 35px 24px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  color: #83867e;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}
.material-options button:hover,
.material-options button.is-active {
  color: var(--ink);
  padding-left: 8px;
}
.material-options button span {
  font-size: 0.65rem;
}
.material-options button b {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}
.material-options button i {
  position: absolute;
  right: 0;
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.material-options button.is-active i::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--green);
}
.material-description {
  margin-top: auto;
  padding-top: 52px;
}
.material-description > p {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.7;
}
.material-description ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
}
.material-description li {
  border: 1px solid var(--line);
  padding: 7px 10px;
  color: #60645c;
  font-size: 0.71rem;
}

.principles-section {
  background: var(--paper-soft);
}
.principles-title-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 10vw;
  align-items: end;
  padding-bottom: 72px;
}
.principles-title-row h2 {
  margin: 0;
}
.principles-title-row p {
  margin: 0 0 8px;
  color: var(--muted);
}
.principles-list {
  border-top: 1px solid var(--ink);
}
.principles-list article {
  display: grid;
  grid-template-columns: 11% 35% 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.principles-list article > span {
  color: var(--muted);
  font-size: 0.67rem;
}
.principles-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
  font-weight: 400;
}
.principles-list p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.questions-section {
  background: var(--paper);
}
.questions-layout {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 12vw;
  align-items: start;
}
.questions-heading {
  position: sticky;
  top: 112px;
}
.questions-heading h2 {
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}
.questions-heading > p:last-child {
  max-width: 430px;
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq h3 {
  margin: 0;
}
.faq button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 26px;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.faq button span {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
}
.faq button i {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}
.faq button i::before,
.faq button i::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease;
}
.faq button i::after {
  transform: rotate(90deg);
}
.faq.is-open button i::after {
  transform: rotate(0);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  max-width: 620px;
  margin: 0;
  padding: 0 55px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  transition: padding 0.38s ease;
}
.faq.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq.is-open .faq-answer p {
  padding-bottom: 29px;
}

.closing-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--green-dark);
  color: #fff;
}
.closing-image {
  min-height: 720px;
  overflow: hidden;
}
.closing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.closing-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 90px 9vw;
}
.closing-content h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6vw, 6.7rem);
}
.closing-content > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

footer {
  padding: 76px 0 26px;
  background: #20241f;
  color: rgba(255, 255, 255, 0.7);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.55fr 1fr;
  gap: 8vw;
  padding-bottom: 72px;
}
.footer-brand {
  color: #fff;
  margin-bottom: 22px;
}
.footer-main > div:first-child > p {
  font-size: 0.8rem;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: #fff;
  font-size: 0.85rem;
}
.footer-main nav a:hover {
  color: #d4bd9e;
}
.footer-note {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 32px;
}
.footer-note b {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-note p {
  max-width: 500px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
  font-size: 0.7rem;
}

.request-dialog {
  width: min(980px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper-soft);
  box-shadow: 0 30px 80px rgba(16, 20, 17, 0.28);
  overflow: auto;
}
.request-dialog::backdrop {
  background: rgba(25, 31, 27, 0.72);
  backdrop-filter: blur(6px);
}
.dialog-close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  cursor: pointer;
}
.dialog-close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}
.dialog-close span:last-child {
  transform: rotate(-45deg);
}
.dialog-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 600px;
}
.dialog-heading {
  padding: 70px 55px;
  background: #e2dbcf;
}
.dialog-heading h2,
.success-message h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}
.dialog-heading > p:not(.eyebrow) {
  color: var(--muted);
}
.demo-notice {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.demo-notice span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
}
.demo-notice p {
  margin: 0;
  color: #4d524b;
  font-size: 0.78rem;
  line-height: 1.55;
}
.dialog-grid form {
  display: flex;
  flex-direction: column;
  padding: 70px 55px 50px;
}
.dialog-grid label {
  display: block;
  margin-bottom: 25px;
}
.dialog-grid label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dialog-grid input,
.dialog-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a9aba4;
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.dialog-grid input:focus,
.dialog-grid textarea:focus {
  border-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}
.dialog-grid textarea::placeholder {
  color: #9a9c96;
}
.dialog-grid form .button {
  margin-top: auto;
  align-self: flex-start;
}
.success-message {
  min-height: 560px;
  padding: 82px 12%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.success-message > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
}
.success-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  margin-bottom: 34px;
}
.success-mark i {
  width: 18px;
  height: 10px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: translateY(-2px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 48px, 980px);
  }
  .desktop-nav {
    gap: 22px;
  }
  .hero-content {
    left: 36px;
    width: 70vw;
  }
  .hero-services {
    right: 30px;
  }
  .hero-services span {
    min-width: 150px;
  }
  .hero-place {
    right: 30px;
  }
  .hero-index {
    left: 36px;
  }
  .project-1 {
    padding-right: 10px;
  }
  .project-grid {
    gap: 45px 24px;
  }
  .project-copy,
  .project-2 .project-copy,
  .project-3 .project-copy {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .focus-note {
    width: calc(40% - 12px);
  }
  .services-layout {
    gap: 8vw;
  }
  .materials-layout {
    grid-template-columns: 1.12fr 0.88fr;
  }
  .material-control {
    padding: 45px 34px;
  }
  .questions-layout {
    gap: 8vw;
  }
  .closing-content {
    padding: 80px 7vw;
  }
}

@media (max-width: 800px) {
  .shell {
    width: calc(100% - 36px);
  }
  .section {
    padding: 88px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .section-heading .eyebrow,
  .section-heading h2,
  .section-intro {
    grid-column: 1;
  }
  .section-heading .eyebrow {
    padding-top: 0;
  }
  h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
  .nav-shell {
    width: calc(100% - 34px);
    height: 72px;
    grid-template-columns: 1fr auto;
  }
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  .menu-toggle {
    position: relative;
    z-index: 4;
    display: block;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span {
    position: absolute;
    right: 3px;
    top: 15px;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition:
      transform 0.3s,
      top 0.3s;
  }
  .menu-toggle span:last-child {
    top: 24px;
    width: 18px;
  }
  .menu-is-open {
    color: #fff;
    background: var(--green-dark);
  }
  .menu-is-open .menu-toggle span {
    top: 20px;
    width: 24px;
    transform: rotate(45deg);
  }
  .menu-is-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 28px 38px;
    background: var(--green-dark);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.3s,
      transform 0.3s,
      visibility 0.3s;
  }
  .menu-is-open .mobile-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .mobile-nav nav {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mobile-nav nav a {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 0;
    font-family: var(--serif);
    font-size: 2rem;
  }
  .mobile-nav nav span {
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.65rem;
  }
  .mobile-nav .button {
    margin-top: 35px;
    align-self: flex-start;
  }
  .mobile-nav > p {
    margin: auto 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
  }
  .hero {
    min-height: 760px;
    height: 100svh;
    max-height: 930px;
  }
  .hero-image-wrap img {
    object-position: 61% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(21, 27, 23, 0.85) 0%,
      rgba(21, 27, 23, 0.48) 67%,
      rgba(21, 27, 23, 0.2) 100%
    );
  }
  .hero-content {
    top: auto;
    bottom: 132px;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }
  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.25rem, 15vw, 5.8rem);
    line-height: 0.9;
  }
  .hero-copy {
    max-width: 560px;
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .hero-actions {
    gap: 21px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }
  .hero-place {
    display: none;
  }
  .hero-index {
    left: 18px;
    bottom: 34px;
  }
  .hero-services {
    left: 88px;
    right: 18px;
    bottom: 29px;
    overflow: hidden;
  }
  .hero-services span {
    min-width: 145px;
    padding-top: 12px;
    font-size: 0.64rem;
    white-space: nowrap;
  }
  .hero-services span:nth-child(n + 2) {
    display: none;
  }
  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 62px;
  }
  .project-1 {
    grid-row: auto;
    padding-right: 0;
  }
  .project-1 .project-image {
    aspect-ratio: 4 / 4.8;
  }
  .project-2 .project-image,
  .project-3 .project-image {
    aspect-ratio: 4 / 3;
  }
  .project-copy,
  .project-2 .project-copy,
  .project-3 .project-copy {
    grid-template-columns: 145px 1fr;
    gap: 20px;
  }
  .focus-note {
    width: 100%;
    margin-top: 62px;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .services-sticky {
    position: static;
  }
  .services-sticky img {
    width: 72%;
    margin-top: 40px;
    aspect-ratio: 4 / 3;
  }
  .service-list li {
    grid-template-columns: 46px 1fr 28px;
    gap: 15px;
    padding: 24px 0;
  }
  .process-buttons {
    grid-template-columns: repeat(4, minmax(118px, 1fr));
    gap: 22px;
    width: max-content;
    min-width: 100%;
  }
  .process {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .process-rail {
    width: 538px;
  }
  .process-panel {
    position: sticky;
    left: 0;
    width: calc(100vw - 36px);
    min-height: 280px;
    padding: 42px 0 0;
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }
  .process-panel-number {
    font-size: 4.3rem;
  }
  .process-panel h3 {
    font-size: 1.8rem;
  }
  .materials-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .material-visual {
    min-height: 64vw;
  }
  .material-control {
    padding: 38px 24px 40px;
  }
  .material-description {
    padding-top: 38px;
  }
  .principles-title-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 50px;
  }
  .principles-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .principles-list article p {
    grid-column: 2;
  }
  .questions-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .questions-heading {
    position: static;
  }
  .closing-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .closing-image {
    min-height: 58vw;
  }
  .closing-content {
    padding: 70px 24px 82px;
  }
  .closing-content h2 {
    font-size: clamp(3.3rem, 14vw, 5.2rem);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 58px 28px;
  }
  .footer-note {
    grid-column: 1 / span 2;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 0 0;
  }
  .dialog-grid {
    grid-template-columns: 1fr;
  }
  .dialog-heading {
    padding: 58px 28px 35px;
  }
  .dialog-grid form {
    padding: 34px 28px 44px;
  }
  .demo-notice {
    margin-top: 28px;
  }
  .dialog-grid form .button {
    margin-top: 18px;
    width: 100%;
    justify-content: space-between;
  }
  .success-message {
    min-height: 600px;
    padding: 70px 30px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 76px 0;
  }
  .eyebrow {
    margin-bottom: 16px;
  }
  .brand {
    font-size: 1.2rem;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    bottom: 104px;
  }
  .hero h1 {
    margin-bottom: 20px;
  }
  .hero-copy {
    margin-bottom: 23px;
  }
  .hero-index {
    bottom: 24px;
  }
  .hero-services {
    display: none;
  }
  .project-copy,
  .project-2 .project-copy,
  .project-3 .project-copy {
    grid-template-columns: 1fr;
  }
  .services-sticky img {
    width: 84%;
  }
  .service-list li {
    grid-template-columns: 40px 1fr;
  }
  .service-index {
    display: none;
  }
  .material-visual {
    min-height: 86vw;
  }
  .material-caption {
    left: 12px;
    bottom: 12px;
  }
  .material-options button {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .principles-list article {
    grid-template-columns: 34px 1fr;
  }
  .faq button span {
    font-size: 1.2rem;
  }
  .closing-image {
    min-height: 78vw;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-note {
    grid-column: 1;
  }
  .footer-bottom {
    gap: 24px;
  }
  .request-dialog {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
