:root {
  --black: #080806;
  --black-soft: #11100d;
  --ink: #191711;
  --ivory: #ece6d9;
  --ivory-soft: #d6cebd;
  --stone: #c9bea9;
  --gold: #b99a64;
  --gold-light: #d6ba84;
  --ruby: #7a1722;
  --line-dark: rgba(236, 230, 217, 0.16);
  --line-light: rgba(25, 23, 17, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Noto Sans SC", Arial, sans-serif;
  --cn-serif: "Noto Serif SC", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
}

body.lang-zh {
  font-family: "Noto Sans SC", var(--sans);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.scrolled {
  border-color: var(--line-dark);
  background: rgba(8, 8, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 1;
}

.brand-word {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.29em;
}

.brand-mark {
  width: 5px;
  height: 5px;
  margin: 0 12px 0 3px;
  border-radius: 50%;
  background: var(--ruby);
  box-shadow: 0 0 0 3px rgba(122, 23, 34, 0.2);
}

.brand-cn {
  color: var(--gold-light);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.brand-cn:empty {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(236, 230, 217, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.language-toggle {
  transition: color 180ms ease;
}

.site-nav a:hover,
.header-cta:hover,
.language-toggle:hover {
  color: var(--gold-light);
}

.site-nav .nav-active {
  color: var(--gold-light);
}

.header-tools {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: rgba(236, 230, 217, 0.72);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.lang-next {
  color: var(--gold-light);
  font-family: "Noto Sans SC", sans-serif;
}

.lang-line {
  width: 16px;
  height: 1px;
  background: rgba(236, 230, 217, 0.35);
}

.header-cta {
  color: var(--ivory);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-cta span:last-child {
  margin-left: 6px;
  color: var(--gold);
  font-size: 15px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.94) 0%, rgba(8, 8, 6, 0.74) 28%, rgba(8, 8, 6, 0.08) 68%, rgba(8, 8, 6, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 8, 6, 0.55), transparent 31%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 90vw);
  margin-left: 7vw;
  padding-top: 40px;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 8.5vw, 138px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

h2 {
  font-size: clamp(57px, 6vw, 94px);
}

h1 em,
h2 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.lang-zh h1,
.lang-zh h2 {
  font-family: var(--cn-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.14;
}

.lang-zh h1 em,
.lang-zh h2 em {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.lang-zh .hero h1 {
  font-size: clamp(64px, 6.2vw, 94px);
}

.lang-zh .hero-description,
.lang-zh .manifesto-copy,
.lang-zh .signature-description,
.lang-zh .intelligence-copy,
.lang-zh .journal-copy,
.lang-zh .waitlist-copy,
.lang-zh .boutique-hero > p,
.lang-zh .shop-card-copy > p,
.lang-zh .plus-panel-copy {
  line-height: 2;
  letter-spacing: 0.085em;
}

.hero h1 {
  max-width: 690px;
  margin-top: 26px;
}

.hero h1 em {
  margin: 12px 0 0 74px;
}

.hero-description {
  max-width: 530px;
  margin: 34px 0 0;
  color: rgba(236, 230, 217, 0.7);
  font-size: 14px;
  letter-spacing: 0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.button-light {
  color: var(--black);
  background: var(--ivory);
}

.button-light:hover {
  color: var(--ivory);
  background: transparent;
}

.editorial-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(236, 230, 217, 0.76);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-link i {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.editorial-link:hover i {
  transform: translate(3px, 3px);
}

.hero-meta {
  position: absolute;
  right: 5vw;
  bottom: 37px;
  z-index: 2;
  display: flex;
  gap: 28px;
  color: rgba(236, 230, 217, 0.54);
  font-size: 9px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.hero-meta p {
  margin: 0;
}

.hero-meta b {
  margin-left: 9px;
  color: var(--ivory);
  font-weight: 500;
}

.scroll-cue {
  position: absolute;
  bottom: 37px;
  left: 7vw;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(236, 230, 217, 0.55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 37px;
  height: 1px;
  background: var(--gold);
}

.section-light,
.section-dark {
  padding: 126px 7vw;
}

.section-light {
  color: var(--ink);
  background: var(--ivory);
}

.section-dark {
  color: var(--ivory);
  background: var(--black-soft);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.58fr 1.15fr 0.78fr;
  gap: 5vw;
  align-items: start;
  margin-top: 72px;
}

.manifesto h2 {
  font-size: clamp(53px, 5.4vw, 83px);
}

.manifesto-copy,
.journal-copy {
  color: rgba(25, 23, 17, 0.68);
  font-size: 14px;
}

.manifesto-copy p,
.journal-copy p {
  margin: 0 0 22px;
}

.collection-heading {
  display: grid;
  grid-template-columns: 0.57fr 1.2fr 0.72fr;
  gap: 5vw;
  align-items: end;
}

.collection-heading h2 {
  font-size: clamp(53px, 5.6vw, 87px);
}

.collection-intro {
  margin: 0;
  color: rgba(236, 230, 217, 0.64);
  font-size: 14px;
}

.signature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.94fr);
  min-height: 880px;
  color: var(--ink);
  background: #e7dfd1;
}

.signature-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--black-soft);
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-copy {
  align-self: center;
  max-width: 690px;
  padding: 94px 7vw;
}

.signature-copy .eyebrow {
  margin-top: 84px;
}

.signature h2 {
  margin-top: 18px;
  font-size: clamp(56px, 5.4vw, 84px);
}

.signature-description {
  max-width: 550px;
  margin: 31px 0 0;
  color: rgba(25, 23, 17, 0.68);
  font-size: 14px;
}

.signature-details {
  margin: 44px 0 0;
  border-top: 1px solid var(--line-light);
}

.signature-details div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
}

.signature-details dt {
  color: rgba(25, 23, 17, 0.52);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signature-details dd {
  margin: 0;
  color: rgba(25, 23, 17, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 40px;
  color: #76552e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-button i {
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
  transition: transform 180ms ease;
}

.text-button:hover i {
  transform: translate(3px, -3px);
}

.product {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 760px;
  color: var(--ink);
  background: #d9d0c0;
}

.product:nth-child(odd) {
  background: #e7dfd1;
}

.product-image-wrap {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #15130f;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo-note {
  position: absolute;
  right: 23px;
  bottom: 22px;
  color: rgba(236, 230, 217, 0.76);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.product-copy {
  align-self: center;
  max-width: 580px;
  padding: 74px 8vw 74px 7vw;
}

.product-number {
  margin: 0 0 86px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
}

.product h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(55px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.product h3 em {
  display: block;
  margin-top: 14px;
  color: #76552e;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.product-description {
  max-width: 500px;
  margin: 35px 0 0;
  color: rgba(25, 23, 17, 0.7);
  font-size: 14px;
}

.product dl {
  margin: 48px 0 0;
  border-top: 1px solid var(--line-light);
}

.product dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
}

.product dt {
  color: rgba(25, 23, 17, 0.54);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.product dd {
  margin: 0;
  color: rgba(25, 23, 17, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intelligence {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  min-height: 900px;
  background: var(--black);
}

.intelligence-image {
  min-height: 680px;
  overflow: hidden;
}

.intelligence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intelligence-panel {
  align-self: center;
  padding: 96px 7vw 96px 6vw;
}

.intelligence-panel .eyebrow {
  margin-top: 78px;
}

.intelligence-panel h2 {
  margin-top: 20px;
  font-size: clamp(54px, 5.5vw, 83px);
}

.intelligence-copy {
  max-width: 610px;
  margin: 29px 0 0;
  color: rgba(236, 230, 217, 0.65);
  font-size: 14px;
}

.feature-list {
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.feature > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
}

.feature h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.feature-plus > span,
.feature-plus h3 {
  color: #c78e72;
}

.feature p {
  margin: 3px 0 0;
  color: rgba(236, 230, 217, 0.54);
  font-size: 12px;
}

.plus-note {
  display: block;
  margin-top: 19px;
  color: rgba(236, 230, 217, 0.42);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.spectrum-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 5vw;
  margin-top: 72px;
}

.spectrum-heading h2 {
  font-size: clamp(54px, 5.8vw, 88px);
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 73px;
  border: 1px solid var(--line-light);
}

.spectrum-card {
  min-height: 350px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  transition: color 220ms ease, background 220ms ease;
}

.spectrum-card:last-child {
  border-right: 0;
}

.spectrum-card:hover {
  color: var(--ivory);
  background: var(--black-soft);
}

.spectrum-card > span {
  color: #80694c;
  font-family: var(--serif);
  font-size: 22px;
}

.spectrum-card svg {
  display: block;
  width: 76px;
  margin: 28px 0 42px auto;
  fill: none;
  stroke: #8d704a;
  stroke-width: 1;
}

.spectrum-card:hover svg {
  stroke: var(--gold-light);
}

.spectrum-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.spectrum-card p {
  max-width: 310px;
  margin: 8px 0 0;
  color: rgba(25, 23, 17, 0.58);
  font-size: 12px;
}

.spectrum-card:hover p {
  color: rgba(236, 230, 217, 0.58);
}

.journal-grid {
  display: grid;
  grid-template-columns: 0.53fr 1fr 0.82fr;
  gap: 5vw;
  align-items: start;
}

.journal h2 {
  font-size: clamp(55px, 6vw, 92px);
}

.journal-copy {
  color: rgba(236, 230, 217, 0.62);
}

.journal blockquote {
  margin: 34px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line-dark);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
  line-height: 1.04;
}

.waitlist {
  position: relative;
  padding: 150px 7vw;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 52%, rgba(122, 23, 34, 0.2), transparent 24%),
    linear-gradient(120deg, #090806, #13100c);
}

.waitlist::after {
  position: absolute;
  top: -18%;
  right: 10%;
  width: min(44vw, 630px);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 154, 100, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 88px rgba(185, 154, 100, 0.035),
    0 0 0 176px rgba(185, 154, 100, 0.02);
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.waitlist h2 {
  margin-top: 19px;
  font-size: clamp(61px, 6.7vw, 100px);
}

.waitlist-copy {
  max-width: 610px;
  margin: 28px auto 0;
  color: rgba(236, 230, 217, 0.63);
  font-size: 14px;
}

.waitlist .button {
  margin-top: 37px;
}

.waitlist-form {
  display: flex;
  max-width: 610px;
  margin: 43px auto 0;
  border-bottom: 1px solid rgba(236, 230, 217, 0.4);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 0;
  border: 0;
  outline: 0;
  color: var(--ivory);
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.waitlist-form input::placeholder {
  color: rgba(236, 230, 217, 0.42);
}

.waitlist-form button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.waitlist-form i {
  font-family: var(--serif);
  font-size: 18px;
  font-style: normal;
}

.form-status {
  min-height: 25px;
  margin: 18px 0 0;
  color: var(--gold-light);
  font-size: 12px;
}

.shop-page {
  background: #e8e0d2;
}

.boutique-hero {
  display: grid;
  grid-template-columns: 1.12fr 0.7fr;
  gap: 7vw;
  align-items: end;
  padding: 184px 7vw 92px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 43%, rgba(122, 23, 34, 0.17), transparent 22%),
    linear-gradient(125deg, #0a0907, #16120e);
}

.boutique-hero h1 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(70px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.lang-zh .boutique-hero h1 {
  font-size: clamp(64px, 6.2vw, 94px);
}

.boutique-hero > p {
  max-width: 580px;
  margin: 0;
  color: rgba(236, 230, 217, 0.66);
  font-size: 14px;
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(25, 23, 17, 0.2);
}

.shop-card {
  color: var(--ink);
  background: #e8e0d2;
}

.shop-card-image {
  display: block;
  aspect-ratio: 0.83;
  overflow: hidden;
  background: var(--black-soft);
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.035);
}

.shop-card-copy {
  padding: 27px 2.8vw 31px;
}

.shop-index {
  margin: 0;
  color: #80694c;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shop-card h2 {
  margin-top: 15px;
  font-size: clamp(45px, 4vw, 62px);
}

.shop-card-copy > p:not(.shop-index) {
  min-height: 53px;
  margin: 16px 0 0;
  color: rgba(25, 23, 17, 0.64);
  font-size: 12px;
}

.variant-row {
  display: flex;
  gap: 7px;
  margin-top: 24px;
}

.variant-button {
  padding: 8px 11px;
  border: 1px solid rgba(25, 23, 17, 0.21);
  color: rgba(25, 23, 17, 0.66);
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.variant-button:hover,
.variant-button.active {
  border-color: var(--ink);
  color: var(--ivory);
  background: var(--ink);
}

.selection-line {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  margin-top: 23px;
  padding-top: 13px;
  border-top: 1px solid var(--line-light);
  color: rgba(25, 23, 17, 0.57);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.selection-line a {
  color: #76552e;
}

.plus-panel,
.request-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.76fr;
  gap: 7vw;
  align-items: center;
  padding: 112px 7vw;
}

.plus-panel {
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 50%, rgba(122, 23, 34, 0.24), transparent 24%),
    var(--black-soft);
}

.plus-panel h2,
.request-panel h2 {
  margin-top: 17px;
  font-size: clamp(54px, 5.6vw, 86px);
}

.plus-panel-copy {
  color: rgba(236, 230, 217, 0.64);
  font-size: 14px;
}

.plus-panel-copy p {
  margin: 0;
}

.plus-panel-copy small {
  display: block;
  margin-top: 25px;
  color: rgba(236, 230, 217, 0.43);
  font-size: 10px;
}

.request-panel {
  color: var(--ivory);
  background: var(--black);
}

.request-panel .waitlist-form {
  width: 100%;
  margin: 0;
}

.request-panel .form-status {
  grid-column: 2;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 27px 5vw;
  border-top: 1px solid var(--line-dark);
  color: rgba(236, 230, 217, 0.53);
  background: var(--black);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-footer .brand-word {
  color: var(--ivory);
  font-size: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 20px;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .manifesto-grid,
  .collection-heading,
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .manifesto-grid {
    margin-top: 56px;
  }

  .collection-heading {
    align-items: start;
  }

  .collection-intro {
    max-width: 580px;
  }

  .intelligence {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .intelligence-panel {
    padding-right: 6vw;
  }

  .signature {
    grid-template-columns: 0.94fr 1.06fr;
  }

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

  .shop-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .shop-card-image {
    aspect-ratio: 0.92;
  }

  .shop-card-copy {
    align-self: center;
    padding: 38px 5vw;
  }

  .shop-card-copy > p:not(.shop-index) {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .site-header {
    height: 68px;
    padding: 0 6vw;
  }

  .brand-word {
    font-size: 25px;
  }

  .brand-cn {
    font-size: 10px;
  }

  .header-tools {
    gap: 13px;
  }

  .header-cta {
    display: none;
  }

  .language-toggle {
    font-size: 9px;
  }

  .hero {
    align-items: flex-end;
    min-height: 810px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 8, 6, 0.96) 9%, rgba(8, 8, 6, 0.67) 52%, rgba(8, 8, 6, 0.12) 100%),
      linear-gradient(90deg, rgba(8, 8, 6, 0.44), transparent);
  }

  .hero-copy {
    width: calc(100% - 12vw);
    min-width: 0;
    margin: 0 6vw 112px;
    padding: 0;
  }

  .hero h1 {
    width: 100%;
    margin-top: 20px;
    font-size: clamp(61px, 16.8vw, 72px);
  }

  .hero h1 span {
    display: block;
    max-width: 100%;
  }

  .hero h1 em {
    margin: 9px 0 0 30px;
  }

  .hero-description {
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 27px;
  }

  .button {
    min-height: 46px;
    padding: 0 15px;
    font-size: 9px;
  }

  .editorial-link {
    font-size: 9px;
  }

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    bottom: 25px;
    left: 6vw;
    font-size: 8px;
  }

  .section-light,
  .section-dark {
    padding: 92px 6vw;
  }

  .manifesto-grid,
  .spectrum-heading {
    display: block;
    margin-top: 48px;
  }

  .manifesto-grid h2,
  .spectrum-heading h2 {
    margin-top: 19px;
  }

  .manifesto-copy {
    margin-top: 34px;
  }

  h2,
  .manifesto h2,
  .collection-heading h2,
  .spectrum-heading h2,
  .journal h2,
  .waitlist h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .collection-heading h2 {
    margin-top: 18px;
  }

  .collection-intro {
    margin-top: 29px;
  }

  .product,
  .product-earrings {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .product-earrings .product-copy {
    order: 2;
  }

  .product-image-wrap {
    min-height: 520px;
  }

  .product-copy {
    padding: 52px 6vw 64px;
  }

  .product-number {
    margin-bottom: 42px;
  }

  .product h3 {
    font-size: clamp(54px, 16vw, 72px);
  }

  .intelligence {
    display: block;
    min-height: 0;
  }

  .intelligence-image {
    min-height: 440px;
  }

  .intelligence-image img {
    object-position: 63% center;
  }

  .intelligence-panel {
    padding: 76px 6vw 87px;
  }

  .intelligence-panel .eyebrow {
    margin-top: 50px;
  }

  .intelligence-panel h2 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .signature {
    display: block;
    min-height: 0;
  }

  .signature-image {
    min-height: 530px;
  }

  .signature-copy {
    padding: 72px 6vw 83px;
  }

  .signature-copy .eyebrow {
    margin-top: 51px;
  }

  .signature h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .spectrum-grid {
    display: block;
    margin-top: 51px;
  }

  .spectrum-card {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .spectrum-card:last-child {
    border-bottom: 0;
  }

  .spectrum-card svg {
    margin-bottom: 30px;
  }

  .journal h2 {
    margin-top: 18px;
  }

  .journal-copy {
    margin-top: 29px;
  }

  .waitlist {
    padding: 111px 6vw;
  }

  .boutique-hero {
    display: block;
    padding: 143px 6vw 71px;
  }

  .boutique-hero h1 {
    font-size: clamp(65px, 19vw, 85px);
  }

  .boutique-hero > p {
    margin-top: 27px;
    font-size: 13px;
  }

  .shop-card {
    display: block;
  }

  .shop-card-image {
    aspect-ratio: 0.88;
  }

  .shop-card-copy {
    padding: 26px 6vw 34px;
  }

  .shop-card h2 {
    font-size: clamp(48px, 14vw, 67px);
  }

  .plus-panel,
  .request-panel {
    display: block;
    padding: 85px 6vw;
  }

  .plus-panel h2,
  .request-panel h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .plus-panel-copy {
    margin-top: 27px;
  }

  .request-panel .waitlist-form {
    margin-top: 33px;
  }

  .lang-zh .hero h1 {
    font-size: clamp(54px, 14.8vw, 64px);
  }

  .lang-zh .hero h1 em {
    margin-left: 0;
  }

  .lang-zh h1,
  .lang-zh h2 {
    letter-spacing: 0.035em;
    line-height: 1.22;
  }

  .lang-zh h1 em,
  .lang-zh h2 em {
    letter-spacing: 0.09em;
  }

  .waitlist-form button span {
    display: none;
  }

  .site-footer {
    display: block;
    padding: 31px 6vw;
  }

  .site-footer p {
    margin-top: 20px;
  }

  .site-footer div {
    justify-content: space-between;
    margin-top: 20px;
  }
}
