@charset "utf-8";

.maker-page {
  --maker-ink: #111827;
  --maker-muted: #5f6875;
  --maker-line: rgba(17, 24, 39, 0.13);
  --maker-accent: #9a2028;
  --maker-gold: #9b7b45;
  --maker-bg: #f5f4f1;
  --maker-panel: #ffffff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,239,234,0.95) 55%, rgba(255,255,255,0.98)),
    var(--maker-bg);
  color: var(--maker-ink);
}

.maker-main {
  overflow: hidden;
}

.maker-hero {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  background: #0b1118;
}

.maker-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 11, 17, 0.92) 0%, rgba(6, 11, 17, 0.72) 45%, rgba(6, 11, 17, 0.34) 100%),
    url("../../img/maker_bg.jpg") center / cover no-repeat;
}

.maker-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,0.14) 44.2% 44.35%, transparent 44.6%),
    linear-gradient(115deg, transparent 0 67%, rgba(255,255,255,0.1) 67.2% 67.35%, transparent 67.6%);
  opacity: 0.85;
}

.maker-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  padding-top: 76px;
  padding-bottom: 76px;
}

.maker-hero-copy {
  max-width: 890px;
}

.maker-kicker,
.maker-section-head p {
  margin: 0;
  color: var(--maker-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.maker-hero h1 {
  margin: 18px 0 28px;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 100;
  letter-spacing: 0.04em;
  line-height: 0.9;
  white-space: nowrap;
}

.maker-lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 2.1;
  letter-spacing: 0.08em;
}

.maker-principles {
  padding: 0 0 84px;
}

.maker-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--maker-line);
  border-bottom: 1px solid var(--maker-line);
  background: var(--maker-panel);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.08);
  transform: translateY(-44px);
}

.maker-principle-grid article {
  min-height: 188px;
  padding: 34px 34px 30px;
  border-top: 1px solid var(--maker-line);
  border-right: 1px solid var(--maker-line);
}

.maker-principle-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--maker-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.maker-principle-grid h2 {
  margin: 0 0 14px;
  color: var(--maker-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.maker-principle-grid p {
  margin: 0;
  color: var(--maker-muted);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

html[lang="zh-CN"] .maker-page .maker-principle-grid p {
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  html[lang="zh-CN"] .maker-page .maker-principle-grid article {
    padding-right: 24px;
    padding-left: 24px;
  }

  html[lang="zh-CN"] .maker-page .maker-principle-grid p {
    font-size: 13px;
    white-space: nowrap;
  }
}

.maker-list-section {
  padding: 0 0 118px;
}

.maker-section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--maker-line);
  padding-bottom: 24px;
}

.maker-section-head h2 {
  margin: 0;
  color: var(--maker-ink);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.maker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--maker-line);
  border: 1px solid var(--maker-line);
}

.maker-card {
  min-width: 0;
  background: #fff;
}

.maker-card-link {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.maker-card-image {
  height: 210px;
  margin: 26px 26px 0;
  overflow: hidden;
  background: #f3f3f3;
}

.maker-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  filter: grayscale(18%) contrast(0.96);
  transform: scale(1.01);
  transition: filter 0.55s ease, transform 0.55s ease;
}

.maker-card-body {
  display: flex;
  min-height: 174px;
  flex-direction: column;
  padding: 30px 32px 34px;
}

.maker-card h3 {
  position: relative;
  margin: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: var(--maker-ink);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}

.maker-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--maker-ink);
  transition: width 0.35s ease;
}

.maker-card-link:hover .maker-card-image img {
  filter: grayscale(0) contrast(1.04);
  transform: scale(1.055);
}

.maker-card-link:hover h3::after {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .maker-hero-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767.98px) {
  .maker-hero {
    min-height: auto;
    aspect-ratio: 1920 / 720;
  }

  .maker-hero-bg {
    background:
      linear-gradient(90deg, rgba(6, 11, 17, 0.96) 0%, rgba(6, 11, 17, 0.78) 58%, rgba(6, 11, 17, 0.34) 100%),
      url("../../img/maker_bg.jpg") center / cover no-repeat;
  }

  .maker-hero-inner {
    min-height: auto;
    height: 100%;
  }

  .maker-hero-inner {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .maker-hero h1 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.05;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.78);
  }

  .maker-kicker {
    color: #d0a84d;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
  }

  .maker-lead {
    display: none;
  }

  .maker-principle-grid,
  .maker-grid {
    grid-template-columns: 1fr;
  }

  .maker-principle-grid {
    transform: none;
    margin-top: 28px;
  }

  .maker-principle-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .maker-list-section {
    padding-bottom: 72px;
  }

  .maker-section-head {
    display: block;
  }

  .maker-section-head p {
    margin-bottom: 16px;
  }

  .maker-card-image {
    height: 180px;
    margin: 20px 20px 0;
  }

  .maker-card-body {
    min-height: auto;
    padding: 26px 24px 32px;
  }
}
