@font-face {
  font-family: Fahkwang;
  src: url('/assets/fahkwang-light.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Red Hat Text';
  src: url('/assets/red-hat-text.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: light;
  --light: #fafafa;
  --depth: #595955;
  --nature: #777d64;
  font-family: 'Red Hat Text', sans-serif;
  color: var(--depth);
  background: var(--light);
  font-synthesis: none;
}
* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: #dad9d6; color: #393b32; }
.landing { display: grid; grid-template-columns: 55% 45%; min-height: 100svh; }
.introduction {
  min-height: 100svh;
  padding: 3rem clamp(2rem, 4.5vw, 5.5rem) 2.5rem;
  display: grid;
  grid-template-rows: 1fr auto;
}
.footnote { display: flex; align-items: center; justify-content: flex-end; }
.identity { align-self: center; text-align: center; padding: 5rem 0 6.5rem; }
h1 { margin: 0; line-height: 1; font-weight: 300; }
.wordmark { display: block; width: 72%; max-width: 20rem; height: auto; margin: 0 auto; }
.thought { font-family: Fahkwang, sans-serif; font-weight: 300; font-size: .875rem; line-height: 1.8; max-width: 25rem; margin: 2rem auto 0; text-wrap: balance; }
.footnote { font-size: .8125rem; flex-wrap: wrap; gap: .5rem 1rem; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .3em; text-decoration-color: #babbb1; padding: .7rem 0; }
a:hover { color: #454b36; text-decoration-color: currentColor; }
a:focus-visible { outline: 2px solid var(--nature); outline-offset: 6px; border-radius: 1px; }
.atmosphere { min-width: 0; position: relative; background: #c9c1b0; }
.atmosphere img { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 47% 50%; }
@media (max-width: 700px) {
  .landing { grid-template-columns: 1fr; }
  .introduction { min-height: 58svh; padding: 1.5rem 1.5rem 1.2rem; }
  .identity { padding: 4.5rem .6rem 4rem; }
  .wordmark { max-width: 16rem; }
  .thought { margin-top: 1.7rem; }
  .footnote { font-size: .8125rem; }
  .atmosphere { min-height: 42svh; }
  .atmosphere img { object-position: 50% 55%; }
}
@media (prefers-reduced-motion: no-preference) {
  .identity { animation: arrive 1.4s ease-out both; }
  @keyframes arrive { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
}
