:root {
  --red: #c9161d;
  --red-dark: #951018;
  --ink: #181b1f;
  --charcoal: #23282c;
  --slate: #52606c;
  --muted: #7b858d;
  --line: #e3e5e1;
  --paper: #f7f7f3;
  --warm: #ede7dc;
  --gold: #b6894b;
  --white: #fff;
  --shadow: 0 24px 70px rgba(20, 24, 28, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .52));
  border-bottom: 0;
  backdrop-filter: blur(22px) saturate(135%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  padding: 0 10px 0 18px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(218, 221, 216, .9);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(14, 20, 28, .13), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.brand {
  display: flex;
  align-items: center;
  width: 172px;
  min-width: 136px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 4px;
  color: #343940;
  font-size: 14px;
  font-weight: 800;
  background: rgba(245, 244, 239, .78);
  border: 1px solid rgba(227, 229, 225, .86);
  border-radius: 999px;
}

.site-nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

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

.site-nav a:hover {
  color: var(--red);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 7px 18px rgba(20, 24, 28, .08);
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, #b80f18, var(--red));
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(201, 22, 29, .25);
  white-space: nowrap;
}

.header-phone::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  content: "";
  background: rgba(255, 255, 255, .86);
  border-radius: 50%;
}

.secondary-header-inner {
  height: 60px;
  gap: 18px;
}

.secondary-header-inner .brand {
  width: 156px;
  min-width: 132px;
}

.secondary-header-inner .site-nav {
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
}

.secondary-header-inner .site-nav a {
  padding: 9px 10px;
}

.secondary-header-inner .site-nav a::after {
  bottom: 5px;
}

.secondary-header-inner .header-phone {
  min-height: 36px;
  padding: 0 13px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82vh;
  padding: 138px 0 70px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-bg {
  object-fit: cover;
  object-position: center 34%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 14, .82), rgba(8, 11, 14, .42) 48%, rgba(8, 11, 14, .12)),
    linear-gradient(0deg, rgba(8, 11, 14, .44), rgba(8, 11, 14, .08));
}

.hero-content,
.section-head,
.pain-grid,
.epcs-grid,
.process-strip,
.center-gallery,
.designer-tools,
.designer-list,
.craft-layout,
.honor-grid,
.news-list,
.case-list,
.contact-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6d9;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.32;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 900;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 32px rgba(201, 22, 29, .28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .44);
}

.btn-outline {
  color: var(--red);
  background: var(--white);
  border-color: rgba(201, 22, 29, .26);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(790px, 100%);
  margin: 44px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
}

.hero-stats div {
  padding: 20px;
  background: rgba(10, 13, 16, .44);
}

.hero-stats dt {
  font-size: 30px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .84);
}

.section {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head p {
  max-width: 800px;
  color: var(--slate);
  font-size: 18px;
}

.section-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

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

.section-head-dark p {
  color: rgba(255, 255, 255, .74);
}

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

.pain-grid article,
.epcs-grid article,
.honor-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.pain-grid p,
.epcs-grid p,
.honor-grid p {
  margin-bottom: 0;
  color: var(--slate);
}

.epcs-section,
.craft-section {
  background: var(--charcoal);
}

.epcs-grid article {
  color: var(--white);
  background: #30363b;
  border-color: rgba(255, 255, 255, .1);
}

.epcs-grid strong {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  font-size: 24px;
  background: var(--red);
  border-radius: 50%;
}

.epcs-grid p {
  color: rgba(255, 255, 255, .72);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.process-strip span {
  display: grid;
  min-height: 70px;
  padding: 10px;
  place-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, .08);
}

.center-gallery {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.center-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.center-gallery .feature-image {
  grid-row: span 2;
}

.center-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 12px;
  color: var(--white);
  font-weight: 900;
  background: rgba(17, 20, 24, .72);
  border-radius: 4px;
}

.designers-section {
  background: linear-gradient(180deg, #fbfbf8, #f1eee7);
}

.designer-tools {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.search-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
}

.search-field input:focus {
  border-color: rgba(201, 22, 29, .55);
  box-shadow: 0 0 0 3px rgba(201, 22, 29, .08);
}

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

.filter-group button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.filter-group button.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.designer-list,
.news-list,
.case-list {
  display: grid;
  gap: 18px;
}

.designer-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(20, 24, 28, .08);
}

.designer-avatar {
  min-height: 260px;
  overflow: hidden;
  background: var(--warm);
  border-radius: 6px;
}

.designer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.designer-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
  background: #f1f3ef;
  border-radius: 99px;
}

.designer-card h3 {
  margin-bottom: 4px;
  font-size: 28px;
}

.designer-title {
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 900;
}

.designer-card p {
  color: var(--slate);
}

.designer-works {
  margin: 0 0 18px;
  color: var(--slate);
}

.designer-works strong {
  color: var(--ink);
}

.designer-case-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.designer-case-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.empty-state {
  padding: 38px;
  text-align: center;
  background: var(--white);
  border: 1px dashed #cfd4d0;
  border-radius: 8px;
}

.empty-state h3 {
  margin-bottom: 8px;
}

.empty-state p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: var(--slate);
}

.craft-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
}

.craft-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.craft-tabs button {
  min-height: 54px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.craft-tabs button.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.craft-display {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 460px;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.craft-display img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  background: #ecefea;
}

.craft-copy {
  display: grid;
  align-content: center;
  padding: 46px;
}

.craft-copy p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 18px;
}

.honor-grid article {
  min-height: 150px;
}

.honor-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.news-section {
  background: linear-gradient(180deg, #fbfbf8, #f1eee7);
}

.news-index-page {
  min-height: 100vh;
  background: #f5f4ef;
}

.news-index-main {
  padding-top: 84px;
}

.news-index-banner {
  position: relative;
  overflow: hidden;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  height: clamp(250px, 28vw, 360px);
  background: #d9dee1;
  box-shadow: 0 18px 42px rgba(20, 24, 28, .12);
}

.news-index-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 15, 22, .58), rgba(10, 15, 22, .18) 46%, rgba(10, 15, 22, 0)),
    linear-gradient(180deg, rgba(10, 15, 22, .08), rgba(10, 15, 22, .32));
}

.news-index-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.news-index-banner h1 {
  position: absolute;
  bottom: 38px;
  left: 42px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .34);
}

.news-index-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.news-index-list {
  display: grid;
  gap: 18px;
}

.news-row {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 24, 28, .08);
}

.news-row-media {
  display: grid;
  min-height: 190px;
  color: var(--muted);
  font-weight: 900;
  background: var(--warm);
  place-items: center;
}

.news-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-row-body {
  display: grid;
  align-content: center;
  padding: 24px 28px;
}

.news-row-body h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.35;
}

.news-row-body h2 a {
  transition: color .2s ease;
}

.news-row-body h2 a:hover {
  color: var(--red);
}

.news-row-body p {
  margin: 0 0 16px;
  color: var(--slate);
}

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

.news-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 24, 28, .08);
}

.news-card-media,
.case-card-media {
  display: grid;
  color: var(--muted);
  font-weight: 900;
  background: var(--warm);
  place-items: center;
}

.news-card-media img,
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--warm);
}

.news-card-body {
  display: grid;
  align-content: start;
  padding: 22px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.news-meta span {
  color: var(--red);
}

.news-card h3 {
  min-height: 56px;
  margin-bottom: 12px;
  font-size: 22px;
}

.news-card h3 a,
.case-card h3 a {
  transition: color .2s ease;
}

.news-card h3 a:hover,
.case-card h3 a:hover {
  color: var(--red);
}

.news-card p {
  color: var(--slate);
}

.news-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  color: var(--red);
  font-weight: 900;
}

.cases-section {
  background: #f0f1ec;
}

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

.case-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 24, 28, .08);
}

.case-card-media,
.case-card-media img,
.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.case-card-media img,
.case-card img {
  object-fit: cover;
}

.case-card-body {
  padding: 20px;
}

.case-card-body p {
  color: var(--slate);
}

.detail-page {
  min-height: 100vh;
  background: #f5f4ef;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
  padding: 0 max(20px, calc((100vw - 1220px) / 2));
}

.detail-header .brand img {
  width: 170px;
}

.detail-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 900;
}

.detail-page main {
  padding-top: 84px;
}

.detail-loading,
.detail-empty {
  display: grid;
  min-height: calc(100vh - 62px);
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  place-content: center;
}

.detail-empty h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
}

.detail-empty p,
.detail-loading p {
  color: var(--slate);
}

.detail-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-article {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #7c8185;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #54595d;
}

.breadcrumb a:hover {
  color: var(--red);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 36px;
  align-items: stretch;
  min-height: 480px;
}

.detail-hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.detail-back {
  width: fit-content;
  color: var(--red);
  font-weight: 900;
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.detail-hero-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span {
  padding: 7px 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  background: var(--white);
  border: 1px solid rgba(201, 22, 29, .16);
  border-radius: 999px;
}

.detail-cover {
  overflow: hidden;
  min-height: 360px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.detail-cover-empty {
  display: grid;
  height: 100%;
  min-height: 360px;
  color: var(--muted);
  font-weight: 900;
  place-items: center;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-top: 34px;
}

.detail-main,
.detail-side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 24, 28, .08);
}

.detail-main {
  padding: 34px;
}

.detail-main h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.detail-main p {
  color: var(--slate);
  font-size: 17px;
}

.rich-content {
  color: var(--slate);
  font-size: 17px;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin: 30px 0 12px;
  color: var(--ink);
  line-height: 1.3;
}

.rich-content h2:first-child,
.rich-content h3:first-child,
.rich-content h4:first-child,
.rich-content p:first-child {
  margin-top: 0;
}

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content blockquote {
  margin: 0 0 18px;
}

.rich-content ul,
.rich-content ol {
  padding-left: 24px;
}

.rich-content li + li {
  margin-top: 6px;
}

.rich-content blockquote {
  padding: 16px 18px;
  color: var(--ink);
  background: #f7f4ef;
  border-left: 4px solid var(--red);
  border-radius: 6px;
}

.rich-content a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rich-content img {
  width: auto;
  max-width: 100%;
  margin: 20px 0;
  border-radius: 8px;
}

.detail-main p + h2 {
  margin-top: 34px;
}

.detail-side {
  align-self: start;
  padding: 26px;
}

.detail-side h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.detail-side p {
  color: var(--slate);
}

.detail-side dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.detail-side dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-side dt {
  color: var(--muted);
  font-weight: 900;
}

.detail-side dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.news-traditional {
  width: min(1220px, calc(100% - 40px));
  padding-top: 28px;
}

.news-detail-banner {
  overflow: hidden;
  height: clamp(250px, 28vw, 360px);
  background: #d9dee1;
  box-shadow: 0 18px 42px rgba(20, 24, 28, .12);
}

.news-detail-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.news-article-title {
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.news-article-title .detail-back {
  display: inline-flex;
  margin-bottom: 14px;
}

.news-article-title h1 {
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}

.news-article-body {
  width: 100%;
  margin: 0;
  padding: 42px 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 24, 28, .08);
}

.news-article-summary {
  margin: 0 0 28px;
  padding: 18px 20px;
  color: #656b70;
  font-size: 15px;
  line-height: 1.9;
  background: #f7f5ef;
  border-left: 4px solid var(--red);
}

.news-article-inline-cover {
  margin: 0 0 30px;
  overflow: hidden;
  background: var(--warm);
  border-radius: 6px;
}

.news-article-inline-cover img {
  width: 100%;
  object-fit: contain;
}

.news-article-body > p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.9;
}

.news-article-body .origin-link {
  margin-top: 26px;
}

.news-hot-sidebar {
  position: sticky;
  top: 84px;
}

.news-hot-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 24, 28, .08);
}

.news-hot-card h3 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  font-size: 22px;
  border-bottom: 2px solid var(--red);
}

.hot-news-list {
  display: grid;
  gap: 16px;
}

.hot-news-item a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  color: inherit;
}

.hot-news-thumb {
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  background: #f2eee5;
  border-radius: 6px;
  place-items: center;
}

.hot-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-news-item h4 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hot-news-item time {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hot-news-item p,
.hot-news-empty p {
  margin: 6px 0 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.55;
}

.hot-news-item p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 34px;
  align-items: center;
}

.contact-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.contact-card {
  padding: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card p {
  color: var(--slate);
  font-size: 18px;
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.contact-meta div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-meta dt {
  color: var(--muted);
  font-weight: 900;
}

.contact-meta dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100% - 1220px) / 2));
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}

.quote-dock-tab {
  position: fixed;
  bottom: 92px;
  left: 0;
  z-index: 90;
  display: none;
  width: 74px;
  min-height: 150px;
  padding: 14px 10px;
  color: var(--white);
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  background: var(--red);
  border: 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
  cursor: pointer;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}

.quote-dock-tab.is-visible {
  display: grid;
  place-items: center;
}

.quote-dock {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 85;
  color: var(--white);
  background: rgba(27, 29, 32, .96);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .24);
}

.quote-dock.is-hidden {
  display: none;
}

.quote-dock-inner {
  position: relative;
  display: grid;
  grid-template-columns: 86px 280px 1fr 34px;
  gap: 20px;
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
}

.quote-dock-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}

.quote-dock-mark img {
  width: 58px;
}

.quote-dock-text .row1 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.18;
}

.quote-dock-text .row2 {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 900;
}

.quote-dock-text .tel {
  color: #ffdddd;
  font-size: 14px;
  font-weight: 950;
}

.quote-dock-form {
  display: grid;
  grid-template-columns: 1fr 1.15fr .82fr 1.15fr 112px;
  gap: 10px;
  align-items: center;
}

.quote-dock-form input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 3px;
  outline: none;
}

.quote-dock-form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .22);
}

.quote-dock-form .form-submit {
  height: 42px;
  color: var(--white);
  font-weight: 950;
  background: var(--red);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.quote-dock-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: #ffdddd;
  font-size: 12px;
  font-weight: 900;
}

.quote-dock-close {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: 28px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.right-fixed {
  position: fixed;
  top: 50%;
  right: 42px;
  z-index: 60;
  width: 62px;
  transform: translateY(-50%);
}

.right-fixed-panel,
.right-fixed-top {
  width: 100%;
  background: #353535;
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
}

.right-fixed-panel {
  display: grid;
  overflow: visible;
}

.right-fixed-item,
.right-fixed-top {
  position: relative;
  display: grid;
  min-height: 78px;
  padding: 9px 6px;
  place-items: center;
  color: #dfe1df;
  text-align: center;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  border: 0;
  border-top: 1px solid #5d5d5d;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.right-fixed-item:first-child {
  border-top: 0;
}

.right-fixed-item:hover,
.right-fixed-item:focus,
.right-fixed-top:hover,
.right-fixed-top:focus {
  color: var(--white);
  background: var(--red);
  outline: none;
}

.right-fixed-item > span:last-child,
.right-fixed-top > span:last-child {
  font-size: 12px;
  line-height: 1.25;
}

.fixed-icon {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  place-items: center;
  color: currentColor;
  font-size: 16px;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.right-fixed-top {
  display: none;
  overflow: hidden;
  margin-top: 10px;
  font-family: inherit;
}

.right-fixed-top.is-visible {
  display: grid;
}

.fixed-contact {
  user-select: none;
}

.fixed-popover {
  position: absolute;
  top: 50%;
  left: -188px;
  display: none;
  width: 176px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.fixed-popover::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
}

.fixed-popover strong {
  display: block;
  margin-bottom: 6px;
}

.fixed-popover p {
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 13px;
}

.fixed-popover a {
  color: var(--red);
  font-weight: 900;
}

.fixed-contact:hover .fixed-popover,
.fixed-contact:focus .fixed-popover {
  display: block;
}

.quick-modal[hidden] {
  display: none;
}

.quick-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  padding: 28px;
  place-items: center;
}

.quick-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 13, .62);
  border: 0;
  cursor: pointer;
}

.quick-modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.quick-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  background: #f1eee8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.quick-modal-head {
  padding-right: 52px;
  margin-bottom: 22px;
}

.quick-modal-head h2 {
  margin: 6px 0 8px;
  font-size: 30px;
}

.quick-modal-head p {
  max-width: 520px;
  color: var(--slate);
  line-height: 1.8;
}

.quick-panel[hidden] {
  display: none;
}

.quick-form {
  display: grid;
  gap: 15px;
}

.quick-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #f7f4ef;
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  background: var(--white);
  border-color: rgba(172, 37, 40, .48);
}

.quick-form textarea {
  resize: vertical;
}

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

.quote-form .btn,
.quick-form .quick-status {
  grid-column: 1 / -1;
}

.quote-result {
  margin-top: 18px;
  padding: 22px;
  background: var(--ink);
  border-radius: 8px;
}

.quote-result span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 900;
}

.quote-result strong {
  display: block;
  margin: 8px 0 8px;
  color: var(--white);
  font-size: 30px;
}

.quote-result p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.quick-status {
  min-height: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.follow-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}

.qr-placeholder {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(172, 37, 40, .12) 1px, transparent 1px),
    linear-gradient(rgba(172, 37, 40, .12) 1px, transparent 1px),
    #f7f4ef;
  background-size: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.follow-panel h3 {
  font-size: 24px;
}

.follow-panel p {
  margin: 8px 0 18px;
  color: var(--slate);
  line-height: 1.8;
}

.follow-panel .btn {
  margin: 0 10px 10px 0;
}

body.modal-open {
  overflow: hidden;
}

body.has-quote-dock {
  padding-bottom: 96px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-phone {
    display: none;
  }

  .right-fixed {
    right: 18px;
  }

  h1 {
    font-size: 48px;
  }

  .pain-grid,
  .epcs-grid,
  .honor-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .designer-tools,
  .craft-layout,
  .contact-section,
  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    min-height: 320px;
  }

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

  .craft-tabs button {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .detail-header {
    height: auto;
    min-height: 66px;
    padding: 10px 14px;
  }

  .detail-header > .btn {
    display: none;
  }

  .detail-header .detail-nav {
    display: none;
  }

  .detail-page main {
    padding-top: 66px;
  }

  .news-index-main {
    padding-top: 66px;
  }

  .news-index-banner,
  .news-index-section {
    width: min(100% - 28px, 980px);
  }

  .news-index-banner {
    height: 190px;
  }

  .news-index-banner h1 {
    bottom: 22px;
    left: 20px;
    font-size: 34px;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .news-row-media {
    min-height: 220px;
  }

  .news-row-body {
    padding: 22px;
  }

  .detail-article {
    width: min(100% - 28px, 1220px);
    padding: 28px 0 52px;
  }

  .detail-hero {
    gap: 22px;
    min-height: 0;
  }

  .detail-hero h1 {
    font-size: 34px;
  }

  .detail-hero-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .detail-cover,
  .detail-cover-empty {
    min-height: 260px;
  }

  .detail-main,
  .detail-side,
  .news-article-body {
    padding: 24px;
  }

  .news-traditional {
    width: min(100% - 28px, 1220px);
    padding-top: 18px;
  }

  .news-detail-banner {
    height: 190px;
  }

  .news-article-title {
    margin-bottom: 22px;
    padding-bottom: 20px;
  }

  .news-article-title h1 {
    font-size: 30px;
  }

  .news-article-meta {
    gap: 8px 12px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .news-article-body {
    margin-top: 0;
  }

  .news-hot-sidebar {
    position: static;
  }

  .news-hot-card {
    padding: 18px;
  }

  .header-inner {
    position: relative;
    width: min(100% - 28px, 1220px);
    height: 62px;
    padding: 0 10px 0 14px;
  }

  .brand {
    width: 142px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(218, 221, 216, .9);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(14, 20, 28, .16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .secondary-header-inner .site-nav {
    gap: 0;
  }

  .secondary-header-inner .site-nav a {
    padding: 12px;
  }

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

  .hero {
    min-height: 78vh;
    padding: 116px 0 58px;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 11, 14, .82), rgba(8, 11, 14, .28));
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy,
  .section-head p,
  .craft-copy p:last-child,
  .contact-card p {
    font-size: 16px;
  }

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

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 24px;
  }

  .hero-stats dd {
    font-size: 12px;
    line-height: 1.35;
  }

  .section {
    padding: 66px 0;
  }

  .pain-grid,
  .epcs-grid,
  .center-gallery,
  .honor-grid,
  .news-grid,
  .case-grid,
  .designer-card,
  .craft-display {
    grid-template-columns: 1fr;
  }

  .center-gallery {
    grid-auto-rows: 240px;
  }

  .center-gallery .feature-image {
    grid-row: span 1;
  }

  .designer-card {
    gap: 18px;
  }

  .designer-avatar {
    min-height: 240px;
  }

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

  .craft-display,
  .craft-display img {
    min-height: 0;
  }

  .craft-display img {
    aspect-ratio: 4 / 3;
  }

  .craft-copy,
  .contact-card {
    padding: 28px;
  }

  .contact-media img {
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
  }

  .quote-dock {
    bottom: 70px;
  }

  .quote-dock-inner {
    grid-template-columns: 1fr 32px;
    gap: 10px;
    width: min(100% - 24px, 520px);
    min-height: 0;
    padding: 14px 0 12px;
  }

  .quote-dock-mark {
    display: none;
  }

  .quote-dock-text {
    grid-column: 1;
  }

  .quote-dock-text .row1 {
    font-size: 18px;
  }

  .quote-dock-text .row2 {
    font-size: 13px;
  }

  .quote-dock-text .tel {
    font-size: 14px;
  }

  .quote-dock-form {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-dock-form .form-submit {
    grid-column: 1 / -1;
  }

  .quote-dock-close {
    grid-column: 2;
    grid-row: 1;
  }

  .quote-dock-tab {
    bottom: 88px;
    min-height: 116px;
  }

  body.has-quote-dock {
    padding-bottom: 278px;
  }

  .right-fixed {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 72px;
    transform: none;
  }

  .right-fixed-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 0;
  }

  .right-fixed-panel,
  .right-fixed-top {
    height: 70px;
  }

  .right-fixed-item,
  .right-fixed-top {
    min-height: 70px;
    padding: 7px 3px;
    border-top: 0;
    border-left: 1px solid #5d5d5d;
  }

  .right-fixed-item > span:last-child,
  .right-fixed-top > span:last-child {
    font-size: 11px;
    white-space: nowrap;
  }

  .right-fixed-item:first-child {
    border-left: 0;
  }

  .right-fixed-top {
    display: grid;
    margin-top: 0;
    border-radius: 0;
  }

  .fixed-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .fixed-popover {
    display: none !important;
  }

  .quick-modal {
    padding: 16px;
    align-items: end;
  }

  .quick-modal-card {
    max-height: calc(100vh - 36px);
    padding: 28px 20px 22px;
    border-radius: 8px 8px 0 0;
  }

  .quick-modal-head {
    padding-right: 42px;
  }

  .quick-modal-head h2 {
    font-size: 25px;
  }

  .quote-form,
  .follow-panel {
    grid-template-columns: 1fr;
  }

  .qr-placeholder {
    max-width: 180px;
  }

  body {
    padding-bottom: 70px;
  }

  body.has-quote-dock {
    padding-bottom: 278px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 31px;
  }

  .brand {
    width: 134px;
  }

  .btn {
    width: 100%;
  }

  .process-strip,
  .craft-tabs,
  .designer-case-images {
    grid-template-columns: 1fr;
  }
}
