:root {
  --bg: #f7f8f4;
  --ink: #18201d;
  --muted: #59645f;
  --line: rgba(24, 32, 29, 0.14);
  --paper: #ffffff;
  --accent: #2e6b5f;
  --accent-2: #c98d3c;
  --accent-soft: rgba(46, 107, 95, 0.11);
  --footer-bg: #171b1f;
  --footer-ink: #eef3ef;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.models {
  --bg: #f6f7f2;
  --ink: #1e2522;
  --muted: #5b625e;
  --accent: #556b61;
  --accent-2: #bf9358;
  --accent-soft: rgba(191, 147, 88, 0.16);
}

body.exhibition {
  --bg: #f3f8fb;
  --ink: #172337;
  --muted: #56667b;
  --accent: #2d6f91;
  --accent-2: #65a9bd;
  --accent-soft: rgba(45, 111, 145, 0.13);
}

body.inspiration {
  --bg: #f7f7f1;
  --ink: #1f2727;
  --muted: #616964;
  --accent: #0f6b72;
  --accent-2: #d18a22;
  --accent-soft: rgba(209, 138, 34, 0.14);
}

body.plush {
  --bg: #fff8ef;
  --ink: #30251e;
  --muted: #75645a;
  --accent: #8a6846;
  --accent-2: #e17f93;
  --accent-soft: rgba(225, 127, 147, 0.16);
}

body.tourism {
  --bg: #f4f8f1;
  --ink: #1b281f;
  --muted: #5f6c61;
  --accent: #2f7350;
  --accent-2: #d3a13c;
  --accent-soft: rgba(47, 115, 80, 0.13);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: #fff;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand-mark::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--accent-2);
  transform: rotate(45deg);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 16, 0.72), rgba(10, 14, 16, 0.32) 46%, rgba(10, 14, 16, 0.08)),
    linear-gradient(0deg, rgba(10, 14, 16, 0.58), rgba(10, 14, 16, 0.03) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent-2);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.button.primary {
  border-color: var(--accent-2);
  background: var(--accent-2);
  color: #141414;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section.compact {
  padding-top: 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.feature-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.3;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.showcase-band {
  background: var(--accent-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

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

.stat {
  border-left: 3px solid var(--accent-2);
  padding: 4px 0 4px 16px;
}

.stat b {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.text-block h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.text-block p {
  color: var(--muted);
  margin-bottom: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-size: 14px;
}

.workflow {
  display: grid;
  gap: 14px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.workflow-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.workflow-item h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.workflow-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  background: var(--footer-bg);
  color: var(--footer-ink);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px 0;
  font-size: 14px;
}

.footer strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: rgba(238, 243, 239, 0.76);
}

.footer-meta a {
  text-decoration: none;
}

@media (max-width: 840px) {
  .topbar {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content,
  .section,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .section-heading,
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-grid,
  .stat-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}
