:root {
  color-scheme: light;
  --ink: #151713;
  --paper: #f4f5f1;
  --white: #fffefa;
  --muted: #626760;
  --line: rgba(21, 23, 19, 0.14);
  --line-strong: rgba(21, 23, 19, 0.24);
  --green: #2e6a55;
  --blue: #3e6378;
  --copper: #a95b3f;
  --gold: #9d7c3b;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "PingFang TC", "PingFang HK", "Hiragino Sans GB", "Microsoft YaHei", "Microsoft JhengHei", "Noto Sans CJK SC", "Noto Sans CJK TC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

html[data-cjk="true"] body {
  line-height: 1.68;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 1px;
  height: 1px;
  padding: 10px 12px;
  overflow: hidden;
  clip-path: inset(50%);
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  opacity: 0;
}

.skip-link:focus-visible {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  clip-path: none;
  opacity: 1;
  pointer-events: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cursor-halo {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-halo {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 38;
    display: block;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(46, 106, 85, 0.2);
    border-radius: 9999px;
    background: rgba(46, 106, 85, 0.1);
    box-shadow: 0 0 24px rgba(169, 91, 63, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
    will-change: transform, opacity;
  }
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 16px 0;
  pointer-events: none;
}

.nav {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 12px 11px 16px;
  background: rgba(255, 254, 250, 0.84);
  border: 1px solid rgba(21, 23, 19, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 35px rgba(21, 23, 19, 0.1);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 860;
  white-space: nowrap;
}

.mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.links {
  display: flex;
  align-items: center;
  gap: 2px;
  color: rgba(21, 23, 19, 0.7);
  font-size: 14px;
  font-weight: 760;
}

.links a {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  transition: background 0.18s ease, color 0.18s ease;
}

.links a:hover {
  background: rgba(21, 23, 19, 0.06);
  color: var(--ink);
}

.locale-switcher {
  position: relative;
  flex: 0 0 auto;
}

.locale-switcher summary {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: rgba(21, 23, 19, 0.7);
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 820;
}

.locale-switcher summary::-webkit-details-marker {
  display: none;
}

.locale-switcher summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.locale-switcher[open] summary,
.locale-switcher summary:hover {
  background: rgba(21, 23, 19, 0.06);
  color: var(--ink);
}

.locale-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 210px;
  padding: 8px;
  background: rgba(255, 254, 250, 0.96);
  border: 1px solid rgba(21, 23, 19, 0.12);
  box-shadow: 0 18px 48px rgba(21, 23, 19, 0.16);
  backdrop-filter: blur(18px);
}

.locale-menu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: rgba(21, 23, 19, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.locale-menu a:hover,
.locale-menu a[aria-current="true"] {
  background: rgba(21, 23, 19, 0.06);
  color: var(--ink);
}

.hero {
  min-height: 88svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(21, 23, 19, 0.98), rgba(21, 23, 19, 0.86) 52%, rgba(21, 23, 19, 0.58)),
    linear-gradient(135deg, rgba(169, 91, 63, 0.2), transparent 46%),
    linear-gradient(315deg, rgba(46, 106, 85, 0.18), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 254, 250, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 72%, transparent);
  animation: grid-drift 18s linear infinite;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 310px;
  gap: 72px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 254, 250, 0.72);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.6s 0.08s ease forwards;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 10px;
  background: var(--copper);
  vertical-align: middle;
}

h1,
.display {
  max-width: 840px;
  margin: 0;
  font-size: 5.9rem;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h2,
h3 {
  text-wrap: balance;
}

.hero h1,
.hero-copy,
.hero-meta,
.actions,
.portrait {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.68s ease forwards;
}

.hero h1 {
  animation-delay: 0.18s;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 254, 250, 0.84);
  font-size: 1.28rem;
  animation-delay: 0.29s;
}

.hero-copy.secondary {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255, 254, 250, 0.72);
  animation-delay: 0.34s;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  animation-delay: 0.4s;
}

.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 254, 250, 0.22);
  background: rgba(255, 254, 250, 0.08);
  font-size: 14px;
  font-weight: 760;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  animation-delay: 0.51s;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 254, 250, 0.28);
  color: var(--white);
  font-weight: 820;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn.primary {
  border-color: var(--copper);
  background: var(--copper);
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 254, 250, 0.13);
}

.btn.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn.dark.secondary {
  background: transparent;
  color: var(--ink);
}

.btn.dark.secondary:hover {
  background: rgba(21, 23, 19, 0.06);
}

.portrait {
  animation-delay: 0.42s;
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 254, 250, 0.3);
  padding: 12px;
  background: rgba(255, 254, 250, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait p {
  margin: 14px 0 0;
  color: rgba(255, 254, 250, 0.72);
  font-size: 14px;
}

.portrait strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.band {
  padding: 86px 0;
}

.band.white {
  background: var(--white);
}

.page-hero {
  padding: 148px 0 62px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero .display {
  font-size: 5.2rem;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
}

.label {
  margin: 0 0 13px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.title {
  margin: 0;
  font-size: 3.75rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.24rem;
}

.statement {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 1.56rem;
  line-height: 1.28;
  font-weight: 820;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
}

.metric b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.78rem;
  line-height: 1.12;
}

.metric small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
}

.metric span,
.card p,
.muted {
  color: var(--muted);
}

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

.substack-grid {
  gap: 0;
  background: transparent;
  border: 0;
}

.substack-grid .card {
  border: 1px solid var(--line);
  margin: 0 -1px -1px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: end;
  margin: 46px 0 0;
}

.section-head h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.04;
  font-weight: 900;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.publication-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
  transition: transform 0.18s ease, background 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  background: #fbfaf6;
}

.card h3 {
  margin: 8px 0 12px;
  font-size: 1.72rem;
  line-height: 1.14;
}

.external-card {
  min-height: 312px;
}

.external-card.has-cover {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.external-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.external-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.28s ease;
}

.external-card.has-cover:hover .external-media img {
  transform: scale(1.045);
}

.external-copy,
.external-footer {
  padding: 0 26px;
}

.external-copy {
  padding-top: 22px;
}

.external-footer {
  padding-bottom: 26px;
}

.card-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.card .kicker,
.kicker {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.tag {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.timeline {
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.time {
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.row h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.16;
}

.place {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.row ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.note-feature {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.visual-field {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--copper), var(--green) 54%, var(--blue));
}

.visual-field::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 254, 250, 0.34);
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 254, 250, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: skewY(-4deg);
}

.visual-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--white);
}

.visual-content span {
  color: rgba(255, 254, 250, 0.74);
  font-weight: 850;
}

.visual-content b {
  display: block;
  font-size: 5rem;
  line-height: 0.9;
}

figure.visual-field {
  margin: 0;
}

.visual-field.race-route-map {
  min-height: 450px;
  isolation: isolate;
  padding: 0;
  color: var(--white);
  background: #eee7da;
}

.visual-field.race-route-map::after {
  display: none;
}

.route-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.route-map-svg text {
  font-family: var(--font-sans);
  letter-spacing: 0;
  paint-order: stroke;
  stroke: rgba(250, 246, 239, 0.68);
  stroke-linejoin: round;
  stroke-width: 3px;
}

.route-land {
  fill: #d1c9b8;
}

.route-land-island {
  fill: #c8c1ae;
}

.route-water {
  fill: #3c6570;
}

.route-roads path {
  fill: none;
  stroke: rgba(255, 254, 250, 0.38);
  stroke-width: 2;
}

.map-region {
  fill: rgba(30, 28, 23, 0.44);
  font-size: 20px;
  font-weight: 860;
  text-transform: uppercase;
}

.map-region.island {
  fill: rgba(30, 28, 23, 0.5);
}

.route-underlay,
.route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-underlay {
  stroke: rgba(31, 27, 21, 0.2);
  stroke-width: 26;
}

.route-line {
  stroke: #d64b64;
  stroke-width: 13;
}

.route-points circle {
  fill: #f9f5ec;
  stroke: #d64b64;
  stroke-width: 7;
}

.distance-badges circle {
  fill: #f9f5ec;
  stroke: #d64b64;
  stroke-width: 7;
}

.distance-badges text {
  fill: #1e1c17;
  stroke: none;
  text-anchor: middle;
  font-size: 26px;
  font-weight: 920;
}

.distance-badges text + text {
  font-size: 16px;
  font-weight: 880;
}

.route-labels text {
  fill: #1e1c17;
  font-size: 17px;
  font-weight: 860;
}

.map-title rect,
.map-distance rect {
  fill: rgba(31, 27, 21, 0.88);
}

.map-title text,
.map-distance text {
  fill: var(--white);
  stroke: none;
}

.map-eyebrow {
  font-size: 17px;
  font-weight: 860;
  opacity: 0.78;
}

.map-heading {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 760;
}

.map-route {
  font-size: 19px;
  font-weight: 760;
  opacity: 0.84;
}

.map-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 860;
}

.route-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: min(52%, 280px);
  color: rgba(255, 254, 250, 0.74);
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: right;
}

.note-body {
  padding: 38px;
  background: var(--white);
}

.note-body h3 {
  margin: 0;
  font-size: 2.32rem;
  line-height: 1.1;
}

.note-body p {
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  border-top: 1px solid var(--line);
}

.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 760;
}

.detail-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.detail-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-section h2 {
  margin: 0 0 14px;
  font-size: 1.62rem;
}

.detail-section p {
  color: var(--muted);
}

.detail-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.module {
  min-height: 270px;
  padding: 30px;
  background: var(--white);
  transition: transform 0.18s ease, background 0.18s ease;
}

.module:hover {
  transform: translateY(-3px);
  background: #fbfaf6;
}

.module h2 {
  margin: 0 0 18px;
  font-size: 1.8rem;
  line-height: 1.12;
}

.module p {
  margin: 0;
  color: var(--muted);
}

.takeaways {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.takeaway {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.takeaway b {
  display: block;
}

.takeaway span {
  color: var(--muted);
}

.asset-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.asset {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(255, 254, 250, 0.2);
  background: rgba(255, 254, 250, 0.06);
  color: var(--white);
  font-weight: 820;
}

button.contact-item {
  width: 100%;
  border: 1px solid rgba(255, 254, 250, 0.2);
  appearance: none;
  cursor: pointer;
  text-align: left;
}

.contact-copy[data-copied="true"] {
  border-color: rgba(255, 254, 250, 0.34);
  background: rgba(255, 254, 250, 0.12);
}

.contact {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--copper), var(--green), var(--blue), var(--gold));
}

.contact .split {
  align-items: end;
}

.contact .contact-layout {
  align-items: start;
}

.contact .label {
  color: #d28a6f;
}

.contact h2 {
  margin: 0;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 900;
}

.contact p {
  color: rgba(255, 254, 250, 0.72);
  font-size: 1.14rem;
}

.open-list {
  margin: 26px 0 0;
  padding-left: 20px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 1.05rem;
}

.open-list li + li {
  margin-top: 10px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-form {
  padding: 26px;
  border: 1px solid rgba(255, 254, 250, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.1), rgba(255, 254, 250, 0.035)),
    rgba(255, 254, 250, 0.04);
}

.form-head {
  margin-bottom: 22px;
}

.form-head h3 {
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.08;
}

.form-head p:last-child {
  max-width: 560px;
  margin: 12px 0 0;
  font-size: 1rem;
}

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

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

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: rgba(255, 254, 250, 0.76);
  font-size: 0.86rem;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 0;
  background: rgba(255, 254, 250, 0.08);
  color: var(--white);
  font: inherit;
  letter-spacing: 0;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 254, 250, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 254, 250, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 13px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 150px;
  padding-top: 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 254, 250, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(210, 138, 111, 0.86);
  background: rgba(255, 254, 250, 0.12);
}

.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.turnstile-wrap {
  min-height: 72px;
  margin-top: 16px;
}

.turnstile-slot {
  min-height: 65px;
}

.form-note {
  margin: 2px 0 0;
  font-size: 0.93rem;
}

.form-actions {
  margin-top: 18px;
}

.contact-submit {
  width: 100%;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 760;
}

.form-status[data-state="success"] {
  color: #d5eadf;
}

.form-status[data-state="error"] {
  color: #f0b8a6;
}

.contact-secondary {
  grid-template-columns: 1fr;
}

footer {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(255, 254, 250, 0.62);
  font-size: 14px;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-links a,
.text-button {
  color: rgba(255, 254, 250, 0.74);
  font-size: 14px;
  font-weight: 760;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-button:hover,
.foot-links a:hover {
  color: var(--white);
}

.text-button[data-copied="true"] {
  color: #d28a6f;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-drift {
  to {
    background-position: 112px 56px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-halo {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
  }

  .links {
    order: 3;
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .locale-switcher {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .portrait {
    max-width: 260px;
  }

  h1,
  .display {
    font-size: 4.8rem;
  }

  .page-hero .display,
  .title,
  .contact h2 {
    font-size: 3.2rem;
  }

  .split,
  .section-head,
  .note-feature,
  .detail-layout,
  .module-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .toc {
    position: static;
  }

  .visual-field {
    min-height: 310px;
  }

  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 680px) {
  .shell,
  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar {
    padding: 12px 0;
  }

  .nav {
    min-height: 50px;
    padding: 10px 10px 10px 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .links {
    gap: 0;
    font-size: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .links::-webkit-scrollbar {
    display: none;
  }

  .links a {
    min-height: 34px;
    padding: 0 6px;
  }

  .locale-switcher summary {
    min-height: 34px;
    max-width: 168px;
    padding: 0 8px;
    font-size: 12px;
  }

  .locale-switcher summary span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .locale-menu {
    min-width: min(230px, calc(100vw - 32px));
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    padding: 116px 0 54px;
  }

  .portrait {
    max-width: 178px;
  }

  h1,
  .display {
    font-size: 3.18rem;
  }

  .page-hero {
    padding: 126px 0 50px;
  }

  .page-hero .display,
  .title {
    font-size: 2.45rem;
  }

  .section-head h2 {
    font-size: 2.18rem;
  }

  .hero-copy,
  .lead {
    font-size: 1.08rem;
  }

  .band {
    padding: 60px 0;
  }

  .statement {
    font-size: 1.22rem;
  }

  .grid-3,
  .metrics {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 26px 0;
  }

  .row h3 {
    font-size: 1.5rem;
  }

  .card {
    min-height: 236px;
    padding: 22px;
  }

  .external-card {
    min-height: 264px;
  }

  .external-card.has-cover {
    min-height: 390px;
  }

  .external-copy,
  .external-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .external-copy {
    padding-top: 20px;
  }

  .external-footer {
    padding-bottom: 22px;
  }

  .note-body {
    padding: 24px;
  }

  .note-body h3 {
    font-size: 1.8rem;
  }

  .visual-content b {
    font-size: 3.2rem;
  }

  .contact h2 {
    font-size: 2.65rem;
  }

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

  .form-head h3 {
    font-size: 1.65rem;
  }

  .contact-item {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
  }
}

/* V2.5 - quiet material system */
:root {
  --paper-0: #f7f2ea;
  --paper-1: #f0e8dc;
  --paper-2: #e7ded0;
  --ink-0: #201d18;
  --ink-1: #5b544a;
  --ink-2: #7a7268;
  --line-soft: rgba(32, 29, 24, 0.12);
  --line-mid: rgba(32, 29, 24, 0.2);
  --tea-brown: #7c6756;
  --clay: #a08672;
  --moss: #6e7868;
  --stone: #8a8d87;
  --focus: #67584a;
  --paper: var(--paper-0);
  --white: #fbf8f1;
  --ink: var(--ink-0);
  --muted: var(--ink-1);
  --line: var(--line-soft);
  --line-strong: var(--line-mid);
  --green: var(--moss);
  --blue: var(--stone);
  --copper: var(--tea-brown);
  --gold: var(--clay);
  --max: 1180px;
  --reader: 720px;
  --radius-soft: 2px;
  --texture-opacity: 0.035;
}

html {
  background: var(--paper-0);
}

body {
  position: relative;
  background:
    linear-gradient(90deg, rgba(32, 29, 24, 0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(32, 29, 24, 0.014) 1px, transparent 1px),
    var(--paper-0);
  background-size: 96px 96px, 96px 96px, auto;
  color: var(--ink-0);
  font-family: "Noto Sans", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--texture-opacity);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(32, 29, 24, 0.42) 0 0.6px, transparent 0.7px),
    radial-gradient(circle at 70% 80%, rgba(32, 29, 24, 0.32) 0 0.55px, transparent 0.65px);
  background-size: 18px 18px, 23px 23px;
}

html[data-locale="en"] {
  --font-display: "Noto Serif", Georgia, "Times New Roman", serif;
  --font-body: "Noto Sans", "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
}

html[data-locale="zh-CN"] {
  --font-display: "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html[data-locale="zh-HK"] {
  --font-display: "Noto Serif HK", "Songti TC", "PMingLiU", serif;
  --font-body: "Noto Sans HK", "PingFang HK", "Microsoft JhengHei", sans-serif;
}

html[data-locale="zh-TW"] {
  --font-display: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  --font-body: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

html[data-cjk="true"] body {
  line-height: 1.84;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid var(--focus);
  outline-offset: 5px;
}

.cursor-halo {
  width: 22px;
  height: 22px;
  border: 0;
  background: rgba(124, 103, 86, 0.08);
  box-shadow: 0 0 30px rgba(124, 103, 86, 0.16);
  filter: blur(1px);
  mix-blend-mode: multiply;
}

.topbar {
  padding: 20px 0;
}

.nav {
  min-height: 58px;
  padding: 0;
  background: color-mix(in srgb, var(--paper-0) 82%, transparent);
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.interface-switcher {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-right: 4px;
  border: 1px solid var(--line-soft);
  background: rgba(251, 248, 241, 0.64);
}

.interface-switcher a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-right: 1px solid var(--line-soft);
  color: var(--ink-1);
  font-size: 12px;
  font-weight: 620;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.interface-switcher a:last-child {
  border-right: 0;
}

.interface-switcher small {
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 640;
  letter-spacing: 0;
}

.interface-switcher a:hover,
.interface-switcher a[aria-current="page"] {
  background: rgba(124, 103, 86, 0.1);
  color: var(--ink-0);
}

.interface-switcher a[aria-current="page"] small {
  color: var(--tea-brown);
}

.brand {
  display: grid;
  gap: 0;
  padding: 9px 0;
  font-weight: 620;
  letter-spacing: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 520;
  text-transform: lowercase;
}

.links {
  gap: 18px;
  color: var(--ink-1);
  font-size: 13px;
  font-weight: 560;
}

.links a {
  min-height: 38px;
  padding: 0;
  border-bottom: 1px solid transparent;
}

.links a:hover,
.links a[aria-current="page"] {
  background: transparent;
  color: var(--ink-0);
  border-bottom-color: var(--tea-brown);
}

.locale-switcher summary {
  min-height: 38px;
  padding: 0;
  color: var(--ink-1);
  font-size: 12px;
  font-weight: 560;
}

.locale-switcher[open] summary,
.locale-switcher summary:hover {
  background: transparent;
  color: var(--ink-0);
}

.locale-menu {
  min-width: 224px;
  padding: 10px;
  background: rgba(247, 242, 234, 0.98);
  border: 1px solid var(--line-soft);
  box-shadow: 0 22px 54px rgba(32, 29, 24, 0.12);
  backdrop-filter: blur(18px);
}

.locale-menu a {
  min-height: 36px;
  padding: 0 8px;
  color: var(--ink-1);
  font-size: 13px;
  font-weight: 520;
}

.locale-menu a:hover,
.locale-menu a[aria-current="true"] {
  background: rgba(124, 103, 86, 0.08);
  color: var(--ink-0);
}

.locale-switcher:not([open]) .locale-menu {
  display: none;
}

h1,
.display,
.title,
.section-head h2,
.contact h2,
.page-hero .display,
.note-body h3,
.module h2 {
  font-family: var(--font-display);
  font-weight: 520;
  letter-spacing: 0;
}

.hero {
  min-height: 94svh;
  align-items: center;
  background: transparent;
  color: var(--ink-0);
  overflow: visible;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.98), rgba(247, 242, 234, 0.78) 68%, rgba(240, 232, 220, 0.88)),
    linear-gradient(0deg, transparent, rgba(110, 120, 104, 0.08));
}

.hero::after {
  display: none;
}

.hero-inner {
  padding: 154px 0 86px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 328px);
  gap: 112px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: var(--line-mid);
}

h1,
.display {
  max-width: 780px;
  font-size: clamp(2.85rem, 4.2vw, 3.5rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 680px;
  margin-top: 34px;
  color: var(--ink-1);
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
  line-height: 1.76;
}

.hero h1,
.hero-copy,
.hero-meta,
.actions,
.portrait {
  transform: translateY(10px);
}

.hero .meta-line {
  max-width: 760px;
  margin-top: 34px;
}

.actions {
  gap: 24px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--tea-brown);
  border-bottom: 1px solid color-mix(in srgb, var(--tea-brown) 42%, transparent);
  font-weight: 560;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--ink-0);
  border-color: var(--ink-0);
  transform: translateY(-1px);
}

.btn {
  min-height: 44px;
  border: 1px solid var(--line-mid);
  color: var(--ink-0);
  background: transparent;
  font-weight: 560;
}

.btn.primary,
.btn.dark {
  border-color: var(--ink-0);
  background: var(--ink-0);
  color: var(--paper-0);
}

.portrait {
  align-self: center;
}

.portrait-frame {
  padding: 0;
  border: 1px solid var(--line-soft);
  background: var(--paper-1);
  box-shadow: 0 24px 70px rgba(32, 29, 24, 0.12);
}

.portrait-frame img {
  filter: saturate(0.88) contrast(0.96);
}

.portrait p {
  color: var(--ink-2);
  font-size: 13px;
}

.portrait strong {
  color: var(--ink-0);
  font-family: var(--font-display);
  font-weight: 520;
}

.band {
  padding: 112px 0;
}

.band.white {
  background: rgba(240, 232, 220, 0.5);
}

.page-hero {
  padding: 164px 0 82px;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero .display {
  max-width: 820px;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
}

.page-hero p {
  max-width: var(--reader);
  color: var(--ink-1);
  line-height: 1.74;
}

.page-hero + .band {
  padding-top: 72px;
}

.split {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 96px;
}

.label {
  color: var(--tea-brown);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.02em;
  text-transform: none;
}

.title {
  max-width: 760px;
  font-size: clamp(1.9rem, 2.8vw, 2.35rem);
  line-height: 1.18;
}

.lead {
  max-width: var(--reader);
  color: var(--ink-1);
  font-size: 1.12rem;
  line-height: 1.78;
}

.section-head h2,
.note-body h3,
.module h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 1.2;
}

.statement {
  max-width: var(--reader);
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-0);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2.1vw, 1.68rem);
  font-weight: 500;
  line-height: 1.45;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 520;
}

.meta-line span[aria-hidden="true"] {
  color: color-mix(in srgb, var(--ink-2) 42%, transparent);
}

.editorial-block {
  max-width: 1000px;
}

.editorial-list {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-mid);
}

.editorial-entry {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 38px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-soft);
  color: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
}

.editorial-entry:hover {
  color: var(--tea-brown);
  transform: translateX(2px);
}

.editorial-entry.is-primary {
  padding-top: 44px;
  padding-bottom: 44px;
}

.entry-number {
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.editorial-entry h3 {
  max-width: 820px;
  margin: 6px 0 12px;
  color: var(--ink-0);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.24rem);
  font-weight: 520;
  line-height: 1.12;
}

.editorial-entry p {
  max-width: var(--reader);
  margin: 0;
  color: var(--ink-1);
}

.entry-action {
  padding-top: 8px;
  color: var(--tea-brown);
  white-space: nowrap;
  font-size: 14px;
}

.note-entry blockquote {
  max-width: 620px;
  margin: 20px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--line-mid);
  color: var(--ink-2);
  font-family: var(--font-display);
  line-height: 1.65;
}

.grid-3 {
  gap: 0;
  background: transparent;
  border: 0;
}

.card {
  background: color-mix(in srgb, var(--white) 82%, transparent);
  border: 1px solid var(--line-soft);
  box-shadow: none;
}

.card:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 520;
}

.card .kicker,
.kicker {
  color: var(--tea-brown);
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  text-transform: none;
}

.tag-list {
  gap: 8px 12px;
  margin-top: 18px;
}

.tag {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 520;
}

.tag::before {
  content: "/";
  margin-right: 8px;
  color: color-mix(in srgb, var(--ink-2) 42%, transparent);
}

.note-feature {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  margin-top: 46px;
  background: transparent;
  border: 1px solid var(--line-soft);
}

.visual-field {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(32, 29, 24, 0.12), rgba(32, 29, 24, 0.26)),
    linear-gradient(135deg, #887567, #6e7868 58%, #a08672);
}

.visual-field::after {
  inset: 30px;
  border-color: rgba(247, 242, 234, 0.28);
  background-image:
    linear-gradient(90deg, rgba(247, 242, 234, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(247, 242, 234, 0.14) 1px, transparent 1px);
  transform: none;
}

.visual-content {
  color: var(--paper-0);
}

.visual-content b {
  font-family: var(--font-display);
  font-weight: 520;
}

.note-body {
  background: var(--white);
}

.letters-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.letters-line h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 2vw, 2rem);
  font-weight: 520;
}

.letters-line p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-1);
}

.contact-email {
  color: var(--tea-brown);
  border-bottom: 1px solid color-mix(in srgb, var(--tea-brown) 42%, transparent);
}

.email-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 22px;
}

.email-action a {
  width: fit-content;
  color: var(--paper-0);
  border-bottom: 1px solid rgba(247, 242, 234, 0.34);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2.2vw, 1.78rem);
}

.email-action .text-button {
  color: rgba(247, 242, 234, 0.66);
  font-weight: 520;
}

.email-action a:hover,
.email-action .text-button:hover {
  color: var(--clay);
}

.detail-layout {
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 96px;
}

.toc {
  top: 104px;
  border-top-color: var(--line-soft);
}

.toc a {
  color: var(--ink-2);
  border-bottom-color: var(--line-soft);
  font-size: 13px;
  font-weight: 520;
}

.toc a:hover {
  color: var(--tea-brown);
}

.case-hero {
  background:
    linear-gradient(90deg, rgba(240, 232, 220, 0.72), rgba(247, 242, 234, 0.2)),
    transparent;
}

.case-body article {
  max-width: var(--reader);
}

.case-pull {
  margin: 0 0 38px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line-mid);
  color: var(--ink-0);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 1.9vw, 1.62rem);
  line-height: 1.45;
}

.case-coating-expense-reduction .case-pull {
  border-color: rgba(124, 103, 86, 0.28);
}

.case-wearable-product-stability {
  background-color: color-mix(in srgb, var(--moss) 5%, transparent);
}

.case-materials-characterization {
  background-color: color-mix(in srgb, var(--stone) 6%, transparent);
}

.archive-page {
  padding-top: 72px;
}

.archive-panel {
  max-width: 760px;
  color: var(--ink-1);
}

.archive-panel p {
  margin: 0;
  font-size: 1.12rem;
}

.archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
}

.archive-notice {
  width: min(var(--max), calc(100% - 40px));
  margin: 92px auto -72px;
  color: rgba(32, 29, 24, 0.64);
}

.detail-section {
  padding: 38px 0;
  border-top-color: var(--line-soft);
}

.detail-section h2 {
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 520;
}

.detail-section p,
.detail-section ul {
  color: var(--ink-1);
  line-height: 1.78;
}

.timeline {
  border-top-color: var(--line-mid);
}

.row {
  grid-template-columns: 170px minmax(0, 1fr);
  border-bottom-color: var(--line-soft);
}

.time {
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.row h3 {
  font-family: var(--font-display);
  font-weight: 520;
}

.row ul {
  color: var(--ink-1);
}

.module-grid {
  gap: 0;
  background: transparent;
  border: 0;
}

.module {
  min-height: 240px;
  padding: 30px 0;
  background: transparent;
  border-top: 1px solid var(--line-soft);
}

.module:hover {
  transform: none;
  background: transparent;
}

.contact {
  background:
    linear-gradient(90deg, rgba(32, 29, 24, 0.96), rgba(32, 29, 24, 0.9)),
    var(--ink-0);
  color: var(--paper-0);
}

.contact::before {
  height: 1px;
  background: rgba(247, 242, 234, 0.22);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: start;
}

.contact h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.4vw, 3.7rem);
  line-height: 1.08;
}

.contact p,
.open-list {
  color: rgba(247, 242, 234, 0.72);
}

.contact-email {
  display: inline-flex;
  margin-top: 26px;
  color: #e2d8c9;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.contact-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.form-head h3 {
  font-family: var(--font-display);
  font-weight: 520;
}

.field-grid {
  gap: 22px;
}

.field span {
  color: rgba(247, 242, 234, 0.72);
  font-size: 0.84rem;
  font-weight: 520;
}

.field input,
.field select,
.field textarea {
  min-height: 50px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.26);
  background: transparent;
  color: var(--paper-0);
}

.field textarea {
  min-height: 138px;
  padding-top: 10px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(247, 242, 234, 0.72);
  background: transparent;
}

.form-actions {
  margin-top: 22px;
}

.contact-submit {
  width: auto;
  min-width: 170px;
  color: var(--paper-0);
  border-color: rgba(247, 242, 234, 0.34);
  background: transparent;
}

.contact-submit:hover {
  background: rgba(247, 242, 234, 0.1);
}

.contact-panel {
  gap: 0;
  border-top: 1px solid rgba(247, 242, 234, 0.16);
}

.contact-item {
  min-height: 56px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.16);
  background: transparent;
  color: rgba(247, 242, 234, 0.82);
  font-weight: 520;
}

footer {
  background: var(--paper-0);
  color: var(--ink-2);
  border-top: 1px solid var(--line-soft);
}

.foot-links a,
.text-button {
  color: var(--ink-1);
  font-weight: 520;
}

.text-button:hover,
.foot-links a:hover {
  color: var(--tea-brown);
}

.reveal {
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@media (max-width: 980px) {
  .hero-inner,
  .contact-layout,
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-inner {
    padding-top: 138px;
  }

  .portrait {
    max-width: 240px;
  }

  .editorial-entry {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .entry-action {
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  body {
    background-size: 72px 72px, 72px 72px, auto;
  }

  .topbar {
    padding: 10px 0;
  }

  .nav {
    padding-bottom: 8px;
    flex-wrap: wrap;
  }

  .interface-switcher {
    order: -2;
    width: 100%;
    margin-right: 0;
  }

  .interface-switcher a {
    flex: 1 1 0;
    justify-content: center;
    min-height: 32px;
    padding: 0 8px;
    font-size: 11px;
  }

  .interface-switcher small {
    font-size: 9px;
  }

  .brand {
    order: -1;
  }

  .locale-switcher {
    margin-left: auto;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .links {
    order: 3;
    width: 100%;
    gap: 14px;
    justify-content: flex-start;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 126px 0 66px;
    gap: 42px;
  }

  .portrait {
    max-width: 174px;
  }

  .band {
    padding: 72px 0;
  }

  .page-hero {
    padding: 126px 0 54px;
  }

  .page-hero + .band {
    padding-top: 48px;
  }

  .editorial-entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .entry-number,
  .entry-action {
    grid-column: auto;
  }

  .entry-action {
    white-space: normal;
  }

  .note-feature {
    grid-template-columns: 1fr;
  }

  .visual-field {
    min-height: 260px;
  }

  .visual-field.race-route-map {
    min-height: 330px;
  }

  .letters-line {
    display: grid;
    align-items: start;
    gap: 18px;
  }

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

  .contact-submit {
    width: 100%;
  }
}
