:root {
  --bg: #fff8ea;
  --bg-soft: #fffdf6;
  --panel: #fff3c4;
  --panel-pink: #ffddeb;
  --text: #111111;
  --muted: #5d5a52;
  --line: rgba(17, 17, 17, 0.12);
  --accent: #fbda48;
  --accent-bright: #fba600;
  --sidebar-width: 6.7rem;
  --content-max: 96rem;
  --gutter: clamp(1.1rem, 2vw, 2.2rem);
  --font-display: "Futura", "Futura PT", "Trebuchet MS", "Arial Narrow", sans-serif;
  --font-body: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-serif: "Bodoni 72", "Iowan Old Style", "Times New Roman", serif;
  --parallax-page: 0px;
  --parallax-panel: 0px;
  --parallax-panel-soft: 0px;
  --sky-top: #69b9ff;
  --sky-mid: #a8dcff;
  --sky-bottom: #e8f7ff;
  --sky-glow: rgba(255, 248, 228, 0.48);
  --sky-cloud: rgba(255, 255, 255, 0.88);
  --sky-star: rgba(255, 255, 255, 0);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fffaf1, #ffefb8 48%, #fff8ea 100%);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  max-width: var(--content-max);
  margin: 0 auto;
  align-items: start;
  column-gap: 0;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  padding: 0.8rem 0.2rem 0.8rem 0.2rem;
  border-right: 0;
  background:
    radial-gradient(circle at 68% 20%, var(--sky-glow) 0, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 20% 16%, var(--sky-star) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 12%, var(--sky-star) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 38% 26%, var(--sky-star) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 34%, var(--sky-star) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 14% 40%, var(--sky-star) 0 1.2px, transparent 2.2px),
    radial-gradient(ellipse at 26% 16%, var(--sky-cloud) 0 12%, transparent 20%),
    radial-gradient(ellipse at 74% 27%, color-mix(in srgb, var(--sky-cloud) 92%, transparent) 0 13%, transparent 22%),
    radial-gradient(ellipse at 38% 46%, color-mix(in srgb, var(--sky-cloud) 84%, transparent) 0 15%, transparent 24%),
    radial-gradient(ellipse at 78% 70%, color-mix(in srgb, var(--sky-cloud) 72%, transparent) 0 16%, transparent 26%),
    linear-gradient(180deg, var(--sky-top), var(--sky-mid) 48%, var(--sky-bottom));
  background-size:
    auto,
    220px 220px,
    280px 280px,
    240px 240px,
    260px 260px,
    200px 200px,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    cover;
  background-position:
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page)),
    center calc(50% + var(--parallax-page));
  transition: background 900ms ease;
  z-index: 1;
}

.language-switch {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 1.2rem 0.2rem;
  border: 2px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.language-switch__button {
  border: 0;
  background: transparent;
  padding: 0.42rem 0.65rem 0.38rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.language-switch__button.is-active {
  background: var(--accent);
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  position: relative;
  z-index: 5;
}

.sidebar__nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.95rem;
  width: 2.05rem;
  height: 100%;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--active-page) 36%, #fffdf6),
    color-mix(in srgb, var(--active-page) 18%, #fff8ea)
  );
  z-index: 1;
}

.sidebar__link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 7.4rem;
  width: 4.2rem;
  padding: 0.4rem 0.2rem;
  margin-left: 0.18rem;
  margin-right: auto;
  margin-top: -1rem;
  border: 2px solid rgba(17, 17, 17, 0.22);
  border-right: 0;
  border-radius: 1.8rem 0 0 1.8rem;
  background: var(--tab-color);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 140ms ease, filter 140ms ease;
  overflow: visible;
  z-index: 2;
}

.sidebar__link:nth-child(1) {
  width: 4.95rem;
}

.sidebar__link:nth-child(2) {
  width: 4.35rem;
}

.sidebar__link:nth-child(3) {
  width: 4.7rem;
}

.sidebar__link:nth-child(4) {
  width: 4.45rem;
}

.sidebar__link:nth-child(5) {
  width: 4.65rem;
}

.sidebar__link:nth-child(6) {
  width: 4.3rem;
}

.sidebar__link::before {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 0.88rem;
  height: calc(100% + 4px);
  background: inherit;
  border-top-right-radius: 0.35rem;
  border-bottom-right-radius: 0.35rem;
}

.sidebar__link::before {
  clip-path: path("M 24 0 L 12 0 C 0 0 0 10 0 22 L 0 40 C 0 52 6 58 14 60 L 24 60 Z");
}

.sidebar__link:hover,
.sidebar__link.is-active {
  transform: translateX(0.24rem);
  filter: saturate(1.02);
}

.sidebar__link.is-active {
  border-color: #111111;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 0 2px rgba(17, 17, 17, 0.08);
  z-index: 3;
}

.sidebar__index,
.sidebar__label {
  position: absolute;
  left: 50%;
  z-index: 1;
}

.sidebar__index {
  bottom: 1.2rem;
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  opacity: 0.58;
  margin-bottom: 0;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

.sidebar__label {
  top: 50%;
  max-width: none;
  font-family: var(--font-display);
  font-size: 0.74rem;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  white-space: pre-line;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  text-align: center;
}

.content {
  position: relative;
  padding: 0 var(--gutter) 5rem;
  height: 100vh;
  overflow-y: auto;
  overflow-x: visible;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0.9rem;
  scrollbar-gutter: stable;
  margin-left: -1.8rem;
  border: 2px solid rgba(17, 17, 17, 0.22);
  border-left: 0;
  border-radius: 1.8rem 2rem 2rem 1.8rem;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--active-page) 36%, #fffdf6), color-mix(in srgb, var(--active-page) 18%, #fff8ea));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  z-index: 3;
  overscroll-behavior: contain;
}

.content > .section:first-child {
  padding-top: calc(2.6rem + min(var(--parallax-panel-soft), 18px));
}

.content::before {
  content: "";
  position: absolute;
  left: -1.78rem;
  top: 0;
  bottom: 0;
  width: 1.8rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--active-page) 36%, #fffdf6), color-mix(in srgb, var(--active-page) 18%, #fff8ea));
  border-top: 2px solid rgba(17, 17, 17, 0.22);
  border-bottom: 2px solid rgba(17, 17, 17, 0.22);
  border-left: 2px solid rgba(17, 17, 17, 0.22);
  border-radius: 1.8rem 0 0 1.8rem;
  z-index: 2;
}

.section {
  padding: 2.6rem 0 3.2rem;
  min-height: calc(100vh - 1.8rem);
  border-bottom: 1px solid var(--line);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 10rem) minmax(0, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  align-items: start;
}

.section__eyebrow {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section--hero {
  min-height: calc(100vh - 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.taxonomy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.taxonomy__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.taxonomy__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.taxonomy__list li {
  font-size: 0.84rem;
  line-height: 1.4;
  text-transform: lowercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 20rem);
  gap: 1.5rem;
  align-items: end;
}

.hero__main {
  transform: translateY(calc(var(--parallax-panel-soft) * -0.18));
  will-change: transform;
}

.hero__title {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.cursor-orbit {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-tip-offset-x: -86%;
  --cursor-tip-offset-y: -40%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor-orbit.is-visible {
  opacity: 1;
}

.cursor-orbit__dot,
.cursor-orbit__ring {
  position: absolute;
  left: var(--cursor-x);
  top: var(--cursor-y);
  transform: translate(var(--cursor-tip-offset-x), var(--cursor-tip-offset-y));
}

.cursor-orbit__dot {
  display: none;
}

.cursor-orbit__ring {
  width: 3rem;
  height: 3.4rem;
  transform-origin: 86% 40%;
  background:
    url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 110'%3E%3Cpath d='M16 18 L95 44 L60 52 L42 96 Z' fill='%23ffffff' stroke='%23111111' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 18 L60 52' fill='none' stroke='%23111111' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M95 44 L60 52' fill='none' stroke='%23111111' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M60 52 L72 76' fill='none' stroke='%23111111' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M47 64 L60 52 L42 96' fill='none' stroke='%23111111' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / contain no-repeat;
  transition:
    width 180ms ease,
    height 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.cursor-orbit.is-active .cursor-orbit__ring {
  width: 3.5rem;
  height: 4rem;
  transform: translate(var(--cursor-tip-offset-x), var(--cursor-tip-offset-y)) scale(1.06) rotate(-6deg);
  filter: drop-shadow(0 8px 14px rgba(17, 17, 17, 0.16));
}

.hero__stamp {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.8rem;
  border: 2px solid #111111;
  border-radius: 999px;
  background: var(--panel-pink);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__side {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  transform: translateY(calc(var(--parallax-panel) * -0.12));
  will-change: transform;
}

.hero__lead,
.hero__note,
.intro-feature__text p,
.text-feature__body,
.project-feature__description,
.contact-feature__body {
  margin: 0;
  font-size: clamp(0.96rem, 1.15vw, 1.18rem);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.hero__jump {
  display: inline-flex;
  align-self: start;
  padding: 0.62rem 1rem;
  border: 2px solid #111111;
  border-radius: 999px;
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.85fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
  margin: 0;
}

.intro-feature__text {
  max-width: 32rem;
}

.intro-feature__text p + p {
  margin-top: 1.1rem;
}

.intro-feature__media {
  margin: 0;
}

.intro-feature__media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid #111111;
}

.intro-feature__media figcaption,
.project-feature__detail figcaption,
.archive-grid__item figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.7);
}

.text-feature {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(15rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: 0;
  align-items: start;
}

.text-feature__aside {
  margin: 0;
  padding-top: 0.45rem;
  border-top: 2px solid #111111;
  font-family: var(--font-display);
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-feature {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  align-content: start;
}

.project-feature__image-wrap {
  border: 2px solid #111111;
  background: var(--bg-soft);
}

.project-feature__image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-feature__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 22rem) auto;
  gap: 1rem;
  align-items: start;
}

.project-feature__title {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.project-feature__subline,
.project-feature__year {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.68);
}

.project-feature__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.project-feature__detail {
  margin: 0;
}

.project-feature__detail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid #111111;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.archive-grid__item {
  margin: 0;
}

.archive-grid__item img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 2px solid #111111;
}

.contact-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.8fr);
  gap: 1.4rem;
  margin: 0;
  align-items: start;
}

.contact-feature__links {
  display: grid;
  gap: 0.75rem;
}

.contact-feature__link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.62rem;
  border-top: 2px solid #111111;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.contact-feature__link strong {
  font-weight: 700;
}

@media (max-width: 980px) {
  :root {
    --sidebar-width: 100%;
    --gutter: clamp(0.9rem, 3vw, 1.4rem);
  }

  html,
  body {
    height: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .site-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(5.5rem, 10dvh) minmax(0, 90dvh);
    gap: 0.55rem;
    padding: 0.55rem;
    height: 100dvh;
    max-height: 100dvh;
    max-width: none;
  }

  .sidebar {
    position: relative;
    top: auto;
    z-index: 10;
    height: 100%;
    min-height: 0;
    padding: 0.45rem 0.55rem 0.55rem;
    border: 2px solid rgba(17, 17, 17, 0.18);
    border-radius: 1.4rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.15)),
      radial-gradient(circle at 68% 20%, var(--sky-glow) 0, rgba(255,255,255,0) 18%),
      radial-gradient(ellipse at 26% 16%, var(--sky-cloud) 0 12%, transparent 20%),
      radial-gradient(ellipse at 74% 27%, color-mix(in srgb, var(--sky-cloud) 92%, transparent) 0 13%, transparent 22%),
      linear-gradient(180deg, var(--sky-top), var(--sky-mid) 48%, var(--sky-bottom));
    box-shadow:
      0 10px 24px rgba(17, 17, 17, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .sidebar__nav {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0 0.05rem 0.05rem;
    align-items: stretch;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .sidebar__nav::after {
    display: none;
  }

  .language-switch {
    margin: 0 0 0.45rem;
    background: rgba(255, 255, 255, 0.65);
  }

  .sidebar__link,
  .sidebar__link:nth-child(2n) {
    flex: 0 0 min(9.2rem, 42vw);
    width: auto;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid rgba(17, 17, 17, 0.2);
    border-radius: 1.2rem;
    min-height: 3.9rem;
    padding: 0.55rem 0.72rem 0.5rem;
    scroll-snap-align: start;
    box-shadow: none;
    transform: none;
  }

  .sidebar__link::before {
    display: none;
  }

  .sidebar__link:hover,
  .sidebar__link.is-active {
    transform: none;
    filter: none;
  }

  .sidebar__link.is-active {
    border-color: #111111;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.22),
      0 0 0 2px rgba(17, 17, 17, 0.06);
  }

  .sidebar__index,
  .sidebar__label {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .sidebar__label {
    max-width: none;
    margin-top: 0.2rem;
    font-size: 0.76rem;
    line-height: 1.08;
    text-align: left;
    white-space: pre-line;
  }

  .content {
    height: 100%;
    margin-left: 0;
    min-height: 0;
    padding: 0 1.05rem 1.8rem;
    border-left: 2px solid rgba(17, 17, 17, 0.22);
    border-radius: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: none;
    overscroll-behavior: contain;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.24),
      0 10px 24px rgba(17, 17, 17, 0.08);
  }

  .content::before {
    display: none;
  }

  .content > .section:first-child {
    padding-top: 1.45rem;
  }

  .taxonomy,
  .hero,
  .section__header,
  .intro-feature,
  .text-feature,
  .project-feature__summary,
  .contact-feature {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    min-height: auto;
    padding: 1.8rem 0 2.2rem;
    scroll-snap-align: none;
  }

  .section--hero {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 1.45rem;
    padding-bottom: 1.4rem;
  }

  .section__header {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .section__eyebrow {
    font-size: 0.62rem;
  }

  .hero__title {
    max-width: 12ch;
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }

  .hero__main,
  .hero__side {
    transform: none;
  }

  .hero__side,
  .intro-feature__text,
  .text-feature__body,
  .contact-feature__body {
    max-width: none;
  }

  .taxonomy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.15rem;
  }

  .project-feature__summary {
    gap: 0.7rem;
  }

  .project-feature__year {
    margin: 0;
  }

  .contact-feature__link {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    grid-template-rows: minmax(5rem, 10dvh) minmax(0, 90dvh);
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .sidebar {
    padding: 0.4rem 0.45rem 0.45rem;
    border-radius: 1.2rem;
  }

  .language-switch {
    width: 100%;
    justify-content: space-between;
  }

  .language-switch__button {
    flex: 1 1 0;
    padding: 0.42rem 0.3rem 0.38rem;
  }

  .sidebar__link,
  .sidebar__link:nth-child(2n) {
    flex-basis: min(8.25rem, 52vw);
    min-height: 3.55rem;
    padding: 0.46rem 0.62rem 0.44rem;
    border-radius: 1rem;
  }

  .sidebar__index {
    font-size: 0.5rem;
  }

  .sidebar__label {
    font-size: 0.7rem;
  }

  .project-feature__details,
  .archive-grid,
  .taxonomy {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 0 0.85rem 1.5rem;
    border-radius: 1.15rem;
  }

  .content > .section:first-child {
    padding-top: 1.1rem;
  }

  .section {
    padding: 1.65rem 0 2rem;
  }

  .section__header {
    margin-bottom: 0.9rem;
  }

  .section__title {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
    max-width: none;
  }

  .hero__title {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    line-height: 0.94;
    max-width: none;
  }

  .hero__jump {
    width: 100%;
    justify-content: center;
  }

  .hero__lead,
  .hero__note,
  .intro-feature__text p,
  .text-feature__body,
  .project-feature__description,
  .contact-feature__body {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .project-feature__title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .contact-feature__link {
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-orbit {
    display: none;
  }
}
