@font-face {
  font-family: 'Unbounded';
  src: url('/assets/fonts/unbounded/Unbounded-ExtraLight-200.woff2') format('woff2');
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Unbounded';
  src: url('/assets/fonts/unbounded/Unbounded-Light-300.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Unbounded';
  src: url('/assets/fonts/unbounded/Unbounded-Regular-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f7f5f1;
  --black: #090909;
  --text: #151515;
  --muted: #4f4c47;
  --line: #79756e;
  --font: 'Unbounded', Arial, sans-serif;
  --header-height: 6rem;
  --footer-height: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  background: var(--paper);
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 0.1875rem solid currentColor;
  outline-offset: 0.3125rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #000;
  font-size: 0.75rem;
  transform: translateY(-150%);
}

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

.site-header {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  height: var(--header-height);
  padding-inline: clamp(1.5rem, 4.4vw, 4.25rem) 0;
  background: var(--paper);
}

.wordmark {
  display: inline-flex;
  flex: none;
  align-items: center;
  min-height: 2.75rem;
}

.wordmark__text {
  display: inline-block;
  font-size: clamp(0.9375rem, 1.4vw, 1.25rem);
  font-weight: 200;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark__text sup {
  position: relative;
  top: -0.35em;
  margin-left: -0.18em;
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: 0;
}

.site-header__line {
  width: 100%;
  height: 1px;
  background: var(--line);
  transform-origin: left;
  animation: draw-line 700ms ease-out both;
}

.landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100svh - var(--header-height) - var(--footer-height));
  border-bottom: 1px solid var(--line);
}

.message {
  display: grid;
  grid-template-columns: 1px minmax(0, 1fr);
  gap: clamp(2rem, 3.4vw, 4rem);
  padding: clamp(2.5rem, 5vh, 4.75rem) clamp(2rem, 5vw, 5rem) clamp(2.5rem, 5vh, 4.75rem) clamp(1.5rem, 4.4vw, 4.25rem);
  background: var(--paper);
}

.message__line {
  display: block;
  width: 1px;
  min-height: 100%;
  background: var(--line);
}

.message__content {
  align-self: center;
  max-width: 39rem;
  animation: reveal-copy 620ms 80ms ease-out both;
}

h1,
p,
figure,
address {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 4.7vw, 4.65rem);
  font-weight: 200;
  letter-spacing: -0.077em;
  line-height: 0.98;
}

h1 span {
  display: block;
}

.message__description {
  max-width: 35rem;
  margin-top: clamp(2rem, 4vh, 3.4rem);
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.72;
}

.message__note {
  margin-top: clamp(1.25rem, 2.5vh, 2rem);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}

.primary-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 24rem);
  min-height: 4.25rem;
  margin-top: clamp(2rem, 4vh, 3.25rem);
  border: 1px solid var(--black);
  padding: 1rem 1.35rem;
  color: #fff;
  background: var(--black);
  font-size: 0.8125rem;
  font-weight: 400;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-action svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
}

.primary-action:hover {
  color: var(--black);
  background: transparent;
}

.primary-action:focus-visible {
  outline-color: var(--black);
  box-shadow: 0 0 0 0.125rem var(--paper);
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.7rem;
  margin-top: clamp(1.25rem, 2.7vh, 2rem);
  color: #34322f;
  font-size: 0.875rem;
  font-style: normal;
}

.direct-contact a {
  border-bottom: 1px solid transparent;
}

.direct-contact a:hover {
  border-bottom-color: currentColor;
}

.visual {
  min-width: 0;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: #090909;
}

.visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 52% 53%;
  animation: reveal-image 800ms ease-out both;
}

.site-footer {
  display: grid;
  place-items: center;
  min-height: var(--footer-height);
  padding: 1.25rem clamp(1.5rem, 4vw, 4rem);
  background: var(--paper);
}

.site-footer p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0.7rem;
  color: #34322f;
  font-size: clamp(0.75rem, 0.86vw, 0.8125rem);
  text-align: center;
}

@keyframes draw-line {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes reveal-copy {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
}

@keyframes reveal-image {
  from {
    opacity: 0;
    transform: scale(1.015);
  }
}

@media (max-width: 61.9375rem) {
  :root {
    --header-height: 4.75rem;
  }

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

  .message {
    min-height: calc(100svh - var(--header-height));
  }

  .visual {
    min-height: min(78vw, 42rem);
  }

  .visual img {
    min-height: min(78vw, 42rem);
    object-position: 50% 48%;
  }
}

@media (max-width: 39.9375rem) {
  :root {
    --footer-height: auto;
  }

  .site-header {
    gap: 1.5rem;
    padding-left: 1.25rem;
  }

  .message {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 3.5rem 1.25rem 3.25rem;
  }

  .message__line {
    width: 4.5rem;
    min-height: 1px;
    margin-bottom: 2rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13.2vw, 4rem);
    letter-spacing: -0.073em;
  }

  .message__description {
    margin-top: 2rem;
    font-size: 0.875rem;
  }

  .message__note {
    font-size: 0.8125rem;
  }

  .primary-action {
    width: 100%;
  }

  .direct-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .direct-contact > span {
    display: none;
  }

  .direct-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
  }

  .visual,
  .visual img {
    min-height: 31rem;
  }

  .site-footer {
    place-items: start;
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .site-footer p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    text-align: left;
  }

  .site-footer__separator {
    display: none;
  }
}

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