/* Studio work and material sections follow the catalog. */
.home-projects {
  padding: 54px 40px 38px;
  background: var(--paper, #f3f0e9);
  border-top: 1px solid var(--line, #d6d2c8);
  scroll-margin-top: 96px;
}
.home-content-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}
.home-kicker {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-content-head h2,
.home-materials h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.05em;
}
.home-content-intro {
  max-width: 290px;
  margin: 0 0 2px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--soft, #69665e);
}
.home-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.home-project-card {
  display: block;
  min-width: 0;
}
.home-project-media {
  aspect-ratio: 1.48;
  margin: 0;
  overflow: hidden;
  background: #ddd9d1;
}
.home-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.65,.3,1);
}
.home-project-media-tibur img { object-position: center 66%; }
.home-project-card:hover img { transform: scale(1.025); }
.home-project-caption {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 0 0;
}
.home-project-caption h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.025em;
}
.home-project-caption p,
.home-project-caption > span {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
  color: var(--soft, #69665e);
}
.home-project-caption > span {
  flex: none;
  padding-top: 3px;
}
.home-project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 21px;
  border-top: 1px solid var(--line, #d6d2c8);
}
.home-project-footer p {
  margin: 0;
  color: var(--soft, #69665e);
  font-size: 12px;
}
.home-text-link {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  white-space: nowrap;
}
.home-materials {
  display: grid;
  grid-template-columns: .85fr 1.5fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: 52px 40px;
  color: #f3f0e9;
  background: #252621;
  scroll-margin-top: 96px;
}
.home-materials-copy > p:not(.home-kicker):not(.home-materials-note) {
  max-width: 325px;
  margin: 22px 0;
  font-size: 13px;
  line-height: 1.85;
  color: #c7c7bc;
}
.home-materials-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid #9c9e90;
  font-size: 12px;
}
.home-materials-cta:hover {
  background: #f3f0e9;
  border-color: #f3f0e9;
  color: #252621;
}
.home-materials-note {
  margin: 18px 0 0;
  font-size: 10px;
  line-height: 1.7;
  color: #babbb0;
}
.home-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-material-card { min-width: 0; margin: 0; }
.home-material-image {
  aspect-ratio: .78;
  overflow: hidden;
  background: #45463f;
}
.home-material-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-material-card h3 {
  margin: 15px 0 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.025em;
}
.home-material-card p {
  margin: 0;
  color: #bfc1b5;
  font-size: 10px;
  line-height: 1.65;
}
@media (min-width: 1600px) {
  .home-project-media { aspect-ratio: 1.7; }
  .home-material-image { aspect-ratio: 1; }
}
@media (max-width: 900px) {
  .home-projects { padding: 40px 24px 30px; }
  .home-project-grid { gap: 18px; }
  .home-project-caption { display: block; }
  .home-project-caption > span { display: block; margin-top: 9px; }
  .home-materials { grid-template-columns: .9fr 1.25fr; gap: 30px; padding: 40px 24px; }
  .home-material-grid { gap: 10px; }
  .home-material-image { aspect-ratio: .7; }
}
@media (max-width: 600px) {
  .home-projects { padding: 34px 18px 26px; scroll-margin-top: 76px; }
  .home-content-head { display: block; margin-bottom: 22px; }
  .home-content-head h2, .home-materials h2 { font-size: 33px; }
  .home-content-intro { max-width: 290px; margin-top: 15px; font-size: 12px; }
  .home-kicker { margin-bottom: 12px; font-size: 9px; }
  .home-project-grid { grid-template-columns: 1fr; gap: 26px; }
  .home-project-media { aspect-ratio: 1.34; }
  .home-project-caption { display: flex; gap: 16px; padding-top: 14px; }
  .home-project-caption h3 { font-size: 16px; }
  .home-project-caption p { font-size: 10px; }
  .home-project-caption > span { margin-top: 0; font-size: 10px; }
  .home-project-footer { margin-top: 23px; gap: 16px; }
  .home-project-footer p, .home-text-link { font-size: 10px; }
  .home-materials { display: block; padding: 32px 18px; scroll-margin-top: 76px; }
  .home-materials-copy > p:not(.home-kicker):not(.home-materials-note) { max-width: 345px; margin: 18px 0; font-size: 12px; }
  .home-materials h2 br { display: none; }
  .home-materials-note { margin-top: 14px; }
  .home-material-grid { gap: 10px; margin-top: 28px; }
  .home-material-image { aspect-ratio: .76; }
  .home-material-card h3 { margin-top: 12px; font-size: 12px; }
  .home-material-card p { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-project-media img { transition: none; }
  .home-project-card:hover img { transform: none; }
}
