@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/fonts/dm-sans-medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif-italic.ttf') format('truetype');
}
:root {
  font-family: 'DM Sans', Arial, sans-serif;
  color: #171717;
  background: #f5efe5 url('/paper-grain.svg') repeat;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 6px;
}
.page {
  width: min(1200px, calc(100% - 112px));
  margin-inline: auto;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dcd2c4;
  gap: 20px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -1.5px;
}
.header-note {
  color: #71685e;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 82px 0 88px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 31px;
  padding: 9px 13px;
  border: 1px solid #cfc4b5;
  border-radius: 100px;
}
.status span {
  width: 6px;
  height: 6px;
  background: #6d785f;
  border-radius: 50%;
}
h1 {
  font-size: clamp(62px, 6.35vw, 91px);
  line-height: 1.01;
  letter-spacing: -0.065em;
  font-weight: 500;
  margin: 0 0 31px;
}
h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 1.16em;
  letter-spacing: -0.025em;
}
.description {
  max-width: 380px;
  color: #61594f;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 10px;
}
.quiet-note {
  color: #61594f;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 31px;
}
.contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #171717;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}
.contact:hover {
  color: #f5efe5;
  background: #171717;
}
.contact span {
  font-size: 20px;
}
.art {
  background: #e9e1d4;
  aspect-ratio: 0.88;
  border-radius: 240px 240px 10px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d9cdbd;
}
.landscape {
  width: 100%;
  margin-top: -22px;
}
.sun {
  stroke: #6f6558;
  stroke-width: 1.3;
}
.sun.inner {
  stroke: #8d8171;
}
.wave {
  stroke: #4f5147;
  stroke-width: 1.35;
}
.wave.second {
  stroke: #8d8171;
}
.art-label {
  position: absolute;
  bottom: 30px;
  left: 10px;
  right: 10px;
  text-align: center;
  color: #61594f;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  border-top: 1px solid #dcd2c4;
  font-size: 12px;
  color: #71685e;
}
.footer a {
  text-decoration-color: #bfb2a0;
  padding-block: 12px;
}
.footer a:hover {
  text-decoration-color: #171717;
  color: #171717;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 100px;
  }
}
@media (max-width: 900px) {
  .page {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 28px;
    padding-block: 70px;
  }
  h1 {
    font-size: 65px;
  }
  .description {
    font-size: 16px;
  }
  .footer-note {
    display: none;
  }
}
@media (max-width: 640px) {
  .page {
    width: calc(100% - 40px);
  }
  .header {
    min-height: 86px;
  }
  .wordmark {
    font-size: 26px;
    gap: 7px;
  }
  .wordmark img {
    width: 31px;
    height: 31px;
  }
  .header-note {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 51px 0 42px;
    gap: 45px;
  }
  .status {
    margin-bottom: 25px;
    font-size: 10px;
  }
  h1 {
    font-size: clamp(58px, 15.5vw, 81px);
    margin-bottom: 25px;
  }
  .description {
    max-width: 360px;
    font-size: 16px;
  }
  .quiet-note {
    font-size: 13px;
    margin-bottom: 26px;
  }
  .art {
    width: min(100%, 390px);
    justify-self: center;
    aspect-ratio: 1.2;
    border-radius: 190px 190px 8px 8px;
  }
  .landscape {
    width: 80%;
    margin-top: -43px;
  }
  .art-label {
    bottom: 20px;
    font-size: 8px;
  }
  .footer {
    min-height: 90px;
    gap: 8px;
    flex-wrap: wrap;
    padding-block: 18px;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
