:root {
  --ink: #20392b;
  --moss: #365441;
  --sage: #73846b;
  --paper: #f7f5ef;
  --line: rgba(32, 57, 43, 0.18);
  --gold: #b39a6f;
  --warm: #ede8dd;
  --shadow: 0 22px 70px rgba(31, 43, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  background:
    radial-gradient(circle at 32% 14%, rgba(255, 255, 255, 0.95), transparent 28rem),
    linear-gradient(115deg, #fbfaf6 0%, #f0eee7 54%, #e5e4df 100%);
  cursor: none;
  overflow-x: hidden;
}

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

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

img {
  max-width: 100%;
}

button,
a,
select,
input {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 54px;
  height: 54px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.2s ease;
}

.custom-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(46, 60, 43, 0.24));
}

.custom-cursor.is-hover {
  width: 72px;
  height: 72px;
}

.loader-screen,
.opening {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background: #f7f5ef;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-screen.is-hidden,
.opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.loader-panel {
  position: relative;
  width: min(520px, 82vw);
  text-align: center;
  padding: 24px;
}

.loader-panel .brand-mark,
.loader-panel .pouch-orbit img,
.loader-panel p {
  display: none;
}

.brand-mark {
  position: absolute;
  left: -18vw;
  top: 8vh;
  writing-mode: vertical-rl;
  letter-spacing: 0;
}

.brand-mark strong {
  display: block;
  font-size: clamp(46px, 5vw, 86px);
  color: #7f8d69;
  text-shadow: 0 5px 12px rgba(75, 78, 47, 0.2);
}

.brand-mark span {
  margin-top: 20px;
  font-size: 22px;
  writing-mode: horizontal-tb;
}

.pouch-orbit {
  position: relative;
  display: grid;
  place-items: center;
  height: 360px;
}

.pouch-orbit img {
  width: 180px;
  transform-origin: 50% 15%;
  animation: pouchSwing 1.8s ease-in-out infinite;
  filter: drop-shadow(0 28px 26px rgba(36, 55, 41, 0.18));
}

.pouch-orbit i,
.pouch-orbit b {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 3px solid rgba(71, 99, 67, 0.35);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
}

.pouch-orbit b {
  width: 210px;
  height: 112px;
  border-color: transparent rgba(74, 102, 69, 0.35) transparent rgba(74, 102, 69, 0.35);
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-panel p {
  margin: 8px 0 12px;
  color: #758361;
  font-size: 24px;
}

.progress {
  width: 230px;
  height: 3px;
  margin: 0 auto 10px;
  background: rgba(54, 84, 65, 0.16);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--moss);
  transition: width 0.2s ease;
}

.loader-panel em {
  font-style: normal;
  color: #768762;
  font-size: 22px;
}

.opening {
  z-index: 8000;
  background: #121610;
}

.opening video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opening-copy {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 22px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.skip-opening,
.header-cta,
.round-cta,
.mini-form a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: linear-gradient(135deg, #2c4735, #4b6549);
  border-radius: 999px;
  padding: 14px 30px;
  box-shadow: 0 14px 30px rgba(39, 64, 47, 0.18);
}

.header-cta {
  justify-self: end;
  white-space: nowrap;
  padding: 13px clamp(18px, 2vw, 28px);
  font-size: clamp(16px, 1.15vw, 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(138px, 190px) minmax(0, 1fr) minmax(140px, auto);
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  min-height: 88px;
  padding: 14px clamp(18px, 3vw, 46px);
  border-bottom: 1px solid rgba(35, 56, 43, 0.1);
  background: rgba(247, 245, 239, 0.93);
  backdrop-filter: blur(22px);
}

.logo strong {
  display: block;
  font-size: clamp(32px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.logo span {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 5px;
}

.nav {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 30px);
  font-size: clamp(15px, 1.05vw, 20px);
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--moss);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: #f7f5ef;
  isolation: isolate;
}

.hero picture {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.hero-brand-seal {
  position: absolute;
  left: clamp(46px, 3.3vw, 72px);
  bottom: clamp(76px, 7.8vw, 102px);
  z-index: 1000;
  display: grid;
  width: clamp(34px, 2.7vw, 48px);
  min-height: clamp(92px, 7vw, 124px);
  place-items: center;
  padding: 10px 6px;
  border: 2px solid rgba(176, 54, 42, 0.72);
  border-radius: 999px;
  color: rgba(176, 54, 42, 0.92);
  background:
    radial-gradient(ellipse at 50% 46%, rgba(248, 246, 240, 0.98), rgba(239, 235, 224, 0.96) 72%, rgba(247, 245, 239, 0.88)),
    rgba(247, 245, 239, 0.94);
  box-shadow: inset 0 0 0 1px rgba(176, 54, 42, 0.16);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: clamp(16px, 1.18vw, 22px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  writing-mode: vertical-rl;
  isolation: isolate;
  pointer-events: none;
}

.section {
  position: relative;
  scroll-margin-top: 112px;
  padding: clamp(80px, 8vw, 128px) clamp(24px, 5vw, 84px);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.96), rgba(247, 245, 239, 0.72)),
    url("./assets/hero-desktop.png") center / cover;
  opacity: 0.3;
}

.reference-stage {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto clamp(42px, 5vw, 72px);
  overflow: visible;
  border: 1px solid rgba(32, 57, 43, 0.14);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.88);
  box-shadow: var(--shadow);
}

.reference-stage img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.stage-hotspot {
  position: absolute;
  display: block;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.stage-hotspot:hover,
.stage-hotspot.is-active {
  border-color: rgba(54, 84, 65, 0.42);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.stage-hotspot::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(32, 57, 43, 0.92);
  content: attr(data-stage-tip);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.stage-hotspot:hover::after,
.stage-hotspot.is-active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.insight-stage .state-one {
  left: 7%;
  top: 39%;
  width: 11.5%;
  height: 35%;
}

.insight-stage .state-two {
  left: 19.1%;
  top: 39%;
  width: 11.7%;
  height: 35%;
}

.insight-stage .state-three {
  left: 31.2%;
  top: 39%;
  width: 11.8%;
  height: 35%;
}

.insight-stage .state-four {
  left: 43.4%;
  top: 39%;
  width: 11.7%;
  height: 35%;
}

.insight-stage .test-entry {
  left: 40%;
  top: 79.5%;
  width: 18.4%;
  height: 7.8%;
  border-radius: 999px;
}

.philosophy-stage .method-one {
  left: 25%;
  top: 23%;
  width: 28%;
  height: 27%;
}

.philosophy-stage .method-two {
  left: 54.3%;
  top: 23%;
  width: 28%;
  height: 27%;
}

.philosophy-stage .method-three {
  left: 25%;
  top: 55%;
  width: 28%;
  height: 28%;
}

.philosophy-stage .method-four {
  left: 54.3%;
  top: 55%;
  width: 28%;
  height: 28%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #8c2e25;
  font-size: 15px;
  letter-spacing: 2px;
}

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

h1,
h2 {
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 6vw, 96px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(34px, 4.2vw, 62px);
}

p {
  color: rgba(32, 57, 43, 0.72);
  font-size: 19px;
  line-height: 1.9;
}

.wide {
  max-width: 1120px;
}

.home-intro,
.metabolism,
.knowledge,
.news,
.contact {
  display: grid;
  gap: 30px;
}

.signal-panel,
.five-system,
.full-image-card,
.heritage-gallery figure,
.store-photo,
.story-panels article,
.keyword-grid article,
.audience-grid article,
.faq-block details,
.quick-links a,
.article-grid article,
.article-card,
.article-detail,
.source-copy,
.archive-item,
.news-list article,
.contact-card,
.contact-form {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.signal-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
}

.signal-panel h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.1vw, 50px);
}

.signal-grid,
.keyword-grid,
.audience-grid,
.quick-links,
.story-panels,
.article-grid,
.news-list {
  display: grid;
  gap: 16px;
}

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

.signal-grid button,
.dimension-list button,
.article-filters button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(247, 245, 239, 0.76);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.signal-grid button {
  padding: 14px 16px;
  text-align: left;
}

.signal-grid button:hover,
.signal-grid button.active,
.dimension-list button:hover,
.dimension-list button.active,
.article-filters button:hover,
.article-filters button.active {
  color: white;
  border-color: rgba(54, 84, 65, 0.45);
  background: var(--moss);
  transform: translateY(-2px);
}

.compact {
  margin: 0;
  align-self: center;
  white-space: nowrap;
  font-size: clamp(18px, 1.4vw, 24px);
}

.quick-links,
.keyword-grid,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.quick-links a,
.keyword-grid article,
.audience-grid article,
.story-panels article,
.article-grid article,
.news-list article,
.contact-card {
  padding: 24px;
}

.quick-links strong,
.keyword-grid strong,
.audience-grid strong,
.article-grid strong,
.article-card strong,
.news-list strong,
.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}

.quick-links span,
.keyword-grid span,
.audience-grid span,
.article-grid span,
.article-card span,
.news-list span,
.contact-card span {
  color: rgba(32, 57, 43, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.full-image-card,
.store-photo {
  overflow: hidden;
  margin: 0;
  padding: clamp(16px, 2vw, 24px);
}

.full-image-card img,
.store-photo img,
.heritage-gallery img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  object-position: center;
  background: rgba(247, 245, 239, 0.72);
}

.store-photo img {
  height: clamp(360px, 46vw, 560px);
  object-fit: contain;
}

.full-image-card figcaption,
.store-photo figcaption,
.heritage-gallery figcaption {
  margin-top: 12px;
  color: rgba(32, 57, 43, 0.62);
  font-size: 15px;
  text-align: center;
}

.five-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 28px;
  padding: clamp(24px, 3vw, 40px);
}

.five-system h3,
.story-panels h3,
.contact-card h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.3vw, 40px);
  font-weight: 500;
}

.dimension-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.dimension-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--moss);
  background: rgba(247, 245, 239, 0.78);
  color: var(--ink);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--moss);
  font-size: 20px;
  border-bottom: 1px solid currentColor;
}

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

.heritage-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 16px;
}

.heritage-gallery figure {
  margin: 0;
  padding: 14px;
}

.heritage-gallery img {
  height: 420px;
}

.faq-block {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.faq-block details {
  padding: 20px 24px;
}

.faq-block summary {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}

.faq-block p {
  margin: 14px 0 0;
  font-size: 17px;
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-filters button {
  padding: 0 22px;
}

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

.article-grid article[hidden],
.article-card[hidden],
.archive-item[hidden] {
  display: none;
}

.article-grid span,
.article-card span,
.article-detail span {
  color: #8c2e25;
}

.article-card {
  display: grid;
  gap: 10px;
  min-height: 158px;
  padding: 24px;
  color: var(--ink);
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.article-card:hover,
.article-card.active {
  border-color: rgba(54, 84, 65, 0.42);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-4px);
}

.article-detail {
  padding: clamp(24px, 3vw, 34px);
}

.article-detail strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.45;
}

.article-detail p {
  margin-bottom: 18px;
  font-size: 17px;
}

.article-detail div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-detail a,
.store-actions a,
.archive-toolbar input {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-detail a {
  padding: 10px 16px;
  color: var(--moss);
  background: rgba(247, 245, 239, 0.76);
}

.source-copy {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}

.source-copy summary,
.archive-item summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: var(--ink);
  font-size: 20px;
  list-style: none;
}

.source-copy summary::-webkit-details-marker,
.archive-item summary::-webkit-details-marker {
  display: none;
}

.source-copy summary::after,
.archive-item summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(54, 84, 65, 0.24);
  border-radius: 50%;
  color: var(--moss);
}

.source-copy[open] summary::after,
.archive-item[open] summary::after {
  content: "−";
}

.docx-copy {
  max-height: 520px;
  overflow: auto;
  padding: 4px 24px 24px;
  border-top: 1px solid var(--line);
}

.docx-copy h4 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.docx-copy p {
  margin: 0 0 10px;
  color: rgba(32, 57, 43, 0.76);
  font-size: 16px;
  line-height: 1.85;
}

.docx-copy .copy-bullet {
  padding-left: 1em;
}

.docx-copy hr {
  height: 1px;
  margin: 16px 0;
  border: 0;
  background: var(--line);
}

.copy-archive {
  display: grid;
  gap: 24px;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.archive-toolbar label {
  color: var(--ink);
  font-size: 19px;
}

.archive-toolbar input {
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.archive-toolbar span {
  color: rgba(32, 57, 43, 0.62);
  font-size: 15px;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-item summary strong {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.archive-item summary span {
  margin-left: auto;
  color: rgba(32, 57, 43, 0.54);
  font-size: 14px;
}

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

.news-list time {
  display: block;
  margin-bottom: 16px;
  color: #8c2e25;
  font-size: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: 24px;
}

.contact-card strong {
  color: var(--moss);
  font-size: clamp(34px, 4vw, 58px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 20px;
}

.contact-form input,
.contact-form select {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--moss);
  font-size: 24px;
}

#contactNote {
  margin: 0;
  font-size: 15px;
  text-align: center;
}

.origin {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
  gap: 42px;
  align-items: center;
}

.origin > *,
.metabolism > *,
.stores > *,
.assessment > * {
  min-width: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 24px;
  align-self: end;
}

.era-card {
  min-height: 330px;
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  font-size: 52px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.era-card.active,
.era-card:hover {
  color: white;
  background: var(--moss);
  transform: translateY(-10px);
}

.era-detail {
  grid-column: 2;
  padding: 26px 30px;
  border-left: 4px solid var(--moss);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.era-detail strong {
  font-size: 28px;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.state-card,
.philosophy-grid article,
.form-panel,
.constitution,
.quiz-shell,
.hanjie-card,
.store-address-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.state-card {
  min-height: 330px;
  padding: 28px;
  text-align: left;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.state-card:hover {
  transform: translateY(-8px);
  border-color: rgba(54, 84, 65, 0.45);
}

.state-card small {
  display: block;
  font-size: 32px;
}

.state-card strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 34px;
}

.state-card span {
  color: rgba(32, 57, 43, 0.72);
  font-size: 18px;
}

.round-cta {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 22px;
  margin: 42px auto 0;
  font-size: 30px;
}

.round-cta span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.philosophy {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 48px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
}

.philosophy-grid article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 190px;
  padding: 28px;
}

.philosophy-grid i {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border: 1px solid rgba(179, 154, 111, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, #f4efe3, #d9d1be);
  color: var(--moss);
  font-style: normal;
  font-size: 42px;
}

.philosophy-grid h3,
.constitution h3 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process span {
  padding: 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  font-size: 24px;
}

.process span:last-child {
  border-right: 0;
}

.process .active {
  color: white;
  background: var(--moss);
}

.plan-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.form-panel,
.constitution {
  padding: 34px;
}

.mini-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.mini-form button,
.mini-form select,
.mini-form a {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.mini-form .selected {
  color: white;
  background: var(--moss);
}

.mini-form a {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  color: white;
  font-size: 22px;
}

.constitution div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.constitution span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 242, 233, 0.75);
  font-size: 22px;
}

.hanjie-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.profile-visual,
.profile-copy,
.media-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.profile-visual {
  overflow: hidden;
}

.profile-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center;
  background: rgba(247, 245, 239, 0.76);
}

.profile-copy {
  padding: clamp(28px, 4vw, 54px);
}

.profile-report-title {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--moss);
  color: var(--ink);
  background: rgba(247, 245, 239, 0.84);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.65;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.profile-facts article {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(32, 57, 43, 0.14);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.78);
}

.profile-facts strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
}

.profile-facts span {
  color: rgba(32, 57, 43, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.media-board {
  grid-column: 1 / -1;
  padding: clamp(26px, 3vw, 40px);
}

.media-board h3 {
  margin-bottom: 22px;
  font-size: 34px;
  font-weight: 500;
}

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

.media-links a {
  min-height: 0;
  padding: 20px;
  border: 1px solid rgba(32, 57, 43, 0.14);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.media-links a:hover {
  border-color: rgba(54, 84, 65, 0.42);
  background: #fff;
  transform: translateY(-4px);
}

.media-links span {
  display: block;
  margin-bottom: 12px;
  color: #8c2e25;
  font-size: 14px;
}

.media-links strong {
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.assessment {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 30px;
  align-items: stretch;
}

.hanjie-card {
  overflow: hidden;
}

.hanjie-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  background: rgba(247, 245, 239, 0.82);
}

.hanjie-card div {
  padding: 30px;
}

.quiz-shell {
  min-height: 620px;
  padding: 28px;
}

.quiz-rules {
  margin: 18px 0 0;
  padding-left: 22px;
  color: rgba(32, 57, 43, 0.72);
  line-height: 1.8;
}

.quiz-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: rgba(32, 57, 43, 0.62);
}

#quizMeter {
  width: 160px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--moss) var(--meter, 12%), rgba(54, 84, 65, 0.14) var(--meter, 12%));
}

.chat-window {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(32, 57, 43, 0.1);
  border-radius: 8px;
  background: rgba(249, 247, 241, 0.66);
}

.message {
  max-width: 78%;
  padding: 14px 18px;
  border-radius: 8px;
  line-height: 1.7;
}

.message.hanjie {
  align-self: flex-start;
  background: #fff;
}

.message.user {
  align-self: flex-end;
  color: white;
  background: var(--moss);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.answer-grid button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  padding: 14px 18px;
}

.answer-grid button:hover {
  border-color: rgba(54, 84, 65, 0.45);
  background: #fff;
}

.result-panel {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(54, 84, 65, 0.22);
  border-radius: 8px;
  background: rgba(244, 239, 227, 0.84);
}

.result-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
}

.result-panel ul {
  margin: 14px 0 0;
  padding-left: 22px;
  line-height: 1.8;
}

.score-overview {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(32, 57, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.score-overview h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
}

.score-overview ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.score-overview li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.8);
}

.medical-note {
  font-size: 15px;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(380px, 0.52fr);
  gap: 28px;
  align-items: start;
}

.map-panel {
  overflow: visible;
  padding: 0;
}

.map-panel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.active-store-card {
  margin: 18px 18px 0;
  padding: 22px;
  border: 1px solid rgba(54, 84, 65, 0.18);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.84);
}

.active-store-card span {
  display: block;
  margin-bottom: 8px;
  color: #8c2e25;
  font-size: 14px;
}

.active-store-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 500;
}

.active-store-card p {
  margin-bottom: 8px;
  color: var(--ink);
}

.active-store-card small {
  color: rgba(32, 57, 43, 0.66);
  font-size: 16px;
}

.store-search {
  display: grid;
  gap: 10px;
  padding: 18px 18px 0;
}

.store-search label {
  font-size: 20px;
}

.store-search input {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.store-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.store-list button {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
  line-height: 1.55;
}

.store-list button[hidden] {
  display: none;
}

.store-list button span {
  text-align: right;
  color: inherit;
}

.store-list .active {
  color: white;
  background: var(--moss);
}

.store-actions {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.store-actions a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(54, 84, 65, 0.28);
  border-radius: 8px;
  color: var(--moss);
  background: rgba(247, 245, 239, 0.78);
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.store-actions a:hover {
  color: white;
  background: var(--moss);
  transform: translateY(-2px);
}

.store-address-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3vw, 38px);
}

.store-address-panel span {
  color: #8c2e25;
  font-size: 15px;
}

.store-address-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1.25;
}

.store-address-panel p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.7;
}

.store-address-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.store-address-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(54, 84, 65, 0.12);
}

.store-address-panel dt,
.store-address-panel dd {
  margin: 0;
}

.store-address-panel dt {
  color: rgba(32, 57, 43, 0.62);
}

.store-address-panel dd {
  color: var(--ink);
  text-align: right;
}

.store-address-panel a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #2c4735, #4b6549);
  box-shadow: 0 14px 30px rgba(39, 64, 47, 0.16);
  font-size: 20px;
}

.store-address-panel small {
  color: rgba(32, 57, 43, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(24px, 5vw, 84px);
  color: #f8f5ea;
  background: #243b2d;
}

.sources {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(248, 245, 234, 0.76);
  font-size: 14px;
}

.beian-info {
  width: 100%;
  margin-top: 2px;
  font-size: 13px;
  color: rgba(248, 245, 234, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.beian-info .copyright {
  letter-spacing: 0.02em;
}

.beian-info a {
  color: inherit;
  text-decoration: none;
}

.beian-info a:hover {
  text-decoration: underline;
  color: #f8f5ea;
}

.beian-info .police-record {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.beian-info .police-record img {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.beian-info .police-record:hover {
  text-decoration: none;
}

.beian-info .police-record:hover span {
  text-decoration: underline;
}

@keyframes pouchSwing {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-12px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  button,
  a,
  select,
  input {
    cursor: pointer;
  }

  .custom-cursor {
    display: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .logo strong {
    font-size: 34px;
  }

  .menu-toggle {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 12px;
    justify-content: stretch;
    padding: 12px 0;
  }

  .hero picture,
  .hero img {
    min-height: 0;
  }

  .hero-brand-seal {
    left: 5.8vw;
    bottom: 8.4vw;
    width: 36px;
    min-height: 94px;
    font-size: 17px;
  }

  .origin,
  .split-heading,
  .archive-toolbar,
  .philosophy,
  .plan-board,
  .hanjie-profile,
  .assessment,
  .store-layout,
  .signal-panel,
  .five-system,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .profile-visual img {
    min-height: auto;
    height: auto;
    object-fit: contain;
  }

  .media-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-links,
  .keyword-grid,
  .audience-grid,
  .story-panels,
  .article-grid,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .era-card {
    min-height: 120px;
    font-size: 34px;
  }

  .era-detail {
    grid-column: auto;
  }

  .state-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

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

  .process span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process span:last-child {
    border-bottom: 0;
  }

  .opening-copy {
    flex-direction: column;
    width: 80vw;
    text-align: center;
  }

  .archive-toolbar {
    align-items: stretch;
  }

  .archive-toolbar span {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 18px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  p {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
  }

  .hero picture,
  .hero img {
    min-height: auto;
  }

  .hero-brand-seal {
    left: 5.6vw;
    bottom: 9vw;
    width: 32px;
    min-height: 88px;
    padding: 8px 5px;
    font-size: 16px;
  }

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

  .state-card {
    min-height: 210px;
  }

  .philosophy-grid article {
    grid-template-columns: 86px 1fr;
    padding: 22px;
  }

  .philosophy-grid i {
    width: 78px;
    height: 78px;
    font-size: 28px;
  }

  .mini-form,
  .answer-grid,
  .profile-facts,
  .media-links,
  .signal-grid,
  .quick-links,
  .keyword-grid,
  .audience-grid,
  .story-panels,
  .article-grid,
  .news-list,
  .dimension-list {
    grid-template-columns: 1fr;
  }

  .signal-panel,
  .five-system {
    padding: 22px;
  }

  .source-copy summary,
  .archive-item summary {
    align-items: flex-start;
    padding: 16px 18px;
    font-size: 18px;
  }

  .archive-item summary span {
    display: none;
  }

  .docx-copy {
    max-height: 440px;
    padding: 2px 18px 20px;
  }

  .docx-copy h4 {
    font-size: 21px;
  }

  .docx-copy p {
    font-size: 15px;
  }

  .compact {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .brand-mark {
    position: static;
    margin-bottom: 40px;
    writing-mode: horizontal-tb;
  }

  .brand-mark strong {
    font-size: 48px;
  }
}
