:root {
  --bg: #170d18;
  --fg: #fff7f8;
  --copper: #c87655;
  --blush: #f0d9d2;
  --sans: "Anek Latin", sans-serif;
}
body {
  padding-left: 86px;
}
.rail {
  position: fixed;
  inset: 34px auto 0 0;
  z-index: 40;
  width: 86px;
  border-right: 1px solid rgba(255, 247, 248, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.rail .mark {
  font: 36px "Instrument Serif";
  color: var(--copper);
}
.rail nav {
  display: grid;
  gap: 24px;
  font-size: 11px;
}
.rail > span {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.58;
}
.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  overflow: hidden;
}
.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 13, 24, 0.72),
    rgba(23, 13, 24, 0.06) 63%
  );
}
.blade {
  position: absolute;
  left: 52%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(240, 217, 210, 0.55);
}
header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 28px var(--page-pad);
  font-size: 12px;
}
header a {
  border-bottom: 1px solid currentColor;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: 12%;
  max-width: 840px;
}
.hero-copy p {
  margin: 0 0 12px;
  font-size: clamp(16px, 2vw, 25px);
}
h1 {
  margin: 0;
  font: clamp(90px, 15vw, 240px) / 0.72 "Instrument Serif";
  letter-spacing: -0.055em;
}
.signature {
  display: block;
  margin: 20px 0 0 43%;
  font: italic clamp(28px, 4vw, 64px) "Instrument Serif";
  color: var(--blush);
}
.hero-proof {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 8%;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-proof strong {
  font: 64px "Instrument Serif";
  color: var(--copper);
}
.hero-proof span {
  max-width: 105px;
  font-size: 11px;
  line-height: 1.4;
}
.atelier {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  padding: 140px var(--page-pad);
  align-items: start;
}
.section-index {
  font-size: 11px;
  color: var(--copper);
}
h2 {
  margin: 0;
  font: clamp(42px, 5vw, 76px) / 0.98 "Instrument Serif";
}
.atelier p {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 247, 248, 0.68);
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
figcaption {
  margin-top: 10px;
  font-size: 10px;
  opacity: 0.48;
}
.presence {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding: 80px var(--page-pad);
  background: var(--blush);
  color: #32172d;
}
.presence blockquote {
  max-width: 790px;
  margin: 0;
  font: italic clamp(38px, 6vw, 90px) / 0.95 "Instrument Serif";
}
.presence div {
  display: grid;
  max-width: 180px;
}
.presence strong {
  font: 80px "Instrument Serif";
}
.contact {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px var(--page-pad);
}
.contact p {
  color: var(--copper);
}
.contact h2 {
  margin-bottom: 36px;
}
.contact .phone {
  background: var(--copper);
  border-color: var(--copper);
  color: #170d18;
}
.contact .status {
  margin-top: 12px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 26px var(--page-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 820px) {
  body {
    padding-left: 0;
  }
  .rail {
    display: none;
  }
  .atelier {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }
  .atelier figure {
    width: 72%;
    margin-left: auto;
  }
  .hero-copy {
    bottom: 20%;
  }
  .signature {
    margin-left: 20%;
  }
  .hero-proof {
    left: var(--page-pad);
    right: auto;
  }
  .presence {
    align-items: start;
    flex-direction: column;
  }
  .contact {
    min-height: 60vh;
  }
  footer {
    flex-direction: column;
  }
}
