:root {
  --paper: #f4f0e8;
  --ink: #1e2421;
  --muted: #68706b;
  --line: rgba(30, 36, 33, 0.18);
  --accent: #e35d3f;
  --sage: #b9c5a4;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", "Noto Sans KR", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1120px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0 28px;
  display: flex;
  flex-direction: column;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand span {
  color: var(--accent);
}

.availability,
.eyebrow,
.label,
.art-label,
.art-index,
.footer {
  font-family: var(--mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.availability {
  color: var(--muted);
  font-size: 0.67rem;
}

.availability i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
  flex: 1;
  padding: clamp(72px, 11vh, 134px) 0 88px;
}

.eyebrow,
.label {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.7rem;
}

h1 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(4.4rem, 9.5vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.83;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.intro {
  max-width: 390px;
  margin: 42px 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  word-break: keep-all;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link span,
.detail-links span {
  color: var(--accent);
}

.profile-art {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: var(--sage);
}

.profile-art::before,
.profile-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(30, 36, 33, 0.3);
  border-radius: 50%;
}

.profile-art::before {
  width: 58%;
  height: 58%;
  left: -14%;
  bottom: -18%;
}

.profile-art::after {
  width: 25%;
  height: 25%;
  top: 9%;
  right: 11%;
}

.sun {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.orbit {
  position: absolute;
  width: 126%;
  height: 44%;
  border: 1px solid rgba(30, 36, 33, 0.35);
  border-radius: 50%;
  transform: rotate(-31deg);
}

.orbit-one {
  top: 26%;
  left: -17%;
}

.orbit-two {
  top: 39%;
  left: -13%;
  transform: rotate(23deg);
}

.initials {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--paper);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.art-label,
.art-index {
  position: absolute;
  margin: 0;
  font-size: 0.62rem;
}

.art-label {
  bottom: 24px;
  left: 25px;
}

.art-index {
  top: 24px;
  right: 25px;
}

.details {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  padding: 25px 0 40px;
  border-top: 1px solid var(--line);
}

.detail-block p:not(.label),
.detail-links a {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.8;
}

.detail-links a {
  display: flex;
  justify-content: space-between;
  max-width: 160px;
  border-bottom: 1px solid var(--line);
}

.detail-links a + a {
  margin-top: 6px;
}

.footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.58rem;
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 40px, 520px);
    padding-top: 24px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 54px;
    padding: 86px 0 68px;
  }

  h1 {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .intro {
    margin-top: 34px;
    font-size: 0.95rem;
  }

  .profile-art {
    width: 78%;
    align-self: flex-end;
  }

  .details {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .detail-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .availability {
    font-size: 0.57rem;
  }

  .profile-art {
    width: 88%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}