:root {
  --wood-ink: #202521;
  --wood-forest: #34483d;
  --wood-moss: #657a68;
  --wood-paper: #f1efe9;
  --wood-stone: #dfe2dc;
  --wood-white: #ffffff;
  --wood-brass: #c29455;
  --wood-rust: #8b5142;
  --wood-line: rgba(32, 37, 33, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wood-ink);
  background: var(--wood-paper);
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.wood-editorial-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  align-items: center;
  gap: 28px;
  padding: 11px 5.5%;
  color: var(--wood-ink);
  background: rgba(241, 239, 233, 0.95);
  border-bottom: 1px solid var(--wood-line);
  backdrop-filter: blur(16px);
}

.wood-editorial-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.wood-monogram {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--wood-paper);
  background: var(--wood-forest);
  border-radius: 50%;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 850;
}

.wood-editorial-nav {
  display: flex;
  gap: 30px;
  justify-self: center;
  color: rgba(32, 37, 33, 0.64);
  font-size: 14px;
}

.wood-editorial-nav a,
.wood-header-action {
  transition: color 180ms ease, border-color 180ms ease;
}

.wood-editorial-nav a:hover,
.wood-editorial-nav a:focus-visible,
.wood-header-action:hover,
.wood-header-action:focus-visible {
  color: var(--wood-rust);
}

.wood-header-action {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.wood-editorial-hero {
  position: relative;
  display: grid;
  height: calc(84svh - 78px);
  min-height: 680px;
  max-height: 840px;
  align-items: end;
  overflow: hidden;
  color: var(--wood-white);
  background: var(--wood-ink);
}

.wood-editorial-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.wood-editorial-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 20, 0.93) 0%, rgba(18, 23, 20, 0.67) 44%, rgba(18, 23, 20, 0.12) 78%),
    linear-gradient(0deg, rgba(18, 23, 20, 0.54), transparent 48%);
}

.wood-editorial-copy {
  position: relative;
  z-index: 2;
  width: min(800px, 74%);
  padding: 70px 6%;
}

.wood-kicker,
.wood-piece-type,
.wood-process-label {
  margin-bottom: 14px;
  color: var(--wood-rust);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wood-editorial-copy .wood-kicker,
.wood-request .wood-kicker {
  color: var(--wood-brass);
}

.wood-editorial-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 84px;
  line-height: 0.96;
}

.wood-editorial-copy > p:not(.wood-kicker) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.58;
}

.wood-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.wood-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.wood-button-primary {
  color: var(--wood-white);
  background: var(--wood-rust);
}

.wood-button-primary:hover,
.wood-button-primary:focus-visible {
  background: #744034;
}

.wood-button-light {
  color: var(--wood-white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.48);
}

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

.wood-hero-caption {
  position: absolute;
  right: 5.5%;
  bottom: 30px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.wood-manifest {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 78px;
  padding: 88px 6%;
  background: var(--wood-stone);
  border-bottom: 1px solid var(--wood-line);
}

.wood-manifest-lead {
  max-width: 800px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.35;
}

.wood-manifest-facts {
  border-top: 1px solid var(--wood-line);
}

.wood-manifest-facts article {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--wood-line);
}

.wood-manifest-facts h2 {
  margin-bottom: 0;
  font-size: 23px;
}

.wood-manifest-facts p {
  margin-bottom: 0;
  color: rgba(32, 37, 33, 0.64);
  line-height: 1.56;
}

.wood-collection,
.wood-process {
  padding: 100px 6%;
}

.wood-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 44px;
}

.wood-section-heading h2,
.wood-material-band h2,
.wood-request h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.03;
}

.wood-section-heading > p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(32, 37, 33, 0.62);
  line-height: 1.62;
}

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

.wood-piece {
  grid-column: span 5;
  overflow: hidden;
  background: var(--wood-white);
  border: 1px solid var(--wood-line);
  border-radius: 4px;
}

.wood-piece-large {
  grid-column: span 7;
  grid-row: span 2;
}

.wood-piece > img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.wood-piece-large > img {
  height: 605px;
}

.wood-piece-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

.wood-piece-wide > img {
  height: 390px;
}

.wood-piece:hover > img {
  transform: scale(1.02);
}

.wood-piece-copy {
  padding: 24px;
}

.wood-piece-copy h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.12;
}

.wood-piece-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(32, 37, 33, 0.62);
  line-height: 1.56;
}

.wood-material-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 76px;
  padding: 88px 6%;
  color: var(--wood-white);
  background: var(--wood-forest);
}

.wood-material-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.wood-material-list article {
  min-height: 230px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.wood-material-list h3 {
  margin-bottom: 50px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.wood-material-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.56;
}

.wood-process {
  background: #e7ebe5;
}

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

.wood-process-list article {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 58px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--wood-line);
}

.wood-process-list article:nth-child(even) {
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
}

.wood-process-list article:nth-child(even) img {
  order: 2;
}

.wood-process-list img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.wood-process-list article > div {
  padding: 24px 3vw;
}

.wood-process-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.wood-step-number {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--wood-white);
  background: var(--wood-rust);
  border-radius: 50%;
  font-weight: 850;
}

.wood-process-label {
  margin-bottom: 0;
}

.wood-process-list h3 {
  max-width: 580px;
  margin-bottom: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
}

.wood-process-list article > div > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(32, 37, 33, 0.64);
  line-height: 1.62;
}

.wood-request {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding: 90px 6%;
  color: var(--wood-white);
  background: var(--wood-ink);
}

.wood-request > div {
  max-width: 850px;
}

.wood-request > div > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.62;
}

.wood-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 6%;
  color: rgba(255, 255, 255, 0.58);
  background: #141815;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .wood-editorial-copy h1 {
    font-size: 68px;
  }

  .wood-manifest,
  .wood-material-band {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .wood-piece-large > img {
    height: 540px;
  }
}

@media (max-width: 840px) {
  .wood-editorial-header {
    grid-template-columns: 1fr auto;
  }

  .wood-editorial-nav {
    display: none;
  }

  .wood-editorial-copy {
    width: 86%;
  }

  .wood-hero-caption {
    display: none;
  }

  .wood-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .wood-piece,
  .wood-piece-large {
    grid-column: span 6;
    grid-row: auto;
  }

  .wood-piece > img,
  .wood-piece-large > img {
    height: 320px;
  }

  .wood-piece-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .wood-material-list {
    grid-template-columns: 1fr;
  }

  .wood-material-list article {
    min-height: 0;
  }

  .wood-material-list h3 {
    margin-bottom: 16px;
  }

  .wood-process-list article,
  .wood-process-list article:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wood-process-list article:nth-child(even) img {
    order: 0;
  }

  .wood-request {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wood-editorial-header {
    min-height: 64px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .wood-header-action {
    display: none;
  }

  .wood-editorial-brand {
    grid-column: 1 / -1;
  }

  .wood-monogram {
    width: 38px;
    height: 38px;
  }

  .wood-editorial-hero {
    height: calc(84svh - 64px);
    min-height: 640px;
  }

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

  .wood-editorial-shade {
    background:
      linear-gradient(90deg, rgba(18, 23, 20, 0.95), rgba(18, 23, 20, 0.62) 80%, rgba(18, 23, 20, 0.28)),
      linear-gradient(0deg, rgba(18, 23, 20, 0.56), transparent 50%);
  }

  .wood-editorial-copy {
    width: 100%;
    padding: 54px 20px;
  }

  .wood-editorial-copy h1 {
    font-size: 46px;
    line-height: 1;
  }

  .wood-editorial-copy > p:not(.wood-kicker) {
    font-size: 17px;
  }

  .wood-actions {
    display: grid;
  }

  .wood-button {
    width: 100%;
  }

  .wood-manifest,
  .wood-collection,
  .wood-material-band,
  .wood-process,
  .wood-request {
    padding-right: 20px;
    padding-left: 20px;
  }

  .wood-manifest {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .wood-manifest-lead {
    font-size: 27px;
  }

  .wood-manifest-facts article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wood-collection,
  .wood-process {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .wood-section-heading h2,
  .wood-material-band h2,
  .wood-request h2 {
    font-size: 40px;
  }

  .wood-piece,
  .wood-piece-large,
  .wood-piece-wide {
    grid-column: 1 / -1;
  }

  .wood-piece > img,
  .wood-piece-large > img,
  .wood-piece-wide > img {
    height: 260px;
  }

  .wood-piece-copy h3 {
    font-size: 27px;
  }

  .wood-material-band,
  .wood-request {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .wood-process-list article > div {
    padding: 24px 0;
  }

  .wood-process-list h3 {
    font-size: 31px;
  }

  .wood-footer {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
