@font-face {
  font-family: "Spec";
  src: url("fonts/spec-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #171812;
  --ink-soft: #33362d;
  --paper: #e9e2d5;
  --paper-2: #ded4c3;
  --paper-light: #f1ede5;
  --muted: #67685f;
  --tide: #9bb8c4;
  --forest: #123d3b;
  --rust: #c24b2c;
  --rust-deep: #94351f;
  --line: color-mix(in oklab, var(--ink) 18%, transparent);
  --line-light: color-mix(in oklab, var(--paper-light) 26%, transparent);
  --display: "Spec", "Songti SC", "STSong", "SimSun", serif;
  --body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC",
    "Arial Narrow", Arial, sans-serif;
  --max: 1440px;
  --page: min(100% - 40px, var(--max));
  --section: clamp(88px, 10vw, 156px);
  --header-height: 88px;
  --radius: 2px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --decisive: cubic-bezier(0.7, 0, 0.3, 1);
  --z-header: 50;
  --z-menu: 100;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.1rem);
  font-feature-settings: "kern" 1, "liga" 1;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  hanging-punctuation: first last;
  orphans: 3;
  text-wrap: pretty;
  widows: 3;
}

::selection {
  background: var(--tide);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

.shell {
  width: var(--page);
  margin-inline: auto;
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--paper-light);
  color: var(--ink);
  border: 1px solid var(--ink);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding-block: var(--section);
}

.section-marker,
.eyebrow,
.product-type,
.footer-label,
.journey-date {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-marker {
  margin-bottom: 32px;
  color: var(--muted);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: end;
}

.section-intro {
  margin-bottom: clamp(64px, 8vw, 112px);
}

.section-intro h2,
.director h2,
.craft h2,
.footer-title h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.lede {
  max-width: 34rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.5vw, 1.6rem);
  line-height: 1.48;
}

.lede p + p,
.reading-column p + p,
.director-body p + p {
  margin-top: 1.25em;
}

.reading-column {
  max-width: 65ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background-color 250ms var(--ease),
    color 250ms var(--ease),
    transform 250ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  color: var(--paper-light);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--paper-light);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-light);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--forest);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 44px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 250ms var(--ease),
    gap 250ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  gap: 36px;
  color: var(--rust-deep);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: var(--tide);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 8px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--paper-light);
  border-bottom: 1px solid transparent;
  transition:
    min-height 300ms var(--ease),
    background-color 300ms var(--ease),
    color 300ms var(--ease),
    border-color 300ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 70px;
  background: color-mix(in oklab, var(--paper-light) 96%, transparent);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 144px;
  min-height: 44px;
}

.brand img {
  width: 144px;
  height: auto;
  filter: brightness(0) invert(1);
  transition:
    width 300ms var(--ease),
    filter 300ms var(--ease);
}

.site-header.is-scrolled .brand img {
  width: 120px;
  filter: brightness(0);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 40px);
  min-width: 0;
}

.desktop-nav a,
.header-cta,
.menu-trigger {
  min-height: 44px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--decisive);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-inline: 18px;
  border: 1px solid color-mix(in oklab, currentColor 42%, transparent);
  transition:
    background-color 250ms var(--ease),
    color 250ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--paper-light);
  color: var(--ink);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible {
  background: var(--ink);
  color: var(--paper-light);
}

.menu-trigger {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-icon {
  position: relative;
  width: 26px;
  height: 12px;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-icon::before {
  top: 1px;
}

.menu-icon::after {
  bottom: 1px;
  width: 68%;
}

.mobile-menu {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  background: var(--ink);
  color: var(--paper-light);
  border: 0;
}

.mobile-menu::backdrop {
  background: var(--ink);
}

.mobile-menu[open] {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu-head p,
.menu-close {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.menu-close {
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
}

.mobile-menu nav {
  display: grid;
  align-content: center;
  padding: 32px 20px;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  min-height: 66px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 3rem);
  line-height: 1.1;
}

.mobile-menu nav a span {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  margin: 20px;
  padding-inline: 18px;
  border: 1px solid var(--line-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink) url("images/home-hero-poster.webp") center / cover no-repeat;
  color: var(--paper-light);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, color-mix(in oklab, var(--ink) 92%, transparent) 0%, transparent 68%),
    linear-gradient(0deg, color-mix(in oklab, var(--ink) 75%, transparent) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: clamp(28px, 5vh, 60px);
}

.hero .eyebrow {
  margin-bottom: clamp(24px, 3vh, 44px);
  color: color-mix(in oklab, var(--paper-light) 90%, transparent);
}

.hero h1 {
  max-width: 11em;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 8vw, 128px);
  max-width: 1120px;
  margin-top: clamp(28px, 4vh, 56px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--line-light);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 64px);
}

.hero-subtitle {
  font-family: var(--display);
  font-size: 1.1rem;
}

.hero-copy > p:last-child {
  max-width: 33rem;
  color: color-mix(in oklab, var(--paper-light) 82%, transparent);
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hero-wechat {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-width: 260px;
  color: var(--paper-light);
}

.hero-wechat img {
  display: block;
  width: 96px;
  height: auto;
  padding: 4px;
  background: #fff;
}

.hero-wechat span {
  display: grid;
  gap: 3px;
}

.hero-wechat strong {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-wechat small {
  color: color-mix(in oklab, var(--paper-light) 65%, transparent);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.hero-wechat:hover img,
.hero-wechat:focus-visible img {
  outline: 2px solid var(--tide);
  outline-offset: 3px;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 940px;
  margin-top: clamp(26px, 4vh, 48px);
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.hero-rail p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-inline: 22px;
  border-right: 1px solid var(--line-light);
}

.hero-rail p:first-child {
  padding-left: 0;
}

.hero-rail p:last-child {
  border-right: 0;
}

.hero-rail span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.hero-rail strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
}

.video-toggle {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  background: color-mix(in oklab, var(--ink) 76%, transparent);
  color: var(--paper-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.video-toggle-icon {
  width: 9px;
  height: 11px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.video-toggle[aria-pressed="true"] .video-toggle-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

/* Heritage */
.heritage {
  background: var(--paper);
}

.heritage-figure {
  margin-bottom: clamp(72px, 9vw, 128px);
}

.parallax-frame {
  position: relative;
  overflow: hidden;
}

.heritage-figure .parallax-frame {
  aspect-ratio: 16 / 7;
}

.parallax-frame img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translate3d(0, -5%, 0) scale(1.03);
}

.heritage-figure img {
  object-position: center 58%;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.heritage-copy {
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 128px);
}

.pull-quote {
  font-family: var(--display);
  font-size: clamp(2rem, 3.7vw, 4.3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-block: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid > div {
  display: flex;
  min-width: 0;
  min-height: 140px;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: clamp(16px, 2vw, 32px);
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-grid dt {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.proof-grid dt span {
  margin-left: 4px;
  font-family: var(--body);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.proof-grid dd {
  max-width: 16rem;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.proof-emblem dt {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.proof-logo dt {
  height: 90px;
}

.proof-logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.image-interlude {
  position: relative;
  min-height: min(84svh, 900px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
}

.image-interlude > .parallax-frame {
  position: absolute;
  inset: 0;
}

.image-interlude > .parallax-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in oklab, var(--ink) 72%, transparent), transparent 70%);
  content: "";
}

.image-interlude img {
  object-position: center;
}

.image-interlude-copy {
  position: absolute;
  right: 0;
  bottom: clamp(36px, 7vw, 88px);
  left: 0;
}

.image-interlude-copy p {
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.image-interlude blockquote {
  max-width: 14em;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5.7rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

/* Director */
.director {
  background: var(--paper-light);
}

.director-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.director-portrait {
  position: sticky;
  top: 104px;
}

.director-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.03);
}

.director-content {
  padding-top: clamp(24px, 4vw, 64px);
}

.director h2 {
  font-size: clamp(4rem, 7.6vw, 8.2rem);
}

.role {
  margin-block: 34px clamp(44px, 6vw, 78px);
  padding-block: 18px;
  color: var(--forest);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.director-body {
  margin-bottom: 44px;
}

/* Collection */
.collection {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 88px) clamp(24px, 4vw, 56px);
}

.product-card {
  min-width: 0;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  background: var(--paper-2);
}

.product-visual-tide {
  background: color-mix(in oklab, var(--tide) 64%, var(--paper-light));
}

.product-visual-forest {
  background: color-mix(in oklab, var(--forest) 76%, var(--paper-light));
}

.product-visual-rust {
  background: color-mix(in oklab, var(--rust-deep) 68%, var(--paper-light));
}

.product-visual img {
  width: auto;
  height: 82%;
  object-fit: contain;
  transition: transform 700ms var(--ease);
}

.product-card:hover .product-visual img {
  transform: scale(1.025);
}

.product-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.product-visual-forest .product-index,
.product-visual-rust .product-index {
  color: var(--paper-light);
}

.product-content {
  padding-top: 24px;
}

.product-type {
  margin-bottom: 12px;
  color: var(--muted);
}

.product-content h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.product-content h3 span {
  font-family: var(--body);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.product-content > p:not(.product-type, .price) {
  max-width: 56ch;
  margin-block: 22px;
}

.product-content dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
}

.product-content dl div {
  min-width: 0;
  padding: 14px 14px 14px 0;
  border-right: 1px solid var(--line);
}

.product-content dl div + div {
  padding-left: 14px;
  border-right: 0;
}

.product-content dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.product-content dd {
  font-family: var(--display);
  font-size: 1.05rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.price > span {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.price small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.78rem;
}

.price-note {
  max-width: 64rem;
  margin-top: 54px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
}

/* Craft */
.craft {
  background: var(--ink);
  color: var(--paper-light);
}

.craft .section-marker {
  color: color-mix(in oklab, var(--paper-light) 62%, transparent);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 144px);
}

.craft-rail {
  position: sticky;
  top: 104px;
  align-self: start;
}

.craft-rail > p:last-child {
  max-width: 35rem;
  margin-top: 42px;
  color: color-mix(in oklab, var(--paper-light) 76%, transparent);
}

.technology-list {
  border-top: 1px solid var(--line-light);
}

.technology-item {
  display: grid;
  grid-template-columns: 44px minmax(100px, 0.42fr) minmax(130px, 0.7fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: baseline;
  padding-block: 30px;
  border-bottom: 1px solid var(--line-light);
}

.technology-item > p:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.technology-item h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.technology-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
}

.technology-item > p:last-child {
  color: color-mix(in oklab, var(--paper-light) 70%, transparent);
  font-size: 0.9rem;
}

.craft-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 0.72fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(80px, 10vw, 156px);
}

.craft-mosaic figure {
  min-height: 0;
  overflow: hidden;
}

.craft-mosaic .craft-main {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

.craft-mosaic figure:not(.craft-main) {
  aspect-ratio: 3 / 2;
}

.craft-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
  transition: transform 800ms var(--ease);
}

.craft-mosaic figure:hover img {
  transform: scale(1.025);
}

.process {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(64px, 9vw, 144px);
  margin-top: clamp(88px, 10vw, 156px);
}

.process-heading h3 {
  max-width: 9em;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  display: grid;
  grid-template-columns: 150px 110px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding-block: 26px;
  border-bottom: 1px solid var(--line-light);
}

.process-list span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.process-list h4 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.process-list p {
  color: color-mix(in oklab, var(--paper-light) 70%, transparent);
}

/* China */
.china {
  background: var(--paper-light);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(88px, 10vw, 156px);
}

.journey-card {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 56px);
  background: var(--tide);
}

.journey-card-dark {
  background: var(--forest);
  color: var(--paper-light);
}

.journey-date {
  margin-bottom: auto;
}

.journey-card h3 {
  margin-block: 56px 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.journey-card > p:not(.journey-date, .journey-status) {
  max-width: 37rem;
}

.journey-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 32px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 25%, transparent);
  list-style: none;
}

.journey-card li {
  min-width: 0;
  padding-inline: 14px;
  border-right: 1px solid color-mix(in oklab, var(--ink) 25%, transparent);
  font-size: 0.76rem;
}

.journey-card li:first-child {
  padding-left: 0;
}

.journey-card li:last-child {
  padding-right: 0;
  border-right: 0;
}

.journey-status {
  margin-top: 28px;
  padding-top: 18px;
  color: color-mix(in oklab, var(--paper-light) 66%, transparent);
  border-top: 1px solid var(--line-light);
  font-size: 0.75rem;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 144px);
  padding-top: clamp(72px, 8vw, 112px);
  border-top: 1px solid var(--line);
}

.appointment-copy h3 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.appointment-copy > p:last-child {
  max-width: 34rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 24px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--rust-deep);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-bottom-color: var(--rust-deep);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.form-footer p {
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.5em;
  color: var(--forest);
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  padding-top: var(--section);
  background: var(--ink);
  color: var(--paper-light);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(48px, 7vw, 112px);
}

.footer-title .section-marker {
  color: color-mix(in oklab, var(--paper-light) 58%, transparent);
}

.footer-title p:last-child {
  margin-top: 12px;
  color: color-mix(in oklab, var(--paper-light) 62%, transparent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.footer-label {
  margin-bottom: 16px;
  color: color-mix(in oklab, var(--paper-light) 58%, transparent);
}

.footer-contact address {
  font-style: normal;
}

.footer-contact a {
  display: block;
  width: fit-content;
  min-height: 34px;
  transition: color 200ms var(--ease);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--tide);
}

.wechat-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.wechat-card small {
  display: block;
  margin-top: 12px;
  color: color-mix(in oklab, var(--paper-light) 52%, transparent);
  font-size: 0.68rem;
}

.wechat-qr-link {
  display: block;
  width: 148px;
  padding: 6px;
  background: #fff;
  transition: transform 240ms var(--ease), outline-color 240ms var(--ease);
}

.wechat-qr-link:hover,
.wechat-qr-link:focus-visible {
  outline: 2px solid var(--tide);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.wechat-qr-image {
  display: block;
  width: 100%;
  height: auto;
}

.footer-cta {
  margin-top: clamp(72px, 9vw, 128px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 5.2rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.footer-cta a span:last-child {
  transition: transform 250ms var(--ease);
}

.footer-cta a:hover span:last-child,
.footer-cta a:focus-visible span:last-child {
  transform: translate3d(5px, 5px, 0);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  min-height: 116px;
  color: color-mix(in oklab, var(--paper-light) 56%, transparent);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.footer-brands {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brands img {
  object-fit: contain;
}

.footer-addiction-logo {
  width: 100px;
  filter: brightness(0) invert(1);
}

.footer-shapers-logo {
  width: 90px;
  height: 42px;
  filter: brightness(0) invert(1);
}

.noscript-notice {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--paper-light);
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 0.78rem;
}

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  letter-spacing: 0.018em;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease),
    letter-spacing 600ms var(--ease);
}

.js .reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.js .reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.js .reveal[data-delay="3"] {
  transition-delay: 240ms;
}

.js .reveal.is-visible {
  opacity: 1;
  letter-spacing: inherit;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 150px minmax(0, 1fr) auto;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-actions {
    align-items: center;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid > div {
    min-height: 170px;
    margin-top: -1px;
    padding-block: 24px;
    border-top: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(3) {
    border-right: 0;
  }

  .footer-top {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  }

  .wechat-card {
    grid-column: 1 / -1;
    max-width: 540px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    right: 0;
    left: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    width: auto;
    min-height: var(--header-height);
    padding-inline: 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-trigger {
    display: inline-flex;
  }

  .editorial-grid,
  .director-grid,
  .craft-grid,
  .process,
  .appointment {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 42px;
  }

  .director-portrait,
  .craft-rail {
    position: relative;
    top: auto;
  }

  .director-portrait {
    max-width: 680px;
  }

  .director-content {
    padding-top: 0;
  }

  .craft-rail {
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line-light);
  }

  .technology-item {
    grid-template-columns: 44px 130px minmax(0, 1fr);
  }

  .technology-item h4 {
    grid-column: 2;
  }

  .technology-item > p:last-child {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .process {
    gap: 54px;
  }

  .appointment {
    gap: 58px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, var(--max));
    --section: 88px;
  }

  body {
    line-height: 1.62;
  }

  .section-marker {
    margin-bottom: 24px;
  }

  .section-intro h2,
  .director h2,
  .craft h2,
  .footer-title h2 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 24px;
  }

  .hero h1 {
    max-width: 8em;
    font-size: clamp(3.05rem, 14vw, 5.2rem);
    line-height: 0.97;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, color-mix(in oklab, var(--ink) 89%, transparent) 0%, transparent 78%),
      linear-gradient(90deg, color-mix(in oklab, var(--ink) 56%, transparent), transparent);
  }

  .hero-lower {
    margin-top: 26px;
    padding-top: 18px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy > p:last-child {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-rail {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding-top: 0;
  }

  .hero-rail p {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 7px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-rail p:last-child {
    border-bottom: 0;
  }

  .video-toggle {
    display: none;
  }

  .heritage-figure .parallax-frame {
    aspect-ratio: 4 / 5;
  }

  .heritage-figure img {
    object-position: 52% center;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 0;
  }

  .proof-grid > div {
    min-height: 156px;
    padding: 22px 18px;
  }

  .proof-grid > div:first-child {
    padding-left: 18px;
  }

  .proof-grid > div:nth-child(even) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .proof-grid > div:last-child {
    padding-right: 18px;
    border-right: 1px solid var(--line);
  }

  .proof-grid dt {
    font-size: 2.6rem;
  }

  .image-interlude {
    min-height: 72svh;
  }

  .image-interlude blockquote {
    max-width: 9em;
  }

  .director-grid {
    gap: 58px;
  }

  .director h2 {
    font-size: clamp(3.7rem, 18vw, 6.8rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .product-visual {
    aspect-ratio: 4 / 5;
  }

  .product-content h3 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .craft-grid {
    gap: 44px;
  }

  .technology-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 16px;
  }

  .technology-item h3,
  .technology-item h4,
  .technology-item > p:last-child {
    grid-column: 2;
    grid-row: auto;
  }

  .technology-item h4 {
    margin-top: -6px;
  }

  .technology-item > p:last-child {
    margin-top: 8px;
  }

  .craft-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .craft-mosaic .craft-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .craft-mosaic figure:not(.craft-main) {
    aspect-ratio: 1;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 500px;
  }

  .journey-card ul {
    grid-template-columns: 1fr;
  }

  .journey-card li {
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid color-mix(in oklab, var(--ink) 20%, transparent);
  }

  .journey-card li:last-child {
    border-bottom: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .wechat-card {
    grid-column: auto;
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .wechat-qr-link {
    width: 128px;
  }

  .footer-cta a {
    min-height: 124px;
    font-size: clamp(2rem, 10vw, 3.6rem);
  }
}

@media (max-width: 420px) {
  .brand,
  .brand img {
    width: 110px;
  }

  .site-header.is-scrolled .brand img {
    width: 100px;
  }

  .hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.6vw, 3.7rem);
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:nth-child(3),
  .proof-grid > div:last-child {
    border-right: 0;
  }

  .product-content dl {
    grid-template-columns: 1fr;
  }

  .product-content dl div,
  .product-content dl div + div {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price {
    flex-wrap: wrap;
  }

  .wechat-card {
    grid-template-columns: 1fr;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-visual img,
  .craft-mosaic figure:hover img {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    letter-spacing: inherit;
    transform: none;
  }

  .parallax-frame img,
  .product-card:hover .product-visual img,
  .craft-mosaic figure:hover img {
    transform: none !important;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .video-toggle,
  .hero-media,
  .hero-shade,
  .contact-form,
  .footer-cta {
    display: none !important;
  }

  body,
  .hero,
  .craft,
  .site-footer {
    background: white !important;
    color: black !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-block: 60px;
  }

  .section {
    padding-block: 60px;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
