@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --holz-forest: #17352e;
  --holz-forest-deep: #102820;
  --holz-cream: #f4efe5;
  --holz-sand: #e7dece;
  --holz-ink: #17201d;
  --holz-muted: #69716c;
  --holz-orange: #d86431;
  --holz-line: rgba(23, 32, 29, 0.18);
  --holz-max: 1440px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--holz-cream);
  color: var(--holz-ink);
  font-family: "Geist", Arial, sans-serif;
}

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

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

::selection {
  background: var(--holz-orange);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--holz-orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: #fff;
  color: var(--holz-ink);
  font-size: 13px;
}

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

.holz-header {
  position: relative;
  height: 112px;
  padding: 0 max(24px, calc(50vw - 720px));
  padding-top: 26px;
  border-bottom: 1px solid var(--holz-line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--holz-cream);
}

.holz-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1;
}

.holz-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.holz-brand strong {
  font-weight: 680;
}

.holz-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50% 50% 4px 50%;
  display: grid;
  place-items: center;
  background: var(--holz-forest);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.holz-header nav {
  display: flex;
  gap: 38px;
  font-size: 12px;
}

.holz-header nav a,
.holz-text-link {
  position: relative;
  width: fit-content;
}

.holz-header nav a::after,
.holz-text-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 220ms ease;
}

.holz-header nav a:hover::after,
.holz-header nav a:focus-visible::after,
.holz-text-link:hover::after,
.holz-text-link:focus-visible::after {
  right: 0;
}

.holz-hero {
  min-height: calc(100svh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  background: var(--holz-sand);
}

.holz-hero-copy {
  min-width: 0;
  padding: clamp(56px, 7vh, 90px) max(32px, calc(50vw - 720px)) 44px;
  padding-right: clamp(38px, 5vw, 82px);
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--holz-muted);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--holz-orange);
}

.holz-hero h1 {
  margin: auto 0 34px;
  font-size: clamp(70px, 7vw, 110px);
  font-weight: 620;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.holz-hero h1 em,
.holz-project h2 em,
.holz-story h2 em,
.holz-contact h2 em {
  color: var(--holz-orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.holz-lead {
  max-width: 520px;
  margin: 0;
  color: var(--holz-muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.holz-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.holz-button {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.holz-button-primary {
  background: var(--holz-forest);
  color: #fff;
}

.holz-button-primary:hover,
.holz-button-primary:focus-visible {
  background: var(--holz-orange);
}

.holz-text-link {
  font-size: 12px;
  font-weight: 620;
  white-space: nowrap;
}

.holz-text-link span {
  margin-left: 8px;
}

.holz-proof {
  margin-top: auto;
  padding-top: 34px;
  border-top: 1px solid var(--holz-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.holz-proof div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.holz-proof strong {
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 570;
}

.holz-proof span {
  color: var(--holz-muted);
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.holz-hero-media {
  position: relative;
  min-width: 0;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: var(--holz-forest);
}

.holz-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 30, 24, 0.04), rgba(10, 30, 24, 0.24));
}

.holz-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.holz-hero-media figcaption {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  z-index: 2;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.holz-seal {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: rotate(7deg);
}

.holz-seal span {
  font-family: "Geist Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.2em;
}

.holz-seal strong {
  margin: 2px 0;
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.holz-marquee {
  min-height: 72px;
  padding: 0 max(24px, calc(50vw - 720px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
  background: var(--holz-orange);
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.holz-marquee i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--holz-forest);
}

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

.holz-services {
  padding-top: 148px;
  padding-bottom: 160px;
}

.section-intro {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  align-items: end;
  gap: 24px;
}

.section-intro h2,
.holz-project h2,
.holz-story h2,
.holz-contact h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 590;
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--holz-muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-width: 0;
}

.service-card figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--holz-sand);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.service-card:hover img {
  transform: scale(1.025);
}

.service-card-heading {
  margin-top: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--holz-line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
}

.service-card-heading span {
  color: var(--holz-orange);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
}

.service-card-heading h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 560;
}

.service-card-heading b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.service-card:hover .service-card-heading b {
  transform: translate(3px, -3px);
}

.service-card p {
  max-width: 390px;
  margin: 18px 0 0 32px;
  color: var(--holz-muted);
  font-size: 14px;
  line-height: 1.6;
}

.holz-project {
  padding: 146px 0 152px;
  background: var(--holz-forest);
  color: #fff;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.holz-project-head {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  align-items: end;
  gap: 24px;
}

.holz-project-head > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.6;
}

.holz-project-image {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 9fr 3fr;
  align-items: end;
  gap: 24px;
}

.holz-project-image > img {
  width: 100%;
  height: min(76vw, 880px);
  object-fit: cover;
  object-position: center 60%;
}

.holz-project-image dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.holz-project-image dl div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.holz-project-image dt,
.holz-project-image dd {
  margin: 0;
  font-size: 11px;
}

.holz-project-image dt {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.holz-story {
  padding-top: 150px;
  padding-bottom: 160px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: center;
  gap: 8.333%;
}

.holz-story figure {
  margin: 0;
}

.holz-story figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.holz-story figcaption {
  margin-top: 13px;
  color: var(--holz-muted);
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.holz-story-copy h2 {
  margin-top: 34px;
}

.holz-story-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 38px 0 0;
  color: var(--holz-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.holz-story blockquote {
  max-width: 620px;
  margin: 50px 0 36px;
  padding: 28px 0;
  border-top: 1px solid var(--holz-line);
  border-bottom: 1px solid var(--holz-line);
  color: var(--holz-forest);
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.25;
}

.holz-contact {
  padding: 110px 0 100px;
  background: var(--holz-orange);
  color: #fff;
}

.holz-contact h2 {
  margin-top: 80px;
  font-size: clamp(68px, 9vw, 132px);
  line-height: 0.84;
}

.holz-contact h2 em {
  color: var(--holz-forest);
}

.holz-contact-bottom {
  margin-top: 78px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.holz-contact-bottom p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.holz-button-light {
  background: #fff;
  color: var(--holz-forest);
}

.holz-button-light:hover,
.holz-button-light:focus-visible {
  background: var(--holz-forest);
  color: #fff;
}

.holz-footer {
  min-height: 148px;
  padding: 48px max(24px, calc(50vw - 720px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: var(--holz-forest-deep);
  color: #fff;
}

.holz-brand-footer .holz-mark {
  background: var(--holz-orange);
}

.holz-footer p,
.holz-footer > a:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.holz-footer > a:last-child {
  justify-self: end;
}

@supports (content-visibility: auto) {
  .holz-services,
  .holz-project,
  .holz-story,
  .holz-contact,
  .holz-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

@media (max-width: 980px) {
  .holz-header {
    padding-inline: 20px;
  }

  .holz-header nav {
    display: none;
  }

  .holz-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .holz-hero-copy {
    min-height: 680px;
    padding: 58px 24px 42px;
  }

  .holz-hero h1 {
    margin-top: 90px;
  }

  .holz-hero-media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .section-intro,
  .holz-project-head {
    grid-template-columns: 1fr 2fr;
  }

  .section-intro > p:last-child,
  .holz-project-head > p:last-child {
    grid-column: 2;
    margin-top: 20px;
  }

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

  .service-card:last-child {
    grid-column: 2;
  }

  .holz-story {
    gap: 6%;
  }
}

@media (max-width: 640px) {
  .holz-header {
    height: 104px;
    padding-top: 26px;
    grid-template-columns: 1fr;
  }

  .holz-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 18px;
  }

  .holz-hero-copy {
    min-height: 590px;
    padding: 46px 20px 32px;
  }

  .holz-hero h1 {
    margin: auto 0 28px;
    font-size: clamp(50px, 14vw, 62px);
    line-height: 0.86;
  }

  .holz-lead {
    font-size: 15px;
  }

  .holz-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .holz-proof {
    gap: 10px;
  }

  .holz-proof strong {
    font-size: 21px;
  }

  .holz-proof span {
    font-size: 7px;
  }

  .holz-hero-media {
    aspect-ratio: 4 / 5;
  }

  .holz-hero-media figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .holz-hero-media figcaption span:last-child {
    display: none;
  }

  .holz-seal {
    top: 20px;
    right: 20px;
    width: 88px;
    height: 88px;
  }

  .holz-seal strong {
    font-size: 27px;
  }

  .holz-marquee {
    min-height: 62px;
    padding-inline: 18px;
    justify-content: flex-start;
  }

  .holz-marquee span:nth-of-type(n + 3),
  .holz-marquee i:nth-of-type(n + 2) {
    display: none;
  }

  .section-shell {
    width: min(calc(100% - 36px), var(--holz-max));
  }

  .holz-services,
  .holz-story {
    padding-top: 94px;
    padding-bottom: 100px;
  }

  .section-intro,
  .holz-project-head {
    display: block;
  }

  .section-intro h2,
  .holz-project h2,
  .holz-story h2 {
    margin-top: 34px;
    font-size: clamp(43px, 13vw, 62px);
  }

  .section-intro > p:last-child,
  .holz-project-head > p:last-child {
    margin-top: 30px;
  }

  .service-grid {
    margin-top: 56px;
    display: block;
  }

  .service-card {
    margin-top: 58px;
  }

  .service-card:first-child {
    margin-top: 0;
  }

  .service-card p {
    margin-left: 0;
  }

  .holz-project {
    padding: 96px 0 100px;
  }

  .holz-project-image {
    margin-top: 56px;
    display: block;
  }

  .holz-project-image > img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .holz-project-image dl {
    margin-top: 34px;
  }

  .holz-story {
    display: flex;
    flex-direction: column-reverse;
    gap: 66px;
  }

  .holz-story-copy h2 {
    margin-top: 32px;
  }

  .holz-contact {
    padding: 88px 0 82px;
  }

  .holz-contact h2 {
    margin-top: 62px;
    font-size: clamp(55px, 16vw, 76px);
  }

  .holz-contact-bottom {
    margin-top: 58px;
    align-items: flex-start;
    flex-direction: column;
  }

  .holz-footer {
    padding: 50px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .holz-footer > a:last-child {
    order: 2;
  }

  .holz-footer p {
    order: 3;
  }
}

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

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