:root {
  color-scheme: light;
  --bg: #f4f1eb;
  --bg-soft: #fbfaf7;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #ffffff;
  --line: rgba(61, 56, 49, 0.11);
  --text: #262522;
  --muted: #77736c;
  --accent: #e8a56b;
  --accent-2: #78aea2;
  --danger: #d96b6b;
  --ok: #6ea86f;
  --shadow: 0 16px 40px rgba(74, 60, 42, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --content-width: 1480px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(234, 159, 77, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(120, 188, 174, 0.16), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, var(--bg) 100%);
  color: var(--text);
}

body {
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.ambient {
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.ambient-a {
  top: -10rem;
  left: -10rem;
  background: rgba(234, 159, 77, 0.36);
}

.ambient-b {
  right: -12rem;
  bottom: -12rem;
  background: rgba(120, 188, 174, 0.3);
}

.app {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.topbar,
.hero,
.panel,
.card,
.metric,
.product,
.pill,
.chip,
.sharebox,
.inquiry,
.admin-block,
.table-shell,
.detail {
  backdrop-filter: blur(16px);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3b46d, #78bcae);
  color: #fffaf4;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(234, 159, 77, 0.22);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.nav a,
.nav button,
.ghost,
.primary,
.tag,
.pill,
.status {
  border: 1px solid transparent;
}

.nav a,
.nav button,
.ghost,
.tag,
.pill {
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.nav a,
.nav button {
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.nav a:hover,
.nav button:hover,
.ghost:hover,
.primary:hover,
.pill:hover {
  transform: translateY(-1px);
  border-color: rgba(234, 159, 77, 0.24);
}

.nav .active {
  background: rgba(234, 159, 77, 0.18);
  border-color: rgba(234, 159, 77, 0.3);
  color: #7d4b18;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-copy,
.hero-aside,
.panel,
.detail,
.inquiry,
.admin-block,
.table-shell,
.sharebox {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 241, 0.96));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(234, 159, 77, 0.16), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(120, 188, 174, 0.12);
  color: #49786f;
  border: 1px solid rgba(120, 188, 174, 0.2);
  font-size: 0.84rem;
}

.hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 62ch;
}

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

.metric {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.metric strong {
  display: block;
  font-size: 1.25rem;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-aside {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.cover {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 159, 77, 0.12), rgba(120, 188, 174, 0.12)),
    linear-gradient(180deg, #fffdf9, #f3efe8);
  border: 1px solid var(--line);
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover .cover-copy {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.cover-copy strong {
  display: block;
  font-size: 1.02rem;
}

.cover-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.chip-row,
.tag-row,
.action-row,
.form-row,
.status-row,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.tag,
.pill,
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.chip {
  background: rgba(234, 159, 77, 0.12);
  border-color: rgba(234, 159, 77, 0.2);
  color: #8b561f;
}

.chip.ok {
  background: rgba(110, 168, 111, 0.12);
  border-color: rgba(110, 168, 111, 0.2);
  color: #4f7f50;
}

.chip.teal {
  background: rgba(120, 188, 174, 0.12);
  border-color: rgba(120, 188, 174, 0.2);
  color: #477a70;
}

.chip.danger {
  background: rgba(217, 107, 107, 0.12);
  border-color: rgba(217, 107, 107, 0.2);
  color: #a84f4f;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.panel {
  padding: 18px;
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.panel-head h2 {
  margin: 0;
  font-size: 1.24rem;
}

.panel-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.filters {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.55fr;
  gap: 12px;
  margin-bottom: 16px;
}

.field,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.field::placeholder,
.textarea::placeholder {
  color: #a39486;
}

.textarea {
  min-height: 132px;
  resize: vertical;
}

.select {
  appearance: none;
}

.pill {
  border-color: var(--line);
  transition:
    border-color 0.16s ease,
    transform 0.16s ease,
    background 0.16s ease;
}

.pill.active {
  border-color: rgba(234, 159, 77, 0.32);
  background: rgba(234, 159, 77, 0.18);
  color: #7d4b18;
}

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

.product {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.product:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 159, 77, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

.product.selected {
  border-color: rgba(234, 159, 77, 0.34);
  box-shadow: inset 0 0 0 1px rgba(234, 159, 77, 0.12);
}

.product-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(234, 159, 77, 0.1), rgba(120, 188, 174, 0.1));
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge,
.count-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.play-badge {
  left: 12px;
  top: 12px;
}

.count-badge {
  right: 12px;
  bottom: 12px;
}

.product h3,
.detail h3,
.inquiry h3,
.admin-block h3,
.sharebox h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.subtle {
  color: var(--muted);
  line-height: 1.6;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}

.price strong {
  font-size: 1.5rem;
  color: #b86518;
}

.price span {
  color: var(--muted);
}

.detail {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  margin-top: 14px;
}

.detail-cover img {
  width: 100%;
  display: block;
}

.details-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.section-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.section-card h4 {
  margin: 0 0 10px;
  font-size: 0.96rem;
}

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

.spec {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.spec strong {
  display: block;
  margin-top: 4px;
  font-size: 0.94rem;
}

.media-strip {
  display: grid;
  gap: 10px;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(234, 159, 77, 0.1), rgba(120, 188, 174, 0.1));
}

.media-item img {
  width: 100%;
  display: block;
}

.media-item.video::after {
  content: "视频";
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.table-shell {
  overflow: hidden;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.table th {
  color: #6f675e;
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(249, 245, 239, 0.96);
}

.table td {
  color: var(--text);
  font-size: 0.92rem;
}

.mini {
  color: var(--muted);
  font-size: 0.84rem;
}

.sharebox,
.inquiry,
.admin-block {
  padding: 18px;
}

.sharebox {
  margin-top: 18px;
}

.share-link {
  display: grid;
  gap: 8px;
  padding: 14px;
  margin-top: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  word-break: break-all;
}

.primary,
.ghost,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.primary {
  background: linear-gradient(135deg, #f3b46d, #78bcae);
  color: #2d1d10;
  border-color: rgba(234, 159, 77, 0.18);
  font-weight: 700;
}

.ghost {
  background: rgba(255, 255, 255, 0.88);
}

.danger-btn {
  background: rgba(217, 107, 107, 0.1);
  color: #a84f4f;
  border-color: rgba(217, 107, 107, 0.24);
}

.primary:disabled,
.ghost:disabled,
.danger-btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.notice {
  padding: 12px 14px;
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(234, 159, 77, 0.22);
  background: rgba(234, 159, 77, 0.1);
  color: #8b561f;
}

.notice.error {
  border-color: rgba(217, 107, 107, 0.24);
  background: rgba(217, 107, 107, 0.1);
  color: #a84f4f;
}

.notice.ok {
  border-color: rgba(110, 168, 111, 0.22);
  background: rgba(110, 168, 111, 0.08);
  color: #4f7f50;
}

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

.kpi {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.kpi strong {
  display: block;
  font-size: 1.38rem;
}

.kpi span {
  color: var(--muted);
  font-size: 0.84rem;
}

.stack {
  display: grid;
  gap: 10px;
}

.footer {
  padding: 18px 2px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .hero,
  .section {
    grid-template-columns: 1fr;
  }

  .detail {
    position: static;
  }
}

@media (max-width: 860px) {
  .topbar {
    position: static;
    border-radius: 26px;
    align-items: start;
    flex-direction: column;
  }

  .filters,
  .hero-grid,
  .product-grid,
  .masonry,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .app {
    width: min(100% - 14px, var(--content-width));
    padding-top: 12px;
  }

  .panel,
  .hero-copy,
  .hero-aside,
  .detail,
  .inquiry,
  .admin-block,
  .table-shell,
  .sharebox {
    border-radius: 22px;
  }
}

/* Home showroom polish */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 165, 107, 0.14), transparent 25%),
    radial-gradient(circle at 94% 12%, rgba(120, 174, 162, 0.12), transparent 24%),
    #f4f1eb;
}

.app {
  width: min(1420px, calc(100% - 48px));
  padding-top: 24px;
}

.topbar {
  top: 18px;
  margin-bottom: 22px;
  padding: 12px 14px 12px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(72, 61, 49, 0.08);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, #e8a56b 0%, #d9c28c 45%, #78aea2 100%);
  box-shadow: 0 8px 20px rgba(202, 145, 91, 0.2);
}

.brand-copy strong {
  letter-spacing: 0.02em;
}

.nav a,
.nav button {
  color: #5e5a53;
  font-size: 0.9rem;
}

.nav .active {
  color: #315f58;
  background: #e6f1ed;
  border-color: #cde1db;
}

.hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 22px;
  margin-bottom: 22px;
}

.hero-copy,
.hero-aside,
.panel,
.detail,
.inquiry,
.admin-block,
.table-shell,
.sharebox {
  border-color: rgba(62, 57, 50, 0.1);
  box-shadow: 0 20px 50px rgba(79, 66, 49, 0.07);
}

.hero-copy {
  min-height: 590px;
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.96)),
    var(--panel);
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: 14%;
  top: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(120, 174, 162, 0.2);
  box-shadow: 0 0 0 24px rgba(120, 174, 162, 0.035), 0 0 0 48px rgba(120, 174, 162, 0.025);
}

.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  background: #edf5f1;
  color: #46736a;
  border-color: #d7e9e2;
  letter-spacing: 0.02em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8a56b;
  box-shadow: 0 0 0 4px rgba(232, 165, 107, 0.16);
}

.hero h1 {
  position: relative;
  max-width: 720px;
  margin: 24px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: #709f94;
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-actions .primary,
.hero-actions .ghost {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
}

.hero-actions .primary span {
  font-size: 1.2rem;
  line-height: 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  color: #77736c;
  font-size: 0.82rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a56b;
}

.hero-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.metric {
  padding: 15px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.metric strong {
  color: #2e302d;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.metric span {
  margin-top: 7px;
  font-size: 0.77rem;
}

.hero-aside {
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.cover {
  min-height: 270px;
  border-radius: 22px;
  background: #f8f7f2;
}

.cover-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #6d786f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(80, 92, 84, 0.12);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.cover .cover-copy {
  inset: auto 14px 14px 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-aside-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 4px 1px;
}

.hero-aside-row strong,
.hero-aside-row .mini {
  display: block;
}

.hero-aside-row strong {
  margin-top: 5px;
  font-size: 0.95rem;
}

.hero-aside-mark,
.contact-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #35635b;
  background: #e3f0eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-certifications {
  gap: 7px;
}

.hero-certifications .chip {
  padding: 8px 10px;
  font-size: 0.78rem;
}

.sharebox {
  margin-top: 2px;
  padding: 18px;
  border-radius: 20px;
  background: #fbfaf7;
  box-shadow: none;
}

.sharebox-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.sharebox h3 {
  margin: 5px 0 0;
  font-size: 1.02rem;
}

.share-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #477a70;
  background: #e6f1ed;
}

.share-link {
  padding: 13px 14px;
  margin-top: 14px;
  border-radius: 14px;
  background: #fff;
}

.section {
  gap: 22px;
}

.product-section {
  scroll-margin-top: 24px;
}

.product-panel {
  padding: 24px;
}

.panel-head {
  margin-bottom: 20px;
}

.section-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #8d897f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.panel-head h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.045em;
}

.catalog-note {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 118px;
  padding: 10px 0 0 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.catalog-note-number {
  color: #e0a06c;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.filters {
  grid-template-columns: minmax(0, 1.35fr) 0.62fr 0.62fr;
  gap: 10px;
  padding: 10px;
  margin: 0 0 16px;
  border-radius: 17px;
  background: #f5f3ee;
}

.field,
.textarea,
.select {
  border-radius: 12px;
  border-color: rgba(71, 66, 59, 0.12);
  background: #fff;
}

.pill {
  padding: 8px 12px;
  background: #f6f4ef;
}

.pill.active {
  color: #35635b;
  background: #e3f0eb;
  border-color: #cbe1da;
}

.product-grid {
  gap: 16px;
}

.product {
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(68, 60, 49, 0.045);
}

.product:hover,
.product.selected {
  border-color: #cfe2db;
  background: #fff;
  box-shadow: 0 14px 32px rgba(68, 60, 49, 0.09);
}

.product-art {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  padding: 0;
  cursor: pointer;
  background: #f1f3ef;
}

.product-art img {
  transition: transform 0.35s ease;
}

.product:hover .product-art img {
  transform: scale(1.035);
}

.play-badge,
.count-badge {
  padding: 6px 9px;
  color: #4f5c55;
  background: rgba(255, 255, 255, 0.86);
}

.play-badge {
  letter-spacing: 0.02em;
}

.product-content {
  padding: 5px 5px 2px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 11px;
}

.product-category {
  color: #56867b;
  font-size: 0.76rem;
  font-weight: 700;
}

.product-update {
  color: #a09b91;
  font-size: 0.72rem;
}

.product h3 {
  margin: 9px 0 6px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.product .subtle {
  min-height: 48px;
  font-size: 0.86rem;
}

.product .price {
  justify-content: space-between;
  gap: 5px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #eeeae3;
}

.product .price strong {
  color: #bb7743;
  font-size: 1.38rem;
}

.product .price strong small {
  margin-left: 2px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product .price span {
  color: #8f8980;
  font-size: 0.75rem;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
  color: #7a817b;
  font-size: 0.75rem;
}

.product-highlights span {
  padding: 5px 8px;
  border-radius: 8px;
  background: #f3f6f2;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}

.product-stats {
  display: flex;
  gap: 8px;
  color: #a09b91;
  font-size: 0.74rem;
}

.product-card-footer .action-row {
  gap: 6px;
}

.product-card-footer .ghost {
  min-height: 32px;
  padding: 0 9px;
  border-radius: 10px;
  color: #5d766e;
  font-size: 0.75rem;
}

.detail {
  top: 92px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
}

.detail h3 {
  margin-top: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.detail-cover {
  margin-top: 18px;
  border-radius: 18px;
}

.detail .primary,
.detail .ghost {
  min-height: 40px;
  border-radius: 12px;
}

.section-card {
  border-color: #ebe7df;
  background: #fbfaf7;
}

.section-card h4 {
  color: #626058;
}

.spec {
  background: #fff;
}

.inquiry-section {
  scroll-margin-top: 24px;
  margin-top: 22px;
}

.inquiry {
  padding: 28px;
  background: #fff;
}

.inquiry h3 {
  margin-top: 4px;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.inquiry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 24px;
  color: #716f67;
  font-size: 0.78rem;
}

.inquiry-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.inquiry-points i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: #78aea2;
  font-size: 0.62rem;
  font-style: normal;
}

.field-label {
  display: block;
  flex: 1 1 240px;
  color: #6e6b63;
  font-size: 0.78rem;
  font-weight: 600;
}

.field-label > span {
  color: #d98163;
}

.field-label .field,
.field-label .select,
.field-label .textarea {
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.field-label .textarea {
  min-height: 104px;
}

.file-field {
  padding: 10px 12px;
  color: #8b877f;
  font-size: 0.8rem;
}

.consent-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #817d74;
  font-size: 0.76rem;
}

.consent-row input {
  accent-color: #78aea2;
}

.contact-panel {
  align-self: stretch;
  padding: 28px;
  background: #f0f6f2;
  border-color: #d8e8e0;
  box-shadow: none;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(74, 110, 98, 0.14);
}

.contact-brand strong,
.contact-brand span {
  display: block;
}

.contact-brand strong {
  font-size: 0.96rem;
}

.contact-brand span {
  margin-top: 4px;
  color: #779087;
  font-size: 0.75rem;
}

.contact-panel h3 {
  margin-top: 26px;
  font-size: 1.45rem;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(74, 110, 98, 0.14);
}

.contact-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(74, 110, 98, 0.14);
}

.contact-item span {
  color: #789187;
  font-size: 0.76rem;
}

.contact-item strong {
  color: #355c53;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: #668178;
  font-size: 0.76rem;
}

.contact-note-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  background: #78aea2;
  font-size: 0.68rem;
}

.footer {
  padding-top: 28px;
  color: #938d83;
}

@media (max-width: 1180px) {
  .hero-copy {
    min-height: 0;
  }

  .detail {
    position: static;
  }
}

@media (max-width: 860px) {
  .app {
    width: min(100% - 20px, var(--content-width));
    padding-top: 10px;
  }

  .topbar {
    margin-bottom: 14px;
    padding: 12px;
  }

  .topbar .nav:last-child {
    width: 100%;
  }

  .hero {
    gap: 14px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-aside {
    padding: 10px;
  }

  .product-panel,
  .inquiry,
  .contact-panel {
    padding: 20px;
  }

  .catalog-note {
    display: none;
  }

  .product-card-footer {
    align-items: flex-end;
    flex-direction: column;
  }

  .product-card-footer,
  .product-card-footer .action-row {
    width: 100%;
  }

  .product-card-footer .action-row .ghost {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .brand-copy span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    gap: 5px;
  }

  .nav a,
  .nav button {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .hero-copy::before {
    right: -28px;
    top: 12px;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-aside-row strong {
    font-size: 0.84rem;
  }

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

  .product .subtle {
    min-height: 0;
  }

  .product-card-footer {
    align-items: center;
    flex-direction: row;
  }

  .product-card-footer,
  .product-card-footer .action-row {
    width: auto;
  }

  .contact-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-item strong {
    text-align: left;
  }
}

/* Haworth-inspired editorial layout */
body {
  background: #f4f4f1;
  color: #1f2527;
}

.ambient {
  display: none;
}

.app {
  width: min(100%, 1440px);
  padding: 0 0 48px;
}

.topbar.site-header {
  position: sticky;
  top: 0;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d9d9d4;
  background: #fff;
  box-shadow: 0 2px 10px rgba(32, 38, 38, 0.035);
  backdrop-filter: none;
}

.utilitybar,
.mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
}

.utilitybar {
  min-height: 38px;
  color: #6e7471;
  background: #efeee9;
  font-size: 0.72rem;
}

.utilitybar-left,
.utilitybar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-brand {
  color: #273032;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.utilitybar-right a,
.utility-locale {
  white-space: nowrap;
}

.utilitybar-right a:hover {
  color: #426d66;
}

.mainbar {
  min-height: 84px;
  gap: 28px;
}

.mainbar .brand {
  flex: 0 0 auto;
}

.mainbar .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 0;
  color: #fff;
  background: #1f2527;
  box-shadow: none;
  font-size: 0.8rem;
}

.mainbar .brand-copy strong {
  color: #1f2527;
  font-size: 0.98rem;
}

.mainbar .brand-copy span {
  color: #8b8e89;
  font-size: 0.72rem;
}

.main-nav {
  flex: 1;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 32px 0 29px;
  border: 0;
  border-radius: 0;
  color: #303637;
  background: transparent;
  font-size: 0.86rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: #1f2527;
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: #1f2527;
  border: 0;
  background: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.session-label {
  color: #92948e;
  font-size: 0.72rem;
}

.nav-icon-link {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #2a3031;
  font-size: 1.35rem;
  line-height: 1;
}

.nav-quote {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 15px;
  color: #fff;
  background: #1f2527;
  font-size: 0.77rem;
}

.nav-quote span {
  font-size: 1rem;
}

.compact-action {
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6c716e;
  font-size: 0.74rem;
}

.reference-hero {
  position: relative;
  min-height: 650px;
  background: #d9d8d2;
  overflow: hidden;
}

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

.reference-hero-media img {
  object-fit: cover;
}

.reference-hero-shade {
  background: linear-gradient(90deg, rgba(11, 18, 20, 0.16), transparent 62%), linear-gradient(0deg, rgba(11, 18, 20, 0.2), transparent 42%);
}

.reference-hero-card {
  position: absolute;
  left: clamp(28px, 6vw, 84px);
  bottom: 66px;
  width: min(470px, calc(100% - 56px));
  padding: 36px 38px 32px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 44px rgba(24, 31, 31, 0.14);
}

.reference-kicker {
  display: block;
  color: #6d746f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.reference-hero-card h1 {
  margin: 22px 0 15px;
  color: #172124;
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.reference-hero-card h1 em {
  color: #47756d;
  font-style: normal;
}

.reference-hero-card p {
  margin: 0;
  color: #636b67;
  font-size: 0.92rem;
  line-height: 1.75;
}

.reference-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.reference-hero-actions .primary {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 0;
  color: #fff;
  background: #1f2527;
  border-color: #1f2527;
}

.reference-hero-actions .primary span {
  margin-left: 10px;
}

.text-link {
  padding: 0;
  border: 0;
  color: #406d65;
  background: transparent;
  font-size: 0.8rem;
  text-decoration: none;
}

.text-link:hover {
  color: #1f2527;
}

.reference-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 27px;
  padding-top: 15px;
  border-top: 1px solid #dcded9;
  color: #818781;
  font-size: 0.72rem;
}

.reference-hero-index,
.reference-hero-next {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.reference-hero-index {
  top: 32px;
  right: 38px;
}

.reference-hero-next {
  right: 38px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.reference-hero-next span {
  font-size: 1rem;
}

.product-section {
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.68fr);
  gap: 0;
  margin: 0;
  padding: 78px 48px 82px;
  background: #fff;
}

.product-panel {
  padding: 0 42px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-section > .detail {
  top: 120px;
  min-width: 0;
  border: 0;
  border-left: 1px solid #e1e1dc;
  border-radius: 0;
  background: #f7f7f4;
  box-shadow: none;
}

.product-panel .panel-head h2 {
  color: #1f2527;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.product-panel .panel-head p {
  max-width: 560px;
}

.filters {
  background: #f3f3ef;
  border-radius: 0;
}

.product {
  border-radius: 0;
  border-color: #dedfd9;
  box-shadow: none;
}

.product:hover,
.product.selected {
  border-color: #9cb9b0;
  box-shadow: none;
}

.product-art {
  border-radius: 0;
}

.product h3 {
  font-size: 1.1rem;
}

.detail {
  padding: 26px;
}

.detail .eyebrow {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #71837c;
  background: transparent;
  font-size: 0.72rem;
}

.detail-cover,
.section-card,
.spec,
.media-item {
  border-radius: 0;
}

.editorial-section {
  padding: 78px 48px 84px;
  background: #f1f1ed;
}

.editorial-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.editorial-heading h2 {
  margin: 0;
  color: #1f2527;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: -0.065em;
}

.editorial-heading p {
  max-width: 360px;
  margin: 0 0 2px;
  color: #707771;
  font-size: 0.88rem;
  line-height: 1.75;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.editorial-card {
  background: #fff;
}

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

.editorial-card a {
  display: block;
  height: 100%;
}

.editorial-media {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #d9ded8;
}

.editorial-card.featured .editorial-media {
  height: 100%;
  min-height: 520px;
}

.editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 25, 26, 0.35), transparent 50%);
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.editorial-card:hover .editorial-media img {
  transform: scale(1.04);
}

.editorial-copy {
  padding: 19px 20px 21px;
}

.editorial-card.featured .editorial-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(17, 25, 26, 0.72), transparent);
}

.editorial-card.featured {
  position: relative;
}

.editorial-copy > span {
  color: #6f877f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.editorial-card.featured .editorial-copy > span {
  color: #d7e7e1;
}

.editorial-copy h3 {
  margin: 9px 0 18px;
  color: #1f2527;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.editorial-card.featured .editorial-copy h3 {
  color: #fff;
  font-size: 1.8rem;
}

.editorial-copy strong {
  color: #47756d;
  font-size: 0.76rem;
}

.editorial-card.featured .editorial-copy strong {
  color: #fff;
}

.editorial-copy b {
  margin-left: 7px;
  font-size: 1rem;
}

.inquiry-section {
  margin: 0;
  padding: 80px 48px;
  background: #fff;
}

.inquiry,
.contact-panel {
  border-radius: 0;
  box-shadow: none;
}

.site-footer {
  padding: 58px 48px 24px;
  color: #d8ddda;
  background: #1f2527;
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.75fr);
  gap: 40px;
  padding-bottom: 54px;
}

.footer-brand-block .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 0;
  color: #1f2527;
  background: #d7e5df;
  box-shadow: none;
}

.footer-brand-block h3 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 1.06rem;
}

.footer-brand-block p {
  margin: 0;
  color: #aeb9b4;
  font-size: 0.8rem;
  line-height: 1.75;
}

.footer-share {
  margin-top: 20px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid #7faaa0;
  color: #d7e5df;
  background: transparent;
  font-size: 0.78rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.8rem;
}

.footer-column a,
.footer-column span,
.footer-column small {
  color: #aeb9b4;
  font-size: 0.78rem;
}

.footer-column a:hover,
.footer-share:hover {
  color: #fff;
}

.footer-contact-column small {
  margin-top: 3px;
  color: #80928b;
  line-height: 1.5;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 226, 220, 0.18);
  color: #84928c;
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .utilitybar,
  .mainbar {
    padding-right: 22px;
    padding-left: 22px;
  }

  .main-nav {
    gap: 16px;
  }

  .session-label,
  .nav-icon-link,
  .compact-action {
    display: none;
  }

  .product-section,
  .editorial-section,
  .inquiry-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-panel {
    padding-right: 20px;
  }

  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .utilitybar {
    min-height: 32px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.65rem;
  }

  .utilitybar-left > span:not(.utility-brand),
  .utilitybar-right a:not(:last-of-type),
  .utility-locale {
    display: none;
  }

  .mainbar {
    min-height: 68px;
    padding-right: 14px;
    padding-left: 14px;
    gap: 10px;
  }

  .mainbar .brand-copy span,
  .main-nav a:nth-child(n + 3) {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 14px;
  }

  .main-nav a {
    padding: 25px 0 23px;
    font-size: 0.75rem;
  }

  .main-nav a::after {
    bottom: 15px;
  }

  .nav-quote {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .reference-hero {
    min-height: 620px;
  }

  .reference-hero-card {
    right: 14px;
    bottom: 20px;
    left: 14px;
    width: auto;
    padding: 25px 22px 22px;
  }

  .reference-hero-card h1 {
    margin-top: 17px;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .reference-hero-card p {
    font-size: 0.82rem;
  }

  .reference-hero-index {
    top: 20px;
    right: 18px;
  }

  .reference-hero-next {
    right: 18px;
    bottom: 245px;
    font-size: 0.68rem;
  }

  .product-section,
  .editorial-section,
  .inquiry-section {
    padding: 56px 16px;
  }

  .product-panel {
    padding-right: 0;
  }

  .product-section > .detail {
    margin-top: 18px;
    border-left: 0;
  }

  .editorial-heading {
    display: block;
  }

  .editorial-heading p {
    margin-top: 14px;
  }

  .editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .editorial-card.featured {
    grid-row: auto;
  }

  .editorial-media,
  .editorial-card.featured .editorial-media {
    height: 280px;
    min-height: 0;
  }

  .site-footer {
    padding: 46px 16px 20px;
  }

  .site-footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 22px;
  }

  .footer-brand-block {
    grid-column: span 2;
  }

  .site-footer-bottom {
    display: block;
    line-height: 1.8;
  }
}

/* Supplier transparency and designer resources */
.supplier-strip {
  padding: 64px 48px 68px;
  color: #1f2527;
  background: #f7f7f3;
  border-top: 1px solid #e1e1dc;
  border-bottom: 1px solid #e1e1dc;
}

.supplier-strip-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.supplier-strip-heading h2,
.designer-intro h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  letter-spacing: -0.06em;
}

.supplier-strip-heading p {
  max-width: 380px;
  margin: 0 0 2px;
  color: #707771;
  font-size: 0.86rem;
  line-height: 1.75;
}

.supplier-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dfe1db;
  border-bottom: 1px solid #dfe1db;
}

.supplier-fact {
  min-height: 140px;
  padding: 22px 24px 20px 0;
  border-right: 1px solid #dfe1db;
}

.supplier-fact + .supplier-fact {
  padding-left: 24px;
}

.supplier-fact:last-child {
  border-right: 0;
}

.supplier-fact > span,
.supplier-fact small,
.supplier-proof-label {
  display: block;
  color: #7e8781;
  font-size: 0.72rem;
}

.supplier-fact strong {
  display: block;
  margin: 14px 0 9px;
  color: #315f58;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.04em;
}

.supplier-bottom {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  margin-top: 30px;
}

.supplier-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 28px;
}

.supplier-capability-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d5955;
  font-size: 0.82rem;
}

.supplier-capability-list i {
  color: #d28c59;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.supplier-proof {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-left: 24px;
  border-left: 1px solid #dfe1db;
}

.supplier-proof strong {
  color: #315f58;
  font-size: 0.94rem;
  font-weight: 600;
}

.supplier-proof > span:last-child {
  color: #7b847e;
  font-size: 0.72rem;
  line-height: 1.6;
}

.product-facts-card {
  background: #f0f6f2;
  border-color: #d8e8e0;
}

.product-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-fact-grid > div {
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.65);
}

.product-fact-grid span,
.product-fact-grid strong {
  display: block;
}

.product-fact-grid span {
  color: #789187;
  font-size: 0.72rem;
}

.product-fact-grid strong {
  margin-top: 5px;
  color: #355c53;
  font-size: 0.82rem;
  line-height: 1.45;
}

.designer-resources {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  padding: 78px 48px 84px;
  color: #1f2527;
  background: #e9efeb;
}

.designer-intro p {
  max-width: 390px;
  margin: 18px 0 24px;
  color: #68746e;
  font-size: 0.86rem;
  line-height: 1.8;
}

.designer-intro .primary {
  border-radius: 0;
  color: #fff;
  background: #1f2527;
  border-color: #1f2527;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #cbd8d1;
}

.resource-item {
  min-height: 174px;
  padding: 22px;
  background: #e9efeb;
}

.resource-item > span {
  color: #d28c59;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.resource-item strong {
  display: block;
  margin-top: 32px;
  color: #315f58;
  font-size: 1rem;
}

.resource-item p {
  margin: 8px 0 0;
  color: #78847e;
  font-size: 0.76rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .supplier-strip,
  .designer-resources {
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-section {
    grid-template-columns: 1fr;
  }

  .product-section > .detail {
    position: static;
    border-top: 1px solid #e1e1dc;
    border-left: 0;
  }

  .designer-resources {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .supplier-strip {
    padding: 54px 16px 56px;
  }

  .supplier-strip-heading {
    display: block;
  }

  .supplier-strip-heading p {
    margin-top: 14px;
  }

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

  .supplier-fact,
  .supplier-fact + .supplier-fact {
    min-height: 122px;
    padding: 17px 14px 16px 0;
  }

  .supplier-fact:nth-child(2) {
    border-right: 0;
    padding-left: 14px;
  }

  .supplier-fact:nth-child(n + 3) {
    border-top: 1px solid #dfe1db;
  }

  .supplier-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .supplier-capability-list,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .supplier-proof {
    padding: 20px 0 0;
    border-top: 1px solid #dfe1db;
    border-left: 0;
  }

  .designer-resources {
    padding: 56px 16px;
  }

  .product-fact-grid {
    grid-template-columns: 1fr;
  }
}

/* Final MVP usability polish */
.product .price {
  align-items: end;
}

.product .price > div {
  min-width: 0;
}

.price-caption {
  display: block;
  margin-bottom: 4px;
  color: #8b8d87;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product .price strong {
  white-space: nowrap;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
}

.product .price strong small {
  margin: 0 2px;
  color: #8e9c95;
  font-size: 0.8em;
  font-weight: 500;
}

.product .price > span {
  flex: 0 0 auto;
  padding-bottom: 2px;
}

.mobile-quickbar {
  display: none;
}

@media (max-width: 680px) {
  .app {
    padding-bottom: 88px;
  }

  .product .price strong {
    font-size: 1.08rem;
  }

  .product-highlights {
    gap: 5px;
  }

  .product-highlights span {
    font-size: 0.7rem;
  }

  .mobile-quickbar {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d9e0db;
    box-shadow: 0 12px 30px rgba(31, 37, 39, 0.14);
    backdrop-filter: blur(14px);
  }

  .mobile-quickbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    gap: 7px;
    color: #315f58;
    font-size: 0.78rem;
  }

  .mobile-quickbar a span {
    color: #6c9b8f;
    font-size: 0.95rem;
  }

  .mobile-quickbar-primary {
    color: #fff !important;
    background: #1f2527;
  }

  .mobile-quickbar-primary span {
    color: #d7e5df !important;
  }
}

/* Supply-chain transparency */
.supply-chain {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: 64px;
  padding: 76px 48px 80px;
  color: #1f2527;
  background: #fff;
  border-bottom: 1px solid #e1e1dc;
}

.supply-chain-lead h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.06em;
}

.supply-chain-lead > p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #707771;
  font-size: 0.86rem;
  line-height: 1.8;
}

.supply-chain-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 360px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #dfe1db;
}

.supply-chain-note-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: #78aea2;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
}

.supply-chain-note strong,
.supply-chain-note span {
  display: block;
}

.supply-chain-note strong {
  color: #315f58;
  font-size: 0.8rem;
}

.supply-chain-note span {
  margin-top: 5px;
  color: #7b847e;
  font-size: 0.74rem;
  line-height: 1.6;
}

.supply-chain-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.supply-source-list {
  border-top: 1px solid #dfe1db;
}

.supply-source-heading,
.supply-source-row {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
  align-items: center;
}

.supply-source-heading {
  padding: 10px 0;
  color: #8a918b;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.supply-source-row {
  min-height: 84px;
  padding: 15px 0;
  border-top: 1px solid #e7e8e3;
}

.supply-source-row strong,
.supply-source-row span {
  display: block;
}

.supply-source-row strong {
  color: #315f58;
  font-size: 0.88rem;
  font-weight: 600;
}

.supply-source-row div span {
  margin-top: 5px;
  color: #7a837d;
  font-size: 0.75rem;
}

.supply-source-row > span {
  color: #707a74;
  font-size: 0.76rem;
  line-height: 1.55;
}

.cooperation-card {
  padding: 28px;
  color: #dce7e2;
  background: #273334;
}

.cooperation-label {
  color: #a9c8bc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.cooperation-card h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.cooperation-card > p {
  margin: 0;
  color: #b8c7c0;
  font-size: 0.8rem;
  line-height: 1.75;
}

.cooperation-summary {
  margin-top: 23px;
  padding-top: 17px;
  border-top: 1px solid rgba(216, 231, 225, 0.18);
}

.cooperation-summary span,
.cooperation-summary strong {
  display: block;
}

.cooperation-summary span {
  color: #91aaa1;
  font-size: 0.7rem;
}

.cooperation-summary strong {
  margin-top: 7px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.6;
}

.proof-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.proof-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c0d1c9;
  font-size: 0.75rem;
}

.proof-list i {
  color: #e2aa78;
  font-style: normal;
}

.cooperation-card .text-link {
  display: inline-flex;
  margin-top: 24px;
  color: #dce7e2;
  border-bottom: 1px solid #7da99c;
}

.cooperation-card .text-link span {
  margin-left: 8px;
}

.admin-short-textarea {
  min-height: 82px;
}

@media (max-width: 900px) {
  .supply-chain {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .supply-chain {
    padding: 56px 16px;
  }

  .supply-chain-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .supply-source-heading,
  .supply-source-row {
    grid-template-columns: 1fr 0.8fr;
    gap: 14px;
  }

  .supply-source-row {
    min-height: 92px;
  }

  .cooperation-card {
    padding: 24px 20px;
  }
}

/* People and portfolio editorial section */
.people-studio {
  padding: 82px 48px 88px;
  color: #1f2527;
  background: #f7f7f3;
  border-bottom: 1px solid #e1e1dc;
}

.people-heading,
.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.people-heading {
  margin-bottom: 32px;
}

.people-heading h2,
.portfolio-heading h3 {
  margin: 0;
  letter-spacing: -0.06em;
}

.people-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.people-heading p,
.portfolio-heading p {
  max-width: 380px;
  margin: 0 0 2px;
  color: #707771;
  font-size: 0.86rem;
  line-height: 1.75;
}

.people-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #d9ded8;
}

.people-profile {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1.18fr);
  min-height: 390px;
  background: #fff;
}

.people-profile-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #d9ded8;
}

.people-profile-media::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding-top: 11px;
  content: "PROFILE / PORTRAIT";
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.people-profile-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.people-profile:hover .people-profile-media img {
  transform: scale(1.035);
}

.people-profile-media > span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.people-profile-copy {
  display: flex;
  flex-direction: column;
  padding: 31px 29px 26px;
}

.people-profile-role,
.portfolio-copy > span {
  color: #6f877f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.people-profile-copy h3 {
  margin: 15px 0 18px;
  color: #1f2527;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.06em;
}

.people-profile-body {
  display: grid;
  gap: 11px;
}

.people-profile-body p {
  margin: 0;
  color: #65706a;
  font-size: 0.78rem;
  line-height: 1.8;
}

.people-profile-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.people-profile-focus span {
  padding: 6px 9px;
  color: #4d6e65;
  background: #eef4f0;
  font-size: 0.69rem;
}

.portfolio-heading {
  margin: 68px 0 25px;
}

.portfolio-heading h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

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

.portfolio-card {
  display: block;
  color: inherit;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(31, 37, 39, 0.09);
}

.portfolio-media {
  position: relative;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  background: #d9ded8;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.04);
}

.portfolio-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(17, 25, 26, 0.38), transparent 52%);
  pointer-events: none;
}

.portfolio-media > span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 13px;
  color: #fff;
  font-size: 0.68rem;
}

.portfolio-copy {
  padding: 17px 17px 19px;
}

.portfolio-copy h4 {
  margin: 9px 0 8px;
  color: #1f2527;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.portfolio-copy p {
  min-height: 42px;
  margin: 0;
  color: #768079;
  font-size: 0.74rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .people-profile {
    grid-template-columns: 1fr;
  }

  .people-profile-media,
  .people-profile-media img {
    min-height: 280px;
    height: 280px;
  }

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

@media (max-width: 900px) {
  .people-studio {
    padding-right: 24px;
    padding-left: 24px;
  }

  .people-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .people-studio {
    padding: 56px 16px;
  }

  .people-heading,
  .portfolio-heading {
    display: block;
  }

  .people-heading p,
  .portfolio-heading p {
    margin-top: 14px;
  }

  .people-profile-copy {
    padding: 25px 21px 22px;
  }

  .people-profile-media,
  .people-profile-media img {
    min-height: 250px;
    height: 250px;
  }

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