@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Noto+Serif+SC:wght@600;700&display=swap");

:root {
  --ink: #222323;
  --muted: #6f716d;
  --paper: #fbfaf6;
  --soft: #f2eee5;
  --line: #e5ded0;
  --gold: #988417;
  --deep-gold: #74640f;
  --blue: #cbd9db;
  --sage: #8f9b85;
  --navy: #f3ede1;
  --shadow: 0 24px 70px rgba(41, 35, 23, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

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

.hero-title-line {
  display: inline;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(420px, 1.4fr) auto;
  align-items: center;
  gap: 18px;
  padding: 7px 22px;
  background: rgba(246, 238, 224, .46);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .46), 0 18px 46px rgba(79, 61, 33, .1);
  backdrop-filter: blur(22px) saturate(1.42);
  -webkit-backdrop-filter: blur(22px) saturate(1.42);
  transition: box-shadow .22s ease, background .22s ease, border-color .22s ease, top .22s ease;
}

.site-header:hover {
  background: rgba(250, 246, 238, .9);
  border-bottom-color: rgba(225, 212, 190, .8);
  box-shadow: 0 12px 34px rgba(79, 61, 33, .12);
}

.site-header.is-scrolled {
  background: rgba(246, 238, 224, .56);
  border-color: rgba(255, 255, 255, .5);
}

.site-header.is-scrolled:hover {
  background: rgba(250, 246, 238, .92);
  border-color: rgba(225, 212, 190, .86);
  box-shadow: 0 12px 34px rgba(79, 61, 33, .14);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 160px;
}

.brand-logo {
  display: block;
  width: 160px;
  max-width: 22vw;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .16));
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 136px;
  min-height: 36px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(152, 132, 23, .26);
  border-radius: 999px;
  background: rgba(255, 252, 246, .54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    0 8px 24px rgba(79, 61, 33, .1);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  color: #4b453c;
  font-size: 12px;
  font-weight: 700;
}

.lang-option {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  transition: color .22s ease, opacity .22s ease;
}

.lang-option.is-active {
  color: #fffdf4;
}

.lang-option:not(.is-active):hover {
  color: #2f2b25;
  opacity: .95;
}

.lang-indicator {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: rgba(152, 132, 23, .96);
  box-shadow:
    0 6px 14px rgba(6, 18, 28, .18),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .32s cubic-bezier(.2, .72, .18, 1);
}

.language-switch.is-en .lang-indicator {
  transform: translateX(100%);
}

.language-switch.is-cn.is-switching .lang-indicator {
  transform: translateX(100%);
}

.language-switch.is-en.is-switching .lang-indicator {
  transform: translateX(0);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  color: #2f2b25;
  font-size: 15px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, .58);
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-action,
.button.primary {
  background: var(--gold);
  color: #fffdf4;
}

.button.secondary {
  background: rgba(255, 255, 255, .54);
  color: var(--ink);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 150px 5vw 96px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 29, 44, .28) 0%, rgba(6, 29, 44, .03) 28%, rgba(6, 29, 44, .28) 100%),
    linear-gradient(90deg, rgba(251, 250, 246, .2) 0%, rgba(251, 250, 246, .08) 36%, rgba(251, 250, 246, .02) 100%),
    url("assets/home/hero.jpg") center right / cover no-repeat,
    url("assets/hero-jacquard.png") center right / cover no-repeat;
}

.hero-content {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 246, 0));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
  transform: translateY(130px);
  text-align: center;
}

:lang(zh-CN) .hero-content {
  transform: translateY(149px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo-eyebrow {
  display: block;
  width: clamp(112px, 10vw, 152px);
  height: auto;
  margin: 0 0 18px;
  object-fit: contain;
}

.logo-eyebrow.logo-eyebrow-wordmark {
  width: clamp(56px, 5vw, 76px);
  margin-bottom: clamp(20px, 1.5vw, 25px);
  transform: scaleX(1.1);
  transform-origin: left center;
}

.section-heading .logo-eyebrow {
  margin-left: 0;
  margin-right: auto;
}

.hero-logo-mark {
  display: block;
  width: clamp(207px, 20.7vw, 288px);
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1.5px rgba(255, 255, 255, .48));
}

.hero-logo-shell {
  position: relative;
  isolation: isolate;
  display: block;
  width: clamp(207px, 20.7vw, 288px);
  margin: 0 auto 16px;
}

.hero-logo-shell::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url("assets/smartex-logo-wordmark-clean.png?v=1") center bottom / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1) blur(.45px);
  opacity: .3;
  transform: translateY(1px);
}

.hero-logo-shell::after {
  position: absolute;
  z-index: 0;
  top: -4px;
  right: -6px;
  width: 48%;
  height: 24px;
  background: rgba(255, 253, 247, .21);
  box-shadow: 0 0 18px 10px rgba(255, 253, 247, .12);
  content: "";
  filter: blur(7px);
}

.hero-logo-full {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  filter: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 600px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.25vw, 32px);
  font-weight: 400;
  line-height: 1.18;
  word-break: keep-all;
  overflow-wrap: normal;
}

:lang(zh-CN) h2 {
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: 0;
}

:lang(zh-CN) .intro-grid h2,
:lang(zh-CN) .section-heading h2,
:lang(zh-CN) .craft-copy h2 {
  white-space: nowrap;
}

.hero-copy {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.hero:not(:has(.hero-copy)) .hero-actions {
  margin-top: 24px;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .eyebrow {
  color: #fff;
  font-size: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .36);
}

.hero .hero-company {
  font-family: "Cinzel", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: clamp(32px, 3.35vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 1px 6px rgba(255, 255, 255, .72), 0 6px 22px rgba(255, 255, 255, .52);
}

:lang(zh-CN) .hero .hero-company {
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  color: var(--gold);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(24px, 2.25vw, 30px);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .36);
}

:lang(zh-CN) .hero h1 {
  font-size: clamp(26px, 2.35vw, 32px);
  max-width: none;
  white-space: nowrap;
}

:lang(zh-CN) .hero-title-line {
  display: inline;
  white-space: nowrap;
}

.hero-panel {
  display: none;
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.section {
  padding: 74px 5vw;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(320px, 680px);
  gap: 10vw;
  align-items: start;
}

@media (min-width: 981px) {
  .intro-grid {
    grid-template-rows: auto auto;
    column-gap: 10vw;
    row-gap: 0;
  }

  .intro-grid > div {
    display: contents;
  }

  .intro-grid .logo-eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .intro-grid h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .intro-grid > p {
    grid-column: 2;
    grid-row: 2;
  }
}

.intro-grid p:not(.eyebrow) {
  color: #565850;
  font-size: 16px;
  line-height: 1.75;
}

.intro-grid h2,
.intro-subline {
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

:lang(en) .intro-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.intro-subline {
  margin-top: 18px;
  max-width: 520px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "copy"
    "stats";
  gap: 44px;
  align-items: center;
  padding: 78px 5vw 68px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, .96), rgba(244, 236, 221, .84)),
    url("assets/home/story.jpg") center right / cover no-repeat,
    url("assets/hero-jacquard.png") center right / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.story-copy {
  grid-area: copy;
  align-self: center;
}

.story-copy h2 {
  max-width: 760px;
}

.story-kicker {
  max-width: 720px;
  margin: 0 0 10px;
  color: #8a7a18;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 1.35;
}

.story-copy p:not(.eyebrow) {
  max-width: 860px;
  margin-bottom: 0;
  color: #5d584f;
  font-size: 15px;
  line-height: 1.8;
}

.story-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(152, 132, 23, .22);
}

.story-stat {
  min-height: 150px;
  padding: 0 clamp(22px, 4vw, 58px);
  background: transparent;
  border-right: 1px solid rgba(152, 132, 23, .2);
  transition: transform .2s ease;
}

.story-stat:first-child {
  padding-left: 0;
}

.story-stat:last-child {
  padding-right: 0;
  border-right: 0;
}

.story-stat span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1;
}

.story-stat em {
  font-style: normal;
}

.story-stat small {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1;
}

.story-stat strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 16px;
}

.story-stat p {
  margin-bottom: 0;
  color: #625d53;
  font-size: 13px;
  line-height: 1.65;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
  isolation: isolate;
}

.card-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(20, 22, 21, .03), rgba(20, 22, 21, .38)),
    url("assets/hero-jacquard.png");
  background-size: cover;
  transition: transform .5s ease, opacity .3s ease;
}

.card-image.bed {
  background-image:
    linear-gradient(180deg, rgba(20, 22, 21, .03), rgba(20, 22, 21, .38)),
    url("assets/products/bed-7.png"),
    url("assets/hero-jacquard.png");
  background-position: 50% 50%;
}

.card-image.curtain {
  background-image:
    linear-gradient(180deg, rgba(20, 22, 21, .03), rgba(20, 22, 21, .38)),
    url("assets/home/collection-curtain.png"),
    url("assets/hero-jacquard.png");
  background-position: 50% 48%;
}

.card-image.cushion {
  background-image:
    linear-gradient(180deg, rgba(20, 22, 21, .03), rgba(20, 22, 21, .38)),
    url("assets/home/collection-cushion.jpg"),
    url("assets/hero-jacquard.png");
  background-position: 50% 50%;
}

.card-image.baby {
  background-image:
    linear-gradient(180deg, rgba(20, 22, 21, .03), rgba(20, 22, 21, .38)),
    url("assets/products/baby-9.png"),
    url("assets/hero-jacquard.png");
  background-position: 50% 50%;
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(138px, 9.5vw, 168px) 28px 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0), rgba(19, 19, 19, .56));
  transition: background .3s ease, color .3s ease, justify-content .3s ease;
}

.line-icon {
  display: block;
  height: 44px;
  margin-bottom: 16px;
  font-size: 34px;
  font-family: Georgia, serif;
  line-height: 1;
}

.collection-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 58px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.collection-card p {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.7;
}

.collection-card:hover .card-image,
.collection-card:focus .card-image,
.collection-card.is-active .card-image {
  transform: scale(1.06);
  opacity: 0;
}

.collection-card:hover .card-face,
.collection-card:focus .card-face,
.collection-card.is-active .card-face {
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, 0)),
    var(--gold);
  color: #fffdf4;
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(560px, 1fr);
  gap: 5vw;
  align-items: center;
  padding: 86px 5vw;
  background:
    linear-gradient(90deg, rgba(253, 248, 239, .94), rgba(246, 235, 216, .84)),
    url("assets/home/craft.jpg") center / cover no-repeat,
    url("assets/hero-jacquard.png") center / cover no-repeat;
  color: #2d2920;
}

.craft-copy p:not(.eyebrow) {
  color: #5f584d;
  font-size: 15px;
  line-height: 1.75;
}

.craft-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.craft-card {
  min-height: 214px;
  padding: 24px 24px 22px;
  background: rgba(255, 252, 246, .72);
  border: 1px solid rgba(166, 142, 72, .2);
  box-shadow: 0 18px 46px rgba(79, 61, 33, .09);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.craft-card:hover {
  transform: translateY(-4px);
  border-color: rgba(152, 132, 23, .34);
  box-shadow: 0 24px 60px rgba(79, 61, 33, .13);
}

.craft-card span {
  display: block;
  margin-bottom: 40px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.craft-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

:lang(en) .craft-card:nth-child(2) strong {
  font-size: 17px;
  white-space: nowrap;
}

@media (min-width: 641px) {
  :lang(en) .craft-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  :lang(en) .craft-card p {
    font-size: 13px;
    line-height: 1.58;
    text-wrap: pretty;
  }
}

.craft-card p {
  margin-bottom: 0;
  color: #645e54;
  font-size: 14px;
  line-height: 1.7;
}

.finder-shell {
  padding: 34px 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.tab {
  min-height: 54px;
  width: 100%;
  min-width: 0;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0 34px 0 34px;
  background: #2d2d2b;
  color: #fff;
  font: inherit;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.tab.is-selected {
  background: var(--gold);
}

.tab:hover {
  transform: translateY(-2px);
}

.result-preview {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 980px;
  margin: 24px auto 0;
  padding: 22px 0 18px;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) #eee7da;
  scrollbar-width: thin;
}

.result-preview[hidden] {
  display: none;
}

.result-preview::-webkit-scrollbar {
  height: 8px;
}

.result-preview::-webkit-scrollbar-track {
  background: #eee7da;
  border-radius: 999px;
}

.result-preview::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.swatch {
  min-height: 170px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .5), transparent 32%),
    repeating-linear-gradient(45deg, rgba(168, 137, 36, .16) 0 4px, transparent 4px 12px),
    var(--soft);
}

.craft-image {
  min-height: 280px;
  background-color: #f4f1ea;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: zoom-in;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.craft-image:hover {
  transform: translateY(-3px);
  border-color: rgba(152, 132, 23, .36);
  box-shadow: 0 16px 36px rgba(55, 46, 32, .1);
}

.craft-jacquard-1 { background-image: url("assets/crafts/jacquard-1.png"); }
.craft-jacquard-2 { background-image: url("assets/crafts/jacquard-2.png"); }
.craft-jacquard-3 { background-image: url("assets/crafts/jacquard-3.jpg"); }
.craft-jacquard-4 { background-image: url("assets/crafts/jacquard-4.jpg"); }
.craft-jacquard-5 { background-image: url("assets/crafts/jacquard-5.png"); }
.craft-jacquard-6 { background-image: url("assets/crafts/jacquard-6.jpg"); }
.craft-jacquard-7 { background-image: url("assets/crafts/jacquard-7.jpg"); }
.craft-jacquard-8 { background-image: url("assets/crafts/jacquard-8.png"); }
.craft-jacquard-9 { background-image: url("assets/crafts/jacquard-9.png"); }
.craft-jacquard-10 { background-image: url("assets/crafts/jacquard-10.png"); }
.craft-jacquard-11 { background-image: url("assets/crafts/jacquard-11.png"); }
.craft-jacquard-12 { background-image: url("assets/crafts/jacquard-12.png"); }
.craft-jacquard-13 { background-image: url("assets/crafts/jacquard-13.png"); }
.craft-jacquard-14 { background-image: url("assets/crafts/jacquard-14.png"); }
.craft-jacquard-15 { background-image: url("assets/crafts/jacquard-15.png"); }
.craft-jacquard-16 { background-image: url("assets/crafts/jacquard-16.png"); }
.craft-embroidery-1 { background-image: url("assets/crafts/embroidery-1.png"); }
.craft-embroidery-2 { background-image: url("assets/crafts/embroidery-2.jpg"); }
.craft-embroidery-3 { background-image: url("assets/crafts/embroidery-3.jpg"); }
.craft-embroidery-4 { background-image: url("assets/crafts/embroidery-4.jpg"); }
.craft-embroidery-5 { background-image: url("assets/crafts/embroidery-5.jpg"); }
.craft-embroidery-6 { background-image: url("assets/crafts/embroidery-6.png"); }
.craft-embroidery-7 { background-image: url("assets/crafts/embroidery-7.png"); }
.craft-embroidery-8 { background-image: url("assets/crafts/embroidery-8.jpg"); }
.craft-printing-1 { background-image: url("assets/crafts/printing-1.png"); }
.craft-printing-2 { background-image: url("assets/crafts/printing-2.png"); }
.craft-printing-3 { background-image: url("assets/crafts/printing-3.png"); }
.craft-printing-4 { background-image: url("assets/crafts/printing-4.jpg"); background-position: center 62%; }
.craft-printing-5 { background-image: url("assets/crafts/printing-5.png"); }
.craft-other-1 { background-image: url("assets/crafts/other-1-green.png"); }
.craft-other-2 { background-image: url("assets/crafts/other-2.png"); }
.craft-other-3 { background-image: url("assets/crafts/other-3.png"); }
.craft-other-4 { background-image: url("assets/crafts/other-4.png"); }
.craft-other-5 { background-image: url("assets/crafts/other-5.png"); }
.craft-other-6 { background-image: url("assets/crafts/other-6.jpg"); }
.craft-other-7 { background-image: url("assets/crafts/other-7.jpg"); }
.craft-other-8 { background-image: url("assets/crafts/other-8.jpg"); }
.craft-other-9 { background-image: url("assets/crafts/other-9.jpg"); }
.craft-other-10 { background-image: url("assets/crafts/other-10.jpg"); }
.craft-other-11 { background-image: url("assets/crafts/other-11.jpg"); }
.craft-other-12 { background-image: url("assets/crafts/other-12.jpg"); }
.craft-other-13 { background-image: url("assets/crafts/other-13.png"); }
.craft-other-14 { background-image: url("assets/crafts/other-14.png"); }

.swatch-two {
  background:
    radial-gradient(circle at 66% 28%, rgba(255, 255, 255, .56), transparent 28%),
    repeating-linear-gradient(90deg, rgba(94, 111, 112, .16) 0 3px, transparent 3px 10px),
    #e8efef;
}

.swatch-three {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .45), transparent),
    repeating-radial-gradient(circle at 50% 50%, rgba(168, 137, 36, .18) 0 2px, transparent 2px 13px),
    #f7f4ed;
}

.swatch-four {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .5), transparent),
    repeating-linear-gradient(135deg, rgba(152, 132, 23, .16) 0 3px, transparent 3px 16px),
    #f4efe5;
}

.swatch-five {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .52), transparent),
    repeating-linear-gradient(0deg, rgba(152, 132, 23, .12) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(90deg, rgba(94, 111, 112, .1) 0 2px, transparent 2px 18px),
    #f7f1e8;
}

.swatch-six {
  background:
    radial-gradient(circle at 32% 34%, rgba(255, 255, 255, .58), transparent 28%),
    repeating-linear-gradient(60deg, rgba(152, 132, 23, .14) 0 4px, transparent 4px 18px),
    #ecefe9;
}

.swatch-seven {
  background:
    repeating-radial-gradient(circle at 40% 45%, rgba(152, 132, 23, .13) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, rgba(255, 255, 255, .55), transparent),
    #f6f0df;
}

.swatch-eight {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .5), transparent),
    repeating-linear-gradient(90deg, rgba(198, 215, 215, .34) 0 8px, transparent 8px 18px),
    #f6f3ea;
}

.site-footer {
  margin-top: 40px;
  padding: 44px 5vw 18px;
  background: var(--navy);
  color: #2d2920;
  border-top: 1px solid #e3d7c4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(120px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: min(280px, 100%);
  margin-bottom: 18px;
  filter: none;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: #5f584d;
  line-height: 1.7;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 0 0 12px;
  color: #3f3a32;
  font-size: 14px;
  line-height: 1.45;
}

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

.footer-contact p {
  margin-bottom: 10px;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(152, 132, 23, .35);
  border-radius: 50%;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid #ded0ba;
  color: #6b6257;
  font-size: 13px;
}

.catalog-page {
  background: #fbfaf6;
}

.catalog-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 140px 5vw 58px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, .36), rgba(251, 250, 246, .82)),
    linear-gradient(90deg, rgba(251, 250, 246, .18), rgba(251, 250, 246, .64)),
    url("assets/home/catalog-hero.jpg") center right / cover no-repeat,
    url("assets/hero-jacquard.png") center right / cover no-repeat;
}

.catalog-hero > div {
  max-width: 680px;
}

.catalog-hero h1 {
  max-width: 760px;
  color: #25231f;
  font-size: clamp(28px, 3vw, 42px);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: #5d584f;
  font-size: 15px;
  line-height: 1.75;
}

.catalog-section {
  padding: 42px 5vw 28px;
}

.series-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 28px;
}

.series-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 0 34px 0 34px;
  background: #2d2d2b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.series-tab:hover,
.series-tab.is-selected {
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(152, 132, 23, .18);
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e0d4;
  box-shadow: 0 16px 40px rgba(48, 40, 28, .07);
  cursor: zoom-in;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(152, 132, 23, .32);
  box-shadow: 0 24px 54px rgba(48, 40, 28, .12);
}

.product-image {
  min-height: 270px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 0, 0, .08)),
    url("assets/hero-jacquard.png");
  background-size: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-card h3 {
  display: none;
}

.product-card:hover h3 {
  display: none;
}

.image-viewer {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(24, 22, 18, .82);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .22s ease;
}

.image-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-viewer-panel {
  width: auto;
  height: auto;
  max-height: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transform: translateY(16px) scale(.98);
  transition: transform .24s ease;
}

.image-viewer.is-open .image-viewer-panel {
  transform: translateY(0) scale(1);
}

.image-viewer-media {
  display: block;
  max-width: 96vw;
  max-height: 94vh;
  width: auto;
  height: auto;
  min-height: 0;
  object-fit: contain;
  cursor: zoom-in;
  transform-origin: center;
  transition: transform .24s ease;
}

.image-viewer.is-zoomed .image-viewer-media {
  transform: scale(1.72);
  cursor: zoom-out;
}

.image-viewer-info {
  display: none;
}

.image-viewer-info h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.image-viewer-info p {
  margin: 0;
  color: #5f584d;
  font-size: 14px;
  line-height: 1.75;
}

.product-bed-1 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .06)), url("assets/products/bed-1.jpg"); background-position: 50% 54%; }
.product-bed-2 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .08)), url("assets/products/bed-2-green.png"); background-position: 50% 50%; }
.product-bed-3 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .05)), url("assets/products/bed-3.jpg"); background-position: 50% 52%; }
.product-bed-4 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .06)), url("assets/products/bed-4.png"); background-position: 54% 52%; }
.product-bed-5 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .06)), url("assets/products/bed-5.png"); background-position: 50% 48%; }
.product-bed-6 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .08)), url("assets/products/bed-6.png"); background-position: 50% 50%; }
.product-bed-7 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .05)), url("assets/products/bed-7.png"); background-position: 50% 50%; }
.product-bed-8 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .04)), url("assets/products/bed-8.jpg"); background-position: 50% 48%; }
.product-bed-9 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .05)), url("assets/products/bed-9.png"); background-position: 50% 50%; }
.product-bed-10 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .05)), url("assets/products/bed-10.png"); background-position: 50% 50%; }
.product-bed-11 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .05)), url("assets/products/bed-11.png"); background-position: 50% 50%; }
.product-bed-12 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .01), rgba(0, 0, 0, .05)), url("assets/products/bed-12.png"); background-position: 50% 52%; }
.product-bed-13 { background-image: url("assets/products/bed-13.png"); background-position: 50% 50%; }
.product-bed-14 { background-image: url("assets/products/bed-14.png"); background-position: 50% 50%; }
.product-bed-15 { background-image: url("assets/products/bed-15.png"); background-position: 50% 50%; }
.product-bed-16 { background-image: url("assets/products/bed-16.png"); background-position: 50% 50%; }
.product-bed-17 { background-image: url("assets/products/bed-17.jpg"); background-position: 50% 56%; }
.product-curtain-1 { background-image: url("assets/products/curtain-1.png"); background-position: 50% 50%; }
.product-curtain-2 { background-image: url("assets/products/curtain-2.png"); background-position: 50% 50%; }
.product-curtain-3 { background-image: url("assets/products/curtain-3.png"); background-position: 50% 50%; }
.product-curtain-4 { background-image: url("assets/products/curtain-4.png"); background-position: 50% 50%; }
.product-curtain-5 { background-image: url("assets/products/curtain-5.png"); background-position: 50% 50%; }
.product-curtain-6 { background-image: url("assets/products/curtain-6.png"); background-position: 50% 50%; }
.product-curtain-7 { background-image: url("assets/products/curtain-7.png"); background-position: 50% 50%; }
.product-curtain-8 { background-image: url("assets/products/curtain-8.png"); background-position: 50% 50%; }
.product-shower-1 { background-image: url("assets/products/shower-1.png"); background-position: 50% 50%; }
.product-shower-2 { background-image: url("assets/products/shower-2.png"); background-position: 50% 50%; }
.product-shower-3 { background-image: url("assets/products/shower-3.png"); background-position: 50% 50%; }
.product-shower-4 { background-image: url("assets/products/shower-4.png"); background-position: 50% 50%; }
.product-cushion-1 { background-image: url("assets/products/cushion-1.jpg"); background-position: 50% 50%; }
.product-cushion-2 { background-image: url("assets/products/cushion-2.png"); background-position: 50% 50%; }
.product-cushion-3 { background-image: url("assets/products/cushion-3.jpg"); background-position: 50% 50%; }
.product-cushion-4 { background-image: url("assets/products/cushion-4.jpg"); background-position: 50% 50%; }
.product-cushion-5 { background-image: url("assets/products/cushion-5.jpg"); background-position: 50% 50%; }
.product-cushion-6 { background-image: url("assets/products/cushion-6.jpg"); background-position: 50% 50%; }
.product-cushion-7 { background-image: url("assets/products/cushion-7.jpg"); background-position: 50% 50%; }
.product-cushion-8 { background-image: url("assets/products/cushion-8.jpg"); background-position: 50% 50%; }
.product-cushion-9 { background-image: url("assets/products/cushion-9.jpg"); background-position: 50% 50%; }
.product-cushion-10 { background-image: url("assets/products/cushion-10.jpg"); background-position: 50% 50%; }
.product-cushion-11 { background-image: url("assets/products/cushion-11.jpg"); background-position: 50% 50%; }
.product-cushion-12 { background-image: url("assets/products/cushion-12.jpg"); background-position: 50% 50%; }
.product-cushion-13 { background-image: url("assets/products/cushion-13.jpg"); background-position: 50% 28%; }
.product-cushion-14 { background-image: url("assets/products/cushion-14.jpg"); background-position: 50% 50%; }
.product-cushion-15 { background-image: url("assets/products/cushion-15.jpg"); background-position: 50% 50%; }
.product-cushion-16 { background-image: url("assets/products/cushion-16.jpg"); background-position: 50% 50%; }
.product-cushion-17 { background-image: url("assets/home/collection-cushion.jpg"); background-position: 50% 50%; }
.product-baby-1 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .04)), url("assets/products/baby-1.png"); background-position: 50% 54%; }
.product-baby-2 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .03)), url("assets/products/baby-4.png"); background-position: 50% 52%; }
.product-baby-3 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .03)), url("assets/products/baby-3.png"); background-position: 58% 50%; }
.product-baby-4 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .03)), url("assets/products/baby-2.png"); background-position: 48% 50%; }
.product-baby-5 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .03)), url("assets/products/baby-5.png"); background-position: 50% 50%; }
.product-baby-6 { background-image: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .03)), url("assets/products/baby-6.png"); background-position: 50% 50%; }
.product-baby-7 { background-image: url("assets/products/baby-7.png"); background-position: 50% 50%; }
.product-baby-8 { background-image: url("assets/products/baby-8.png"); background-position: 50% 50%; }
.product-baby-9 { background-image: url("assets/products/baby-9.png"); background-position: 50% 50%; }
.product-baby-10 { background-image: url("assets/home/collection-baby.png"); background-position: 50% 50%; }
.product-baby-11 { background-image: url("assets/products/baby-9.png"); background-position: 50% 50%; }
.product-baby-12 { background-image: url("assets/products/baby-12.png"); background-position: 50% 50%; }

@media (max-width: 980px) {
  .site-header {
    width: 100%;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 160px;
  }

  .brand-logo {
    width: 168px;
  }

  .brand-wordmark-main {
    font-size: 32px;
  }

  .nav {
    justify-content: center;
    gap: 26px;
    font-size: 15px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 500px;
    margin-top: 48px;
  }

  .intro-grid,
  .story-section,
  .craft-section {
    grid-template-columns: 1fr;
  }

  .story-section {
    grid-template-areas:
      "copy"
      "stats";
  }

  .story-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .result-preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .tabs,
  .result-preview {
    max-width: none;
  }

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

  .result-preview div:last-child {
    grid-column: 1 / -1;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px 6px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 7px 10px 8px;
    background: rgba(250, 246, 238, .9);
    border-bottom: 1px solid rgba(225, 212, 190, .72);
  }

  .brand {
    flex: 0 0 calc(100% - 98px);
    min-width: 0;
  }

  .brand-logo {
    width: 104px;
    max-width: 42vw;
  }

  .brand-wordmark-main {
    font-size: 28px;
  }

  .brand-wordmark-top {
    font-size: 10px;
  }

  .header-tools {
    position: absolute;
    z-index: 4;
    top: 7px;
    right: 10px;
    display: flex !important;
    order: 3;
    flex: 0 0 84px;
    width: 84px;
    min-width: 0;
    margin-left: 0;
    visibility: visible;
    opacity: 1;
  }

  .language-switch {
    display: grid !important;
    width: 84px;
    max-width: 84px;
    min-height: 28px;
    padding: 2px;
    font-size: 10px;
  }

  .nav-action {
    display: none;
  }

  .lang-option {
    min-width: 0;
    min-height: 24px;
    padding: 0 5px;
  }

  .lang-indicator {
    top: 2px;
    left: 2px;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
  }

  .nav {
    order: 2;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 0;
    border-top: 1px solid rgba(225, 212, 190, .62);
    border-top: 0;
    color: #34302a;
    font-size: 10px;
    text-shadow: none;
    scrollbar-width: none;
  }

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

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 27px;
    padding: 4px 3px;
    border: 1px solid rgba(152, 132, 23, .16);
    border-radius: 999px;
    background: rgba(255, 252, 246, .62);
    white-space: nowrap;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 108px 16px 54px;
  }

  .hero-content {
    max-width: 100%;
    transform: translateY(38px);
  }

  :lang(zh-CN) .hero-content {
    transform: translateY(62px);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(6, 29, 44, .34) 0%, rgba(6, 29, 44, .08) 50%, rgba(6, 29, 44, .36) 100%),
      url("assets/home/hero.jpg") center / cover no-repeat,
      url("assets/hero-jacquard.png") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  :lang(zh-CN) .intro-grid h2,
  :lang(zh-CN) .section-heading h2,
  :lang(zh-CN) .craft-copy h2 {
    white-space: normal;
  }

  .hero .eyebrow {
    font-size: 12px;
  }

  .hero-copy {
    display: none;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  :lang(zh-CN) .hero h1 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(17px, 5.4vw, 23px);
    line-height: 1.32;
    word-break: keep-all;
    white-space: normal;
  }

  :lang(zh-CN) .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  :lang(zh-CN) .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .logo-eyebrow {
    width: 118px;
    margin-bottom: 12px;
  }

  .hero-logo-mark {
    width: min(52vw, 189px);
    height: auto;
    margin-bottom: 12px;
  }

  .hero-logo-shell {
    width: min(52vw, 189px);
    margin-bottom: 10px;
  }

  .hero .hero-company {
    font-size: clamp(24px, 7.6vw, 32px);
  }

  :lang(zh-CN) .hero .hero-company {
    font-size: 24px;
    line-height: 1.25;
  }

  :lang(zh-CN) .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .button {
    flex: 1 1 140px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  :lang(zh-CN) .hero-actions .button {
    flex: 0 1 132px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }

  .section,
  .story-section,
  .craft-section {
    padding: 52px 18px;
  }

  .craft-section {
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .intro-grid {
    gap: 20px;
  }

  .intro-grid p:not(.eyebrow),
  .story-copy p:not(.eyebrow),
  .craft-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.72;
  }

  .craft-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .craft-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(22px, 8vw, 30px);
    line-height: 1.18;
  }

  .craft-copy p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.62;
  }

  .story-kicker {
    font-size: 12px;
    line-height: 1.5;
  }

  .collection-grid,
  .story-stats,
  .craft-cards,
  .result-preview {
    grid-template-columns: 1fr;
  }

  .craft-cards {
    gap: 10px;
  }

  .craft-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    min-height: 0;
    padding: 16px 16px 15px;
    background: rgba(255, 252, 246, .7);
    box-shadow: 0 10px 24px rgba(79, 61, 33, .06);
  }

  .craft-card span {
    grid-row: 1 / 3;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.3;
  }

  .craft-card strong {
    margin-bottom: 0;
    font-size: 15px;
  }

  .craft-card p {
    font-size: 12px;
    line-height: 1.48;
  }

  .story-stat {
    min-height: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(152, 132, 23, .18);
    padding-bottom: 22px;
  }

  .story-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .story-stat span {
    font-size: clamp(44px, 17vw, 74px);
  }

  .story-stat small {
    font-size: clamp(18px, 6vw, 26px);
  }


  .tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .collection-card {
    min-height: 340px;
  }

  .card-face {
    padding: 22px;
  }

  .collection-card h3 {
    font-size: 23px;
  }

  .finder-shell {
    padding: 18px 12px;
  }

  .tab,
  .series-tab {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 0 26px 0 26px;
    font-size: 13px;
  }

  .finder .result-preview {
    grid-auto-columns: minmax(220px, 78vw);
    gap: 12px;
    margin-top: 18px;
    padding: 16px 0 14px;
  }

  .finder .swatch {
    min-height: 210px;
  }

  .site-footer {
    margin-top: 28px;
    padding: 24px 16px 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(118px, 136px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .footer-logo {
    width: 136px;
    margin-bottom: 0;
  }

  .footer-brand p,
  .footer-column p,
  .footer-column a {
    font-size: 12px;
    line-height: 1.42;
  }

  .footer-column h3 {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .footer-column a {
    margin-bottom: 7px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .footer-contact h3 {
    grid-column: 1 / -1;
  }

  .footer-contact p {
    margin-bottom: 7px;
  }

  .catalog-hero {
    width: 100%;
    max-width: 100%;
    min-height: 310px;
    padding: 108px 16px 34px;
  }

  .catalog-hero > div,
  .catalog-hero h1,
  .catalog-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .catalog-hero h1 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .catalog-hero p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.65;
  }

  .catalog-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 28px 12px 18px;
  }

  .series-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }

  .product-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .series-tab,
  .product-card,
  .product-image {
    min-width: 0;
    max-width: 100%;
  }

  .series-tab {
    min-height: 40px;
    padding: 0 6px;
    border-radius: 0 22px 0 22px;
    font-size: 11px;
  }

  .product-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .product-card h3 {
    padding: 12px 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .image-viewer-media {
    max-width: 96vw;
    max-height: 92vh;
  }

  .image-viewer.is-zoomed .image-viewer-media {
    transform: scale(1.45);
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 8px 14px;
    margin-top: 18px;
    padding-top: 12px;
    font-size: 11px;
    line-height: 1.45;
  }
}
