:root {
  --paper: #f5f2ec;
  --paper-soft: #fbfaf7;
  --ink: #1c1b18;
  --muted: #716c64;
  --faint: #9b948a;
  --line: #d8d1c7;
  --line-strong: #bbb2a6;
  --accent: #a74630;
  --serif: "Noto Serif SC", "Songti SC", STSong, SimSun, serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.entry-shell {
  position: relative;
  display: flex;
  width: min(100% - 48px, 1180px);
  min-height: 100dvh;
  margin: 0 auto;
  flex-direction: column;
  border-right: 1px solid rgba(187, 178, 166, .58);
  border-left: 1px solid rgba(187, 178, 166, .58);
  animation: page-in 500ms var(--ease) both;
}

.entry-shell::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(216, 209, 199, .5);
  content: "";
  pointer-events: none;
}

.entry-main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100dvh;
  padding: clamp(48px, 7vw, 92px) clamp(22px, 7vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(46px, 6vw, 86px);
  align-items: center;
}

.entry-copy { max-width: 650px; }
.entry-kicker { margin: 0 0 clamp(24px, 4vw, 40px); color: var(--accent); font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; }

.signature-frame { width: min(100%, 480px); margin: 0 0 4px -10px; }
.signature-frame img { display: block; width: 100%; height: auto; mix-blend-mode: multiply; }
.entry-name { margin: 0 0 clamp(22px, 3.4vw, 34px); color: var(--muted); font-size: 17px; letter-spacing: .28em; }

h1 { margin: 0; font-size: clamp(34px, 4.2vw, 50px); font-weight: 500; letter-spacing: -.065em; line-height: 1.3; }
h1 span { display: block; white-space: normal; text-wrap: balance; }
h1 span + span { margin-top: .02em; }

.entry-lede { margin: clamp(24px, 3.5vw, 36px) 0 clamp(30px, 4.2vw, 46px); color: var(--muted); font-family: var(--sans); font-size: 13px; letter-spacing: .12em; line-height: 1.8; }

.entry-cta {
  display: inline-flex;
  width: min(100%, 294px);
  min-height: 58px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  transition: background 180ms ease, transform 180ms var(--ease), border-color 180ms ease;
}

.entry-cta:hover { border-color: #302e2a; background: #302e2a; transform: translateY(-2px); }
.entry-cta:active { transform: translateY(0); }
.entry-arrow { color: #d7d1c8; font-family: var(--sans); font-size: 23px; font-weight: 300; line-height: 1; }

.entry-note {
  display: grid;
  max-width: 520px;
  margin: 22px 0 0;
  padding-top: 15px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.75;
}

.entry-note-label { color: var(--accent); font-size: 10px; font-weight: 650; letter-spacing: .08em; white-space: nowrap; }

.entry-card {
  display: flex;
  width: min(100%, 380px);
  min-height: 460px;
  padding: 32px 34px 30px;
  justify-self: end;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
  box-shadow: 12px 14px 0 rgba(187, 178, 166, .24);
}

.card-meta { display: flex; align-items: center; justify-content: space-between; color: #b7b0a6; font-family: var(--sans); font-size: 10px; letter-spacing: .13em; }
.card-meta span:last-child { color: #d98063; }
.card-rule { width: 100%; height: 1px; margin: 26px 0 0; background: rgba(255, 255, 255, .18); }
.card-content { padding: 26px 0; }
.card-content p { margin: 0 0 26px; color: #d98063; font-family: var(--sans); font-size: 11px; font-weight: 650; letter-spacing: .12em; }
.card-content h2 { margin: 0 0 20px; font-size: clamp(28px, 3.2vw, 41px); font-weight: 500; letter-spacing: -.04em; line-height: 1.34; }
.card-content span { color: #b7b0a6; font-size: 13px; line-height: 1.75; }
.card-link { display: flex; min-height: 50px; padding-top: 18px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .18); color: var(--paper-soft); font-family: var(--sans); font-size: 12px; letter-spacing: .12em; }
.card-link span:last-child { color: #d98063; font-size: 20px; }

@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .entry-shell { width: min(100% - 28px, 520px); border: 0; }
  .entry-shell::before { display: none; }
  .entry-main { display: flex; min-height: 0; padding: clamp(44px, 12vw, 74px) 2px clamp(54px, 14vw, 90px); flex-direction: column; gap: 0; align-items: stretch; }
  .entry-copy { max-width: none; text-align: center; }
  .entry-kicker { margin-bottom: 28px; font-size: 11px; letter-spacing: .08em; }
  .signature-frame { width: min(78vw, 320px); margin: 0 auto 2px; }
  .entry-name { margin-bottom: 24px; font-size: 15px; letter-spacing: .25em; }
  h1 { font-size: clamp(31px, 8.4vw, 39px); letter-spacing: -.065em; line-height: 1.32; }
  .entry-lede { margin: 24px 0 30px; font-size: 11px; letter-spacing: .06em; }
  .entry-cta { width: min(100%, 286px); min-height: 56px; margin: 0 auto; text-align: left; }
  .entry-note { width: min(100%, 286px); margin: 22px auto 0; padding-top: 14px; grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .entry-card { display: none; }
}

@media (min-width: 761px) and (max-height: 820px) {
  .entry-main { padding-top: 46px; padding-bottom: 46px; }
  .signature-frame { width: min(100%, 400px); }
  .entry-kicker { margin-bottom: 24px; }
  .entry-name { margin-bottom: 20px; }
  h1 { font-size: clamp(34px, 4.5vw, 52px); }
  .entry-lede { margin-top: 22px; margin-bottom: 28px; }
  .entry-card { min-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
