* {
  box-sizing: border-box;
}

:root {
  --nav-reserve: 72px;
  --page-bg: #c8c8c6;
  --ink: #111315;
  --muted: rgba(17, 19, 21, 0.62);
  --paper: #efeeeb;
  --line: rgba(17, 19, 21, 0.22);
  --accent: #9f8765;
  --hero-bg: #101112;
  --hero-fg: #f4f2ef;
  --media-bg: #dedbd4;
  --caption-ink: #111315;
  --prototype-bg: #101112;
  --page-texture: none;
  --glass-fill: color-mix(in srgb, var(--paper) 72%, rgba(255,255,255,.52));
  --glass-line: color-mix(in srgb, var(--accent) 22%, rgba(255,255,255,.38));
  --glass-shadow: 0 24px 70px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.5);
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  background-image: var(--page-texture);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

.scroll-progress {
  display: none;
  position: fixed;
  left: clamp(24px, 4vw, 76px);
  right: clamp(24px, 4vw, 76px);
  top: 12px;
  z-index: 20;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  pointer-events: none;
}

.scroll-progress::before {
  content: "";
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: color-mix(in srgb, var(--accent) 78%, var(--ink));
}

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

.nav-reserve {
  height: var(--nav-reserve);
}

.product-page {
  width: 100%;
  margin: 0 0 72px;
  padding: 0 clamp(24px, 4vw, 76px);
}

.hero {
  display: grid;
  min-height: clamp(620px, calc(100vh - var(--nav-reserve) - 12px), 860px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  background: color-mix(in srgb, var(--paper) 82%, rgba(255,255,255,.34));
  box-shadow: none;
}

.hero-copy {
  display: flex;
  min-height: clamp(620px, calc(100vh - var(--nav-reserve) - 12px), 860px);
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--hero-bg) 92%, transparent), color-mix(in srgb, var(--accent) 18%, var(--hero-bg))),
    var(--hero-bg);
  color: var(--hero-fg);
  padding: clamp(28px, 3.4vw, 62px);
}

.hero-top,
.hero-midline,
.caption-row,
.prototype-top,
.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-top,
.hero-midline,
.kicker,
.feature-num,
.browser-url,
.prototype-open {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero-bottom {
  display: grid;
  gap: 22px;
}

.hero-midline {
  border-bottom: 1px solid rgba(244, 242, 239, 0.34);
  padding-bottom: 14px;
}

.kicker {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.hero-copy p {
  margin: 0;
}

.deck {
  max-width: 640px;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.42;
  color: rgba(244, 242, 239, 0.84);
}

h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(44px, 4.8vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.italic {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(100vh - var(--nav-reserve) - 12px), 860px);
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--media-bg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero-media.is-contain img {
  object-fit: contain;
  padding: clamp(14px, 2vw, 28px);
}

.prototype-open,
.chip {
  border: 1px solid currentColor;
  border-radius: 999px;
}

.caption-row {
  min-height: clamp(112px, 13vh, 156px);
  padding: clamp(24px, 3vw, 52px);
  border-top: 1px solid var(--glass-line);
  background: var(--glass-fill);
  backdrop-filter: blur(22px) saturate(1.18);
  color: var(--caption-ink);
  justify-content: flex-start;
}

.caption-row h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(20px, 1.9vw, 36px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.project-title {
  position: relative;
  min-height: clamp(420px, 56vh, 720px);
  margin-top: 0;
  border: 0;
  padding: clamp(28px, 3vw, 56px) 0 clamp(54px, 7vw, 116px);
  overflow: visible;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(34px, 4vw, 72px);
  isolation: isolate;
}

.project-title::before {
  content: "";
  position: absolute;
  inset: 0 -7vw auto -7vw;
  z-index: 0;
  height: 86%;
  background:
    radial-gradient(circle at 64% 40%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(255,255,255,.34), transparent 34%);
  pointer-events: none;
}

.project-title::after {
  content: "PRODUCT";
  position: absolute;
  left: -0.04em;
  bottom: clamp(8px, 3vw, 48px);
  z-index: 0;
  color: color-mix(in srgb, var(--accent) 13%, transparent);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(116px, 18vw, 310px);
  font-style: italic;
  font-weight: 500;
  line-height: .76;
  pointer-events: none;
}

.title-meta {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 50%, rgba(255,255,255,.42));
  backdrop-filter: blur(18px) saturate(1.16);
  color: var(--muted);
  font-size: 13px;
}

.project-title h2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(18px, 2.4vw, 42px);
  margin: 0;
  width: fit-content;
  max-width: 100%;
  color: var(--accent);
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}

.title-en {
  display: grid;
  gap: .04em;
  color: var(--accent);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(112px, 14.2vw, 238px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: 0;
  text-shadow:
    .018em .018em 0 color-mix(in srgb, var(--accent) 16%, transparent),
    0 .08em .18em color-mix(in srgb, var(--ink) 12%, transparent);
}

.title-en span {
  display: block;
  transform: scaleX(.82);
  transform-origin: left center;
}

.project-title em {
  display: block;
  flex: 0 0 auto;
  margin: 0 0 .2em max(-6vw, -82px);
  color: var(--ink);
  font-family: Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(24px, 2.7vw, 48px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: none;
  text-shadow: none;
}

.section {
  margin-top: clamp(44px, 5vw, 82px);
  padding: clamp(32px, 4vw, 68px) 0 0;
  border-top: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(160px, 18vw) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 72px);
  margin-bottom: clamp(36px, 5vw, 76px);
}

.section-label {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 48%, rgba(255,255,255,.42));
  backdrop-filter: blur(18px) saturate(1.16);
  font-size: 13px;
  color: var(--muted);
}

.section h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(30px, 3.3vw, 58px);
  font-weight: 400;
  line-height: 1.16;
}

.overview {
  display: grid;
  gap: clamp(48px, 7vw, 120px);
}

.overview p,
.feature-text p {
  margin: 0;
  font-size: clamp(17px, 1.25vw, 23px);
  line-height: 1.75;
  color: var(--muted);
}

.narrative {
  counter-reset: narrative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 4vw, 64px) clamp(34px, 4vw, 58px);
}

.narrative article {
  position: relative;
  counter-increment: narrative;
  min-height: clamp(230px, 22vw, 330px);
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.46), rgba(255,255,255,.08)),
    var(--glass-fill);
  box-shadow: var(--glass-shadow);
  padding: clamp(22px, 2.4vw, 34px);
  backdrop-filter: blur(24px) saturate(1.2);
}

.narrative article::before {
  content: "0" counter(narrative);
  position: absolute;
  right: clamp(18px, 2vw, 30px);
  top: clamp(12px, 1.6vw, 24px);
  color: color-mix(in srgb, var(--accent) 26%, transparent);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(48px, 5vw, 92px);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.narrative article::after,
.feature::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.3), transparent 38%);
  pointer-events: none;
}

.narrative h3 {
  position: relative;
  margin: 0 0 22px;
  max-width: 9em;
  color: var(--accent);
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 700;
}

.narrative p {
  position: relative;
  max-width: 46em;
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.78;
}

.story-shots {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(26px, 4vw, 56px);
}

.story-shot {
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.story-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.story-reveal {
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.2,.8,.2,1),
    filter .72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-scroll-story .story-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
}

.has-scroll-story .story-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.has-scroll-story .hero-media.story-reveal,
.has-scroll-story .test-shot.story-reveal {
  transform: translateY(28px) scale(.985);
}

.has-scroll-story .hero-media.story-reveal.is-visible,
.has-scroll-story .test-shot.story-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.story-shot.is-tall img {
  aspect-ratio: 4 / 5;
}

.test-showcase {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(72px, 9vw, 140px);
  margin-top: clamp(56px, 7vw, 110px);
}

.test-case {
  display: grid;
  grid-template-columns: minmax(420px, 0.56fr) minmax(0, 0.44fr);
  gap: clamp(42px, 7vw, 128px);
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
}

.test-case:nth-child(even) {
  grid-template-columns: minmax(0, 0.44fr) minmax(420px, 0.56fr);
}

.test-case:nth-child(even) .test-shot {
  order: 2;
}

.test-shot {
  border: 0;
  background: transparent;
  padding: 0;
}

.test-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  border: 0;
  background: transparent;
  padding: 0;
}

.test-copy {
  display: grid;
  align-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  padding: 0;
}

.test-copy small {
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 42%, rgba(255,255,255,.36));
  backdrop-filter: blur(16px) saturate(1.14);
  color: var(--accent);
  font-size: 13px;
}

.test-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 650;
  line-height: 1.12;
}

.test-copy p {
  margin: 0;
  max-width: 44em;
  color: var(--muted);
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.82;
}

.archive-detail-showcase {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(56px, 7vw, 112px);
  margin-top: clamp(56px, 7vw, 110px);
}

.archive-detail {
  display: grid;
  grid-template-columns: minmax(420px, .48fr) minmax(0, .52fr);
  min-height: clamp(560px, 68vh, 760px);
  border-top: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  background:
    radial-gradient(color-mix(in srgb, var(--ink) 12%, transparent) 1px, transparent 1px) 0 0 / 14px 14px,
    color-mix(in srgb, var(--paper) 78%, rgba(255,255,255,.5));
  overflow: hidden;
}

.archive-detail-media {
  position: relative;
  min-height: 100%;
  background: #101010;
  overflow: hidden;
}

.archive-detail-id {
  position: absolute;
  left: 24px;
  top: 18px;
  z-index: 2;
  color: rgba(255,255,255,.82);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.archive-detail-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 68vh, 760px);
  object-fit: cover;
}

.archive-thumbs {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.archive-thumbs img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.86);
}

.archive-detail-info {
  display: grid;
  align-content: center;
  gap: clamp(12px, 1.4vw, 20px);
  padding: clamp(34px, 5vw, 80px);
}

.archive-detail-info small,
.archive-detail-section h4 {
  color: color-mix(in srgb, var(--ink) 38%, transparent);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-detail-info h3 {
  margin: 0;
  color: var(--detail-accent, var(--accent));
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 900;
  line-height: .82;
  text-transform: uppercase;
}

.archive-detail-cn {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 650;
}

.archive-detail-info p {
  margin: 0;
  max-width: 56em;
  color: var(--muted);
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.82;
}

.archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-tags span {
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: 6px;
  background: rgba(255,255,255,.42);
  padding: 6px 10px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 13px;
}

.archive-detail-section {
  display: grid;
  gap: 10px;
  padding-top: clamp(16px, 2vw, 28px);
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.archive-colors {
  display: flex;
  gap: 14px;
}

.archive-colors span {
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 7px;
  background: var(--swatch);
}

.test-shot.is-phone {
  display: flex;
  justify-content: center;
}

.test-shot.is-phone img {
  width: min(360px, 100%);
  aspect-ratio: 390 / 844;
  border-radius: 28px;
  object-fit: cover;
}

.stage-points {
  display: grid;
  gap: 10px;
  margin: 0;
}

.stage-points div {
  border: 1px solid var(--glass-line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--paper) 48%, rgba(255,255,255,.36));
  padding: 13px 15px;
  backdrop-filter: blur(18px) saturate(1.12);
}

.stage-points dt {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.stage-points dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.72;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  border-top: 0;
  color: var(--ink);
}

.feature {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 0;
  border: 1px solid var(--glass-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.5), rgba(255,255,255,.08)),
    var(--glass-fill);
  box-shadow: var(--glass-shadow);
  padding: clamp(22px, 2.6vw, 38px);
  backdrop-filter: blur(24px) saturate(1.18);
}

.feature-num {
  display: block;
  margin-bottom: clamp(18px, 2vw, 34px);
  color: color-mix(in srgb, var(--accent) 72%, var(--ink));
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(44px, 4.4vw, 86px);
  font-style: italic;
  font-weight: 500;
  line-height: .78;
  letter-spacing: 0;
}

.feature-text h3 {
  margin: 0 0 clamp(18px, 2vw, 30px);
  color: var(--ink);
  font-size: clamp(17px, 1.18vw, 23px);
  font-weight: 600;
  line-height: 1.12;
}

.feature-text p {
  max-width: 42em;
  color: var(--muted);
  font-size: clamp(12px, .82vw, 15px);
  line-height: 1.62;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 8px 13px;
  background: color-mix(in srgb, var(--paper) 42%, rgba(255,255,255,.36));
  backdrop-filter: blur(16px) saturate(1.12);
  color: var(--muted);
  font-size: 13px;
}

.prototype {
  margin-top: 54px;
  border: 1px solid rgba(244, 242, 239, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--prototype-bg) 88%, transparent), color-mix(in srgb, var(--accent) 22%, var(--prototype-bg))),
    var(--prototype-bg);
  box-shadow: 0 34px 90px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(28px) saturate(1.16);
  color: #f4f2ef;
  padding: clamp(18px, 2.2vw, 36px);
}

.prototype-top {
  margin-bottom: 18px;
}

.prototype-top h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
}

.preview-switch {
  display: inline-flex;
  gap: 2px;
  border: 1px solid rgba(244, 242, 239, 0.26);
  border-radius: 999px;
  padding: 3px;
  background: rgba(244,242,239,.08);
  backdrop-filter: blur(18px) saturate(1.14);
}

.preview-mode {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 242, 239, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 7px 12px;
}

.preview-mode.is-active {
  background: rgba(244, 242, 239, 0.88);
  color: #111315;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 22px rgba(0,0,0,.16);
}

.prototype-open {
  background: rgba(244,242,239,.08);
  backdrop-filter: blur(18px) saturate(1.14);
  padding: 8px 14px;
  color: #f4f2ef;
}

.browser-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(244, 242, 239, 0.24);
  border-radius: 22px;
  background: rgba(231,231,228,.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,.5);
}

.browser-bar {
  min-height: 42px;
  border-bottom: 1px solid rgba(17, 19, 21, 0.18);
  padding: 0 14px;
  color: rgba(17, 19, 21, 0.62);
  background: rgba(244,244,241,.72);
  backdrop-filter: blur(18px) saturate(1.12);
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(17, 19, 21, 0.28);
}

iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 560px;
  border: 0;
  background: #fff;
}

.prototype.is-portrait .prototype-top {
  max-width: 520px;
  margin-inline: auto;
}

.prototype.is-portrait .browser-frame {
  width: min(390px, 100%);
  border: 10px solid rgba(244, 242, 239, 0.16);
  border-radius: 34px;
  background: #111;
}

.prototype.is-portrait .browser-bar {
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 16px;
  color: rgba(244, 242, 239, 0.62);
  background: #151515;
}

.prototype.is-portrait .dots span {
  width: 6px;
  height: 6px;
  background: rgba(244, 242, 239, 0.42);
}

.prototype.is-portrait iframe {
  height: min(82vh, 760px);
  min-height: 620px;
}

@media (max-width: 860px) {
  :root {
    --nav-reserve: 64px;
  }

  .product-page {
    padding: 0 12px;
  }

  .scroll-progress {
    left: 12px;
    right: 12px;
  }

  .hero,
  .overview,
  .section-head,
  .story-shots,
  .test-case,
  .test-case:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .test-case:nth-child(even) .test-shot {
    order: 0;
  }

  .hero-copy,
  .hero-media,
  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 520px;
  }

  h1 {
    max-width: 7.4em;
    font-size: clamp(34px, 9.8vw, 44px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-media img {
    min-height: 320px;
  }

  .caption-row,
  .prototype-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .narrative {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 20px;
  }

  .section-label {
    justify-self: start;
  }

  .section h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .narrative article,
  .feature {
    border-radius: 20px;
  }

  .feature {
    min-height: auto;
    gap: 8px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .archive-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .archive-detail-media > img {
    min-height: 360px;
  }

  .archive-detail-info {
    padding: 28px 20px 34px;
  }

  .archive-detail-info h3 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .project-title {
    min-height: clamp(280px, 38vh, 420px);
    padding-top: 10px;
    gap: 40px;
  }

  .project-title h2 {
    gap: 14px;
    max-width: 100%;
  }

  .title-en {
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 0.88;
  }

  .project-title em {
    font-size: clamp(16px, 4vw, 22px);
  }

  iframe {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-reveal {
    transition: none;
  }

  .has-scroll-story .story-reveal,
  .has-scroll-story .hero-media.story-reveal,
  .has-scroll-story .test-shot.story-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
