:root {
  --ink: #171615;
  --muted: #67615b;
  --paper: #f3f0ea;
  --paper-2: #ebe6dd;
  --dark: #11110f;
  --dark-2: #191815;
  --line: rgba(23, 22, 21, .12);
  --line-light: rgba(255, 255, 255, .14);
  --gold: #c6a15b;
  --gold-soft: #d6bd85;
  --white: #fffaf0;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: width .35s ease, height .35s ease, border-color .35s ease, opacity .35s ease;
}

.cursor-main {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 250, 240, .58);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: rgba(198, 161, 91, .85);
}

.cursor.is-hover { width: 44px; height: 44px; border-color: rgba(198, 161, 91, .75); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(24px, 4vw, 64px);
  color: var(--white);
  transition: background .35s ease, color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 240, 234, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(198, 161, 91, .82);
  border-radius: 50%;
  display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-color: var(--gold);
  border-style: solid;
}

.brand-mark::before {
  left: 8px;
  top: 7px;
  width: 8px;
  height: 17px;
  border-width: 0 0 1px 1px;
}

.brand-mark::after {
  right: 7px;
  top: 7px;
  width: 11px;
  height: 17px;
  border-width: 1px 1px 1px 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.brand-text {
  display: grid;
  gap: 1px;
  font-family: var(--serif);
  letter-spacing: .16em;
  font-size: 13px;
  line-height: 1;
}

.brand-text small {
  font-family: var(--sans);
  font-size: 8.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  letter-spacing: .18em;
  margin-top: 4px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: currentColor;
  opacity: .82;
}

.desktop-nav a { transition: color .25s ease, opacity .25s ease; }
.desktop-nav a:hover { color: var(--gold-soft); opacity: 1; }

.header-cta,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, .36);
  color: currentColor;
  background: rgba(0, 0, 0, .05);
  font-size: 0;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.site-header.is-scrolled .header-cta,
.site-header.is-scrolled .menu-button {
  border-color: rgba(23, 22, 21, .26);
  background: rgba(255, 255, 255, .45);
}

.header-cta::before {
  content: "";
  width: 13px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: .9;
}

.menu-button {
  display: none;
  gap: 5px;
  background: transparent;
}

.menu-button span {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}

.section-dark { background: var(--dark); color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(24px, 6vw, 96px) 70px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://cdn.midjourney.com/18634a4d-83cb-474a-bf87-4f2e70175049/0_2.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .66) 0%, rgba(12, 11, 10, .45) 34%, rgba(14, 13, 11, .16) 70%, rgba(12, 10, 8, .34) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, .72) 0%, rgba(7, 7, 6, .18) 38%, rgba(7, 7, 6, .08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 70px;
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  line-height: 1.5;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  flex: 0 0 auto;
}

.eyebrow.muted { color: var(--gold); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(46px, 5.2vw, 88px);
  line-height: .98;
}

h1 em,
h2 em {
  font-style: italic;
  color: rgba(255, 250, 240, .78);
  font-weight: 300;
}

.hero-copy {
  max-width: 500px;
  margin: 34px 0 0;
  color: rgba(255, 250, 240, .82);
  font-size: 17px;
  line-height: 1.7;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button-primary {
  color: var(--white);
  background: rgba(23, 22, 21, .35);
}

.button:hover { transform: translateY(-2px); background: rgba(198, 161, 91, .16); }

.button-link,
.text-link {
  color: currentColor;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .8;
  transition: opacity .25s ease, color .25s ease;
}

.button-link:hover,
.text-link:hover { opacity: 1; color: var(--gold-soft); }

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 80px);
  bottom: 34px;
  color: rgba(255, 250, 240, .44);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.china-case {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr);
  gap: clamp(38px, 6vw, 96px);
  padding: clamp(70px, 7vw, 118px) clamp(24px, 5vw, 88px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 78% 16%, rgba(198, 161, 91, .14), transparent 34%),
    linear-gradient(135deg, #11110f 0%, #181713 54%, #0d0d0c 100%);
}

.china-case__intro {
  align-self: start;
}

.china-case__intro h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 4.7vw, 70px);
  line-height: 1.04;
}

.china-case__body {
  display: grid;
  align-content: start;
  gap: 22px;
  color: rgba(255, 250, 240, .72);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.68;
}

.china-case__body > p {
  margin: 0;
  max-width: 760px;
}

.china-case__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .13);
}

.china-case__facts div {
  min-height: 164px;
  padding: 26px;
  background: rgba(255, 250, 240, .045);
  display: grid;
  align-content: start;
  gap: 14px;
}

.china-case__facts strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1.24;
}

.china-case__facts span {
  color: rgba(255, 250, 240, .62);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: clamp(72px, 8vw, 130px) clamp(24px, 5vw, 88px);
}

.directions,
.collections {
  padding-left: clamp(24px, 3vw, 56px);
  padding-right: clamp(24px, 3vw, 56px);
}

.section-head {
  max-width: 980px;
  margin-bottom: 48px;
}

.section-head.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  max-width: none;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.06;
}

.section-head h2 em {
  color: rgba(23, 22, 21, .56);
}

.section-head > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-head.light h2 em { color: rgba(255, 250, 240, .68); }
.section-head.light > p:not(.eyebrow) { color: rgba(255, 250, 240, .68); }

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(300px, 25vw, 430px);
  gap: 1px;
  background: rgba(23, 22, 21, .12);
  width: 100%;
}

.direction-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: var(--white);
  isolation: isolate;
}

.direction-card::before,
.direction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.direction-card::before {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  filter: brightness(1.12) saturate(1.04) contrast(.98);
  transition: transform 1000ms cubic-bezier(.2,.8,.2,1), filter 1000ms cubic-bezier(.2,.8,.2,1);
}

.direction-card::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at left bottom, rgba(0,0,0,.66) 0%, rgba(0,0,0,.4) 38%, rgba(0,0,0,.08) 72%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.48) 0%, rgba(0,0,0,.24) 40%, rgba(0,0,0,.04) 100%);
  transition: opacity .6s ease, background .6s ease;
}

.direction-card:hover::before {
  transform: scale(1.07) translate3d(var(--pan-x, 0), calc(var(--pan-y, 0) - 10px), 0);
  filter: brightness(1.16) saturate(1.07) contrast(1);
}

.direction-card:hover::after {
  background:
    radial-gradient(ellipse at left bottom, rgba(0,0,0,.68) 0%, rgba(0,0,0,.42) 38%, rgba(0,0,0,.1) 72%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.44) 0%, rgba(0,0,0,.22) 40%, rgba(0,0,0,.04) 100%);
}

.direction-num {
  position: absolute;
  top: 24px;
  left: 26px;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .18em;
  text-shadow: 0 2px 10px rgba(0,0,0,.58);
}

.direction-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  max-width: 430px;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.direction-card:hover .direction-copy { transform: translateY(-4px); }

.direction-copy strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 2.05vw, 34px);
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.62);
}

.direction-copy p {
  margin: 10px 0 0;
  max-width: 390px;
  color: rgba(255,255,255,.9);
  opacity: 1;
  font-size: 13px;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0,0,0,.68);
}

.more {
  display: inline-block;
  margin-top: 15px;
  color: rgba(255,255,255,.74);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease, color .45s ease;
}

.direction-card:hover .more {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold-soft);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1px;
  background: rgba(23, 22, 21, .12);
  width: 100%;
}

@media (min-width: 1600px) {
  .directions,
  .collections {
    padding-left: 60px;
    padding-right: 60px;
  }

  .direction-grid {
    grid-auto-rows: 310px;
  }

  .collection-grid { grid-auto-rows: 300px; }
}

.collection-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  isolation: isolate;
}

.collection-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.collection-card:nth-child(2) {
  grid-column: span 2;
}

.collection-card::before,
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.collection-card::before {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 1100ms cubic-bezier(.2,.8,.2,1), filter 1100ms cubic-bezier(.2,.8,.2,1);
}

.collection-card::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at left bottom, rgba(0,0,0,.74) 0%, rgba(0,0,0,.44) 42%, rgba(0,0,0,.08) 74%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.22), rgba(0,0,0,.02));
}

.collection-card:hover::before {
  transform: scale(1.075);
  filter: saturate(1.04) contrast(1.03);
}
.collection-card span { color: var(--gold-soft); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.collection-card h3 { margin: 14px 0 24px; font-size: clamp(25px, 2.2vw, 34px); line-height: 1.05; }
.collection-card.featured h3 { font-size: clamp(36px, 4vw, 62px); max-width: 560px; }
.collection-card a { color: rgba(255,255,255,.82); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }

.examples-preview {
  padding-top: clamp(40px, 5vw, 82px);
}

.examples-preview .section-head h2 {
  max-width: 960px;
}

.example-strip {
  display: grid;
  grid-template-columns: 1.15fr .925fr .925fr;
  gap: 1px;
  background: rgba(23, 22, 21, .12);
}

.example-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: grid;
  align-content: end;
  color: var(--white);
  isolation: isolate;
}

.example-card::before,
.example-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.example-card::before {
  background: var(--img) center / cover;
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.01);
  transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .9s cubic-bezier(.2,.8,.2,1);
}

.example-card::after {
  z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.24), transparent),
    radial-gradient(ellipse at left bottom, rgba(0,0,0,.54), transparent 62%);
}

.example-card:hover::before {
  transform: scale(1.06);
  filter: brightness(1.14) saturate(1.06);
}

.example-card span {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.example-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 48px);
  font-family: var(--serif);
  font-weight: 400;
}

.example-card small {
  margin-top: 8px;
  color: rgba(255,250,240,.72);
  font-size: 13px;
}

.examples-hero {
  min-height: 82svh;
  padding: 130px clamp(24px, 6vw, 96px) 70px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(280px, 420px);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
}

.examples-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,9,.78), rgba(10,10,9,.42) 48%, rgba(10,10,9,.76)),
    linear-gradient(0deg, rgba(10,10,9,.82), rgba(10,10,9,.08) 54%),
    url("https://cdn.midjourney.com/328fad90-97b6-4d4e-ac04-23a0cdd0947c/0_3.png") center / cover;
  transform: scale(1.02);
}

.examples-hero__copy,
.examples-note {
  position: relative;
  z-index: 1;
}

.examples-hero__copy h1 {
  max-width: 900px;
}

.examples-hero__copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255,250,240,.76);
  font-size: 17px;
  line-height: 1.72;
}

.examples-note {
  align-self: end;
  padding: 28px;
  background: rgba(255,250,240,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}

.examples-note span {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.examples-note p {
  margin: 18px 0 0;
  color: rgba(255,250,240,.74);
  line-height: 1.65;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.catalog-toolbar h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.05;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.24);
  color: var(--ink);
  padding: 0 14px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(23, 22, 21, .12);
}

.price-card {
  background: rgba(255,255,255,.32);
  min-width: 0;
}

.price-card__media {
  min-height: 300px;
  background: var(--img) center / cover;
}

.price-card__body {
  padding: 28px;
  background: rgba(243,240,234,.94);
}

.price-card__body > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 14px 0 12px;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.price-card p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.price-card dl {
  margin: 24px 0 0;
  display: grid;
  border-top: 1px solid var(--line);
}

.price-card dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.price-card dt {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.price-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.price-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.estimate {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: clamp(36px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(17,17,15,.96), rgba(17,17,15,.82)),
    url("https://cdn.midjourney.com/2b330983-ec2e-48ed-a8fb-862e8cda2807/0_2.png") center / cover;
}

.estimate h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.04;
}

.estimate-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}

.estimate-grid div {
  padding: 28px;
  background: rgba(255,250,240,.055);
}

.estimate-grid strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
}

.estimate-grid span {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.estimate-grid p {
  margin: 10px 0 0;
  color: rgba(255,250,240,.66);
  line-height: 1.65;
}

.process {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, .78), rgba(17, 17, 15, .52)),
    linear-gradient(0deg, rgba(17, 17, 15, .64), rgba(17, 17, 15, .18)),
    url("https://cdn.midjourney.com/2b330983-ec2e-48ed-a8fb-862e8cda2807/0_2.png") center / cover;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line-light);
}

.process-list li {
  padding: 32px 24px;
  border-left: 1px solid var(--line-light);
}

.process-list li:first-child { border-left: 0; }
.process-list span { color: var(--gold); font-size: 11px; letter-spacing: .18em; }
.process-list strong { display: block; margin: 22px 0 10px; font-size: 17px; }
.process-list p { margin: 0; color: rgba(255,250,240,.64); font-size: 14px; line-height: 1.6; }

.trust {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 1fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

.trust-media {
  min-height: 620px;
  background:
    linear-gradient(to top, rgba(0,0,0,.2), transparent),
    url("https://cdn.midjourney.com/e785fb26-c10b-4021-a928-d028573ec0c0/0_1.png") center / cover;
}

.trust-copy h2 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1.04;
}

.trust-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.trust-points {
  margin-top: 42px;
  display: grid;
  gap: 18px;
}

.trust-points div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
}

.trust-points strong { font-size: 16px; }
.trust-points span { color: var(--muted); line-height: 1.55; }

.contact {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(16,16,14,.92), rgba(16,16,14,.72)),
    url("https://cdn.midjourney.com/18634a4d-83cb-474a-bf87-4f2e70175049/0_3.png") center / cover;
}

.contact h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 1.04;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255,250,240,.72);
  line-height: 1.75;
  font-size: 17px;
}

.yulia-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,250,240,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
}

.yulia-card__label {
  color: var(--gold-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.yulia-card h3 {
  margin: 0;
  max-width: 620px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.05;
}

.yulia-card p {
  margin: 0;
  max-width: 620px;
  color: rgba(255,250,240,.72);
  font-size: 16px;
  line-height: 1.7;
}

.messenger-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.button-secondary {
  color: var(--white);
  background: rgba(255,250,240,.08);
  border-color: rgba(255,250,240,.34);
}

.yulia-card small {
  color: rgba(255,250,240,.48);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  padding: 44px clamp(24px, 5vw, 88px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: #0d0d0c;
  color: rgba(255,250,240,.72);
  border-top: 1px solid var(--line-light);
}

.site-footer p { margin: 0; max-width: 560px; line-height: 1.6; }
.footer-links { display: flex; gap: 20px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  color: var(--ink);
}

.legal-back {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0 0 34px;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.04;
}

.legal-page h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: 0;
}

.legal-page p {
  margin: 12px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-page a {
  color: var(--ink);
  border-bottom: 1px solid rgba(198,161,91,.55);
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .china-case {
    grid-template-columns: 1fr;
  }
  .direction-grid { grid-auto-rows: 330px; }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
  }
  .example-strip,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .examples-hero,
  .catalog-toolbar,
  .estimate {
    grid-template-columns: 1fr;
  }
  .collection-card,
  .collection-card.featured {
    grid-column: auto;
    grid-row: auto;
  }
  .collection-card.featured { grid-column: span 2; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li:nth-child(4) { border-left: 0; }
}

@media (max-width: 820px) {
  body,
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  a,
  button { cursor: auto; }
  .cursor { display: none; }
  .site-header {
    height: 70px;
    grid-template-columns: auto 1fr auto auto;
    padding: 0 18px;
  }
  .header-cta,
  .menu-button { width: 40px; height: 40px; }
  .hero {
    min-height: 100svh;
    padding: 104px 22px 42px;
    align-items: end;
  }
  .hero-bg { background-position: center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7,7,6,.82) 0%, rgba(7,7,6,.44) 56%, rgba(7,7,6,.16) 100%),
      linear-gradient(90deg, rgba(7,7,6,.44), rgba(7,7,6,.12));
  }
  .hero-content { margin-top: 0; }
  .eyebrow { font-size: 9px; gap: 10px; letter-spacing: .18em; margin-bottom: 18px; }
  .eyebrow span { width: 28px; }
  h1 { font-size: clamp(40px, 13vw, 60px); line-height: 1; }
  .hero-copy { font-size: 15px; line-height: 1.65; margin-top: 24px; }
  .hero-actions { gap: 18px; margin-top: 28px; }
  .button { width: 100%; min-height: 52px; }
  .button-link { width: 100%; }
  .hero-note { display: none; }
  .china-case {
    padding: 56px 22px;
    gap: 24px;
  }
  .china-case__intro h2 {
    font-size: clamp(32px, 9.1vw, 44px);
    line-height: 1.06;
  }
  .china-case__body {
    gap: 15px;
    font-size: 15px;
    line-height: 1.6;
  }
  .china-case__facts {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }
  .china-case__facts div {
    min-height: 0;
    padding: 18px;
    gap: 8px;
  }
  .china-case__facts strong { font-size: 15px; }
  .china-case__facts span { font-size: 13px; line-height: 1.45; }
  .section { padding: 72px 22px; }
  .section-head.compact { grid-template-columns: 1fr; }
  .section-head h2 { font-size: clamp(38px, 11vw, 54px); }
  .section-head > p:not(.eyebrow) { font-size: 15px; }
  .direction-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1px;
  }
  .direction-card,
  .direction-card.large,
  .direction-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }
  .direction-card::before,
  .direction-card:hover::before {
    transform: none;
    transition: none;
  }
  .direction-card::after {
    background:
      radial-gradient(ellipse at left bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.18) 76%, transparent 100%),
      linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.08) 100%);
  }
  .direction-copy { left: 22px; right: 22px; bottom: 24px; }
  .direction-num { left: 22px; top: 22px; }
  .more { opacity: 1; transform: none; }
  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .collection-card,
  .collection-card.featured,
  .collection-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
    padding: 24px;
  }
  .collection-card.featured h3 { font-size: clamp(31px, 9vw, 42px); }
  .example-strip,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .example-card {
    min-height: 320px;
    padding: 24px;
  }
  .examples-hero {
    min-height: auto;
    padding: 112px 22px 54px;
    gap: 28px;
  }
  .examples-hero__copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }
  .examples-note,
  .price-card__body,
  .estimate-grid div {
    padding: 22px;
  }
  .catalog-toolbar {
    gap: 24px;
  }
  .catalog-toolbar h2,
  .estimate h2 {
    font-size: clamp(36px, 10vw, 52px);
  }
  .catalog-tabs {
    justify-content: flex-start;
  }
  .price-card__media {
    min-height: 270px;
  }
  .price-card p {
    min-height: 0;
  }
  .price-card dl div {
    grid-template-columns: 86px 1fr;
  }
  .process-list { grid-template-columns: 1fr; }
  .process-list li,
  .process-list li:nth-child(4) { border-left: 0; border-top: 1px solid var(--line-light); }
  .trust,
  .contact { grid-template-columns: 1fr; }
  .trust-media { min-height: 360px; order: 2; }
  .messenger-actions { display: grid; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
