:root {
  --paper: #f3f6eb;
  --paper-bright: #fbfcf6;
  --ink: #143a2b;
  --muted: #5f7468;
  --tea: #0b5b38;
  --tea-deep: #083c2a;
  --sprout: #9dc333;
  --sun: #efb72f;
  --sea: #4e9dac;
  --line: rgba(20, 58, 43, 0.2);
  --white-line: rgba(255, 255, 255, 0.28);
  --page: min(1440px, calc(100vw - 80px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Route overview + direct detail reading pages */
.route-page,
.detail-page {
  background: var(--paper);
}

.route-hero,
.detail-hero,
.route-intro,
.route-directory,
.detail-breadcrumb,
.detail-facts,
.detail-jump-nav,
.detail-process,
.detail-body,
.detail-gallery,
.detail-pager {
  width: var(--page);
  margin-inline: auto;
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  min-height: min(780px, 100vh);
  gap: clamp(46px, 7vw, 130px);
  align-items: center;
  padding: 142px 0 80px;
}

.route-hero-copy {
  max-width: 660px;
}

.route-kicker,
.detail-index {
  margin: 20px 0 0;
  color: var(--tea);
  font: 700 12px/1.2 "Arial", sans-serif;
  letter-spacing: 0.16em;
}

.route-hero h1,
.detail-hero h1 {
  margin: 16px 0 24px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(52px, 5.9vw, 104px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.route-hero-copy > p:not(.eyebrow):not(.route-kicker),
.detail-hero-copy > p:not(.eyebrow):not(.detail-index) {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.text-action {
  display: inline-flex;
  gap: 14px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--tea);
  font-size: 14px;
  font-weight: 700;
}

.text-action span {
  font-size: 20px;
  line-height: 0.7;
  transition: transform 0.25s var(--ease);
}

.text-action:hover span { transform: translateY(4px); }

.route-hero-media {
  position: relative;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  background: #d4dfc1;
}

.route-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.55);
  content: "";
  pointer-events: none;
}

.route-hero-media img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.route-hero-media figcaption { position: absolute; right: 28px; bottom: 26px; z-index: 2; color: #fff; font-size: 11px; letter-spacing: .14em; text-shadow: 0 1px 12px rgba(0,0,0,.44); }
.route-hero-design .route-hero-media img { object-position: 55% center; }

.route-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 10vw, 180px);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.route-intro h2,
.route-section-heading h2 {
  margin: 13px 0 0;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(38px, 4.3vw, 68px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.06em;
}

.route-intro-copy > p,
.route-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.route-stats,
.route-intro-copy > dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 46px 0 0;
}

.route-stats div,
.route-intro-copy > dl div { padding-top: 17px; border-top: 1px solid var(--line); }
.route-stats dt,
.route-intro-copy > dl dt { color: var(--tea); font-family: Georgia, serif; font-size: clamp(34px, 4vw, 52px); }
.route-stats dd,
.route-intro-copy > dl dd { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

.factory-compare {
  width: var(--page);
  margin: 0 auto;
  padding: 18px 0 116px;
}
.factory-compare > header {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 10vw, 180px);
  align-items: end;
  margin-bottom: 46px;
}
.factory-compare h2 {
  margin: 13px 0 0;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(38px, 4.3vw, 68px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.06em;
}
.factory-compare > header > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}
.factory-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.factory-compare article {
  min-width: 0;
  padding: 34px clamp(24px, 3vw, 46px) 42px;
  border-right: 1px solid var(--line);
}
.factory-compare article:first-child { padding-left: 0; }
.factory-compare article:last-child { padding-right: 0; border-right: 0; }
.factory-compare article > span {
  color: var(--sprout);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .14em;
}
.factory-compare h3 {
  min-height: 2.5em;
  margin: 35px 0 28px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.045em;
}
.factory-compare dl { margin: 0; }
.factory-compare dl div { padding: 17px 0; border-top: 1px solid var(--line); }
.factory-compare dt { margin-bottom: 7px; color: var(--tea); font-size: 11px; font-weight: 700; }
.factory-compare dd { margin: 0; color: #375549; font-size: 13px; line-height: 1.75; }

.route-directory { padding: 28px 0 126px; }
.route-section-heading { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 8vw, 142px); align-items: end; margin-bottom: 52px; }
.route-section-heading .eyebrow, .route-section-heading h2 { grid-column: 1; }
.route-section-heading > p { grid-column: 2; grid-row: 1 / span 2; align-self: end; }

.route-card-list { border-top: 1px solid var(--line); }
.route-card {
  display: grid;
  grid-template-columns: 82px minmax(260px, 1fr) 285px 38px;
  gap: 28px;
  min-height: 194px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .3s var(--ease), padding .3s var(--ease);
}
.route-card:hover { padding-inline: 18px; background: rgba(157,195,51,.12); }
.route-card-number { color: var(--tea); font-family: Georgia, serif; font-size: 39px; }
.route-card p { margin: 0 0 7px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.route-card h3 { margin: 0 0 10px; color: var(--tea-deep); font-family: Georgia, "Songti SC", serif; font-size: clamp(27px, 2.5vw, 39px); font-weight: 500; letter-spacing: -.05em; }
.route-card div > span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.route-card img { width: 100%; height: 155px; object-fit: cover; }
.route-card > i { color: var(--tea); font-size: 26px; font-style: normal; transition: transform .25s var(--ease); }
.route-card:hover > i { transform: translate(5px, -5px); }

.route-handoff { padding: 110px max(40px, calc((100vw - var(--page)) / 2)); background: var(--tea-deep); color: var(--paper); }
.route-handoff h2 { max-width: 860px; margin: 16px 0 36px; font-family: Georgia, "Songti SC", serif; font-size: clamp(40px, 5.2vw, 80px); font-weight: 500; line-height: 1.13; letter-spacing: -.06em; }
.button-light { background: var(--paper); color: var(--tea-deep); }

.member-directory { padding-top: 28px; }
.member-groups { border-top: 1px solid var(--line); }
.member-group { display: grid; grid-template-columns: 245px 1fr; gap: 36px; padding: 38px 0 46px; border-bottom: 1px solid var(--line); }
.member-group-label span { color: var(--sprout); font: 700 12px/1 Arial, sans-serif; letter-spacing: .12em; }
.member-group-label h3 { margin: 14px 0 9px; color: var(--tea-deep); font-family: Georgia, "Songti SC", serif; font-size: 29px; font-weight: 500; }
.member-group-label p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.member-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.member-link-card { position: relative; min-height: 278px; overflow: hidden; padding: 16px; background: var(--tea-deep); color: #fff; }
.member-link-card::after { position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,60,42,.03) 28%, rgba(8,60,42,.87) 95%); content:""; }
.member-link-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.85); transition:transform .45s var(--ease); }
.member-link-card:hover img { transform:scale(1.055); }
.member-link-card > *:not(img) { position:relative; z-index:1; }
.member-link-card > span { display:block; color:#d9e9ce; font:700 11px/1 Arial, sans-serif; letter-spacing:.12em; }
.member-link-card h4 { margin:149px 0 4px; font-size:22px; font-weight:500; }
.member-link-card p { margin:0; color:#d8e7dc; font-size:12px; }
.member-link-card i { position:absolute; right:15px; bottom:16px; font-style:normal; font-size:19px; }

.detail-page { min-height: 100vh; }
.detail-breadcrumb { display:flex; flex-wrap:wrap; gap:10px; padding-top: 122px; color: var(--muted); font-size: 12px; }
.detail-breadcrumb a { color: var(--tea); border-bottom: 1px solid transparent; }
.detail-breadcrumb a:hover { border-color: currentColor; }
.detail-breadcrumb b { color: var(--ink); font-weight: 600; }
.detail-hero { display:grid; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); gap:clamp(38px,8vw,145px); align-items:center; padding:50px 0 90px; }
.detail-hero h1 { font-size:clamp(45px, 5.2vw, 88px); }
.detail-hero figure { position:relative; margin:0; min-height:470px; overflow:hidden; background:#dbe5cf; }
.detail-hero figure::after { position:absolute; inset:14px; border:1px solid rgba(255,255,255,.58); content:""; }
.detail-hero img { width:100%; height:100%; min-height:470px; object-fit:cover; }
.detail-hero figcaption { position:absolute; z-index:1; bottom:24px; right:28px; color:#fff; font-size:11px; letter-spacing:.14em; text-shadow:0 1px 10px rgba(0,0,0,.48); }
.detail-facts { display:grid; grid-template-columns: 210px 1fr; gap:40px; padding:30px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.detail-facts > p { margin:0; color:var(--tea); font:700 11px/1.2 Arial,sans-serif; letter-spacing:.14em; }
.detail-facts dl { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:0; }
.detail-facts div { padding-left:16px; border-left:2px solid var(--sprout); }
.detail-facts dt { margin:0 0 7px; color:var(--tea-deep); font-size:12px; font-weight:700; }
.detail-facts dd { margin:0; color:var(--muted); font-size:13px; line-height:1.6; }

.detail-jump-nav {
  position: sticky;
  top: 74px;
  z-index: 12;
  display: flex;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 246, 235, .94);
  box-shadow: 0 12px 28px rgba(8, 60, 42, .04);
  backdrop-filter: blur(14px);
}
.detail-jump-nav > span {
  margin-right: auto;
  color: var(--tea);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .16em;
}
.detail-jump-nav a {
  padding: 10px clamp(14px, 2vw, 27px);
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}
.detail-jump-nav a:hover,
.detail-jump-nav a:focus-visible { color: var(--tea-deep); background: rgba(157,195,51,.13); }
#detail-process, #detail-story, #detail-gallery, #detail-sources { scroll-margin-top: 150px; }

.detail-backtop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(20,58,43,.32);
  background: rgba(251,252,246,.94);
  color: var(--tea-deep);
  box-shadow: 0 12px 28px rgba(8,60,42,.11);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}
.detail-backtop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.detail-backtop:hover { background: var(--paper-bright); }
.detail-backtop span { margin-top: 5px; font-size: 17px; line-height: 1; }
.detail-backtop b { margin-top: -11px; font: 700 8px/1 Arial,sans-serif; letter-spacing: .12em; }

.detail-process {
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(0, 2fr);
  gap: clamp(42px, 7vw, 110px);
  padding: 94px 0 0;
}

.detail-process > header { max-width: 330px; }
.detail-process > header .eyebrow { margin: 0 0 24px; }
.detail-process > header h2 {
  margin: 0 0 22px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(35px, 3.8vw, 58px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.055em;
}
.detail-process > header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.detail-process-list { border-top: 1px solid var(--line); }
.detail-process-list article {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 30px;
  padding: 31px 0 34px;
  border-bottom: 1px solid var(--line);
}
.detail-process-list article > span {
  padding-top: 5px;
  color: var(--sprout);
  font: 700 11px/1.4 Arial, sans-serif;
  letter-spacing: .11em;
}
.detail-process-list h3 {
  margin: 0 0 14px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.035em;
}
.detail-process-list p {
  margin: 0;
  color: #375549;
  font-size: 15px;
  line-height: 1.95;
  text-align: justify;
}
.detail-process-list small {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid rgba(39, 88, 67, .12);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.detail-process-list small b { color: var(--tea); font-weight: 700; }
.detail-body { display:grid; grid-template-columns:220px minmax(0,760px); justify-content:space-between; gap:50px; padding:105px 0 85px; }
.detail-body-intro p:last-child { margin:17px 0 0; color:var(--muted); font-size:14px; line-height:1.85; }
.detail-prose-list { display:grid; gap:54px; }
.detail-prose { display:grid; grid-template-columns:55px 1fr; gap:22px; }
.detail-prose > span { color:var(--sprout); font:700 13px/1 Arial,sans-serif; letter-spacing:.1em; padding-top:7px; }
.detail-prose h2 { margin:0 0 15px; color:var(--tea-deep); font-family:Georgia,"Songti SC",serif; font-size:clamp(28px,3vw,42px); font-weight:500; letter-spacing:-.05em; }
.detail-prose p { margin:0; color:#375549; font-size:16px; line-height:2; }
.detail-editor-note { display:grid; grid-template-columns:1fr minmax(0,2fr); gap:42px; width:var(--page); margin:0 auto 64px; padding:28px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.detail-editor-note .eyebrow { margin:4px 0 0; }
.detail-editor-note > p:last-child { max-width:720px; margin:0; color:var(--tea-deep); font-family:Georgia,"Songti SC",serif; font-size:clamp(20px,2vw,28px); line-height:1.55; }
.detail-field-notes { width:var(--page); margin:0 auto 64px; padding:38px 0 0; border-top:1px solid var(--line); }
.detail-field-notes header { display:flex; align-items:baseline; justify-content:space-between; gap:24px; margin-bottom:26px; }
.detail-field-notes .eyebrow { margin:0; }
.detail-field-notes h2 { margin:0; color:var(--tea-deep); font-family:Georgia,"Songti SC",serif; font-size:clamp(25px,3vw,40px); font-weight:500; }
.detail-field-notes > div { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid var(--line); }
.detail-field-notes article { min-height:178px; padding:25px 28px 28px 0; border-right:1px solid var(--line); }
.detail-field-notes article + article { padding-left:28px; }
.detail-field-notes article:last-child { border-right:0; }
.detail-field-notes h3 { margin:0 0 12px; color:var(--tea-deep); font-size:17px; }
.detail-field-notes p { margin:0; color:var(--ink-soft); font-size:14px; line-height:1.8; }
.detail-gallery { display:grid; grid-template-columns:1fr 1fr; gap:18px; padding-bottom:105px; }
.detail-gallery figure { margin:0; }
.detail-gallery img { width:100%; aspect-ratio: 1.35 / 1; object-fit:cover; }
.detail-gallery figcaption { display:flex; flex-direction:column; gap:5px; margin-top:11px; color:var(--muted); font-size:12px; line-height:1.65; }
.detail-gallery figcaption b { color:var(--tea-deep); font-size:14px; font-weight:600; }
.detail-source { display:flex; flex-direction:column; gap:8px; width:var(--page); margin:0 auto 28px; padding:25px 28px; border:1px solid var(--line); color:var(--tea-deep); }
.detail-source > a { display:flex; flex-direction:column; gap:6px; padding:15px 0; border-top:1px solid var(--line); transition:background-color .25s var(--ease), padding .25s var(--ease); }
.detail-source > a:first-of-type { margin-top:4px; }
.detail-source > a:hover { padding-inline:12px; background:rgba(157,195,51,.13); }
.detail-source span { color:var(--tea); font-size:10px; font-weight:700; letter-spacing:.14em; }
.detail-source b { font-family:Georgia,"Songti SC",serif; font-size:20px; font-weight:500; }
.detail-source small { color:var(--muted); font-size:12px; }
.detail-pager { display:grid; grid-template-columns:1fr auto 1fr; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.detail-pager a, .detail-pager-placeholder { min-height:112px; display:flex; flex-direction:column; justify-content:center; gap:9px; padding:22px 24px; }
.detail-pager a { transition:background-color .25s var(--ease); }
.detail-pager a:hover { background:rgba(157,195,51,.15); }
.detail-pager small, .detail-pager-placeholder small { color:var(--muted); font-size:10px; font-weight:700; letter-spacing:.14em; }
.detail-pager b, .detail-pager-placeholder b { color:var(--tea-deep); font-size:15px; }
.detail-pager-home { align-items:center; border-inline:1px solid var(--line); text-align:center; }
.detail-pager-next { align-items:flex-end; text-align:right; }
.detail-pager-placeholder { opacity:.48; }
.detail-error { width:var(--page); margin:0 auto; padding:180px 0 100px; }
.detail-error h1 { max-width:650px; margin:16px 0; color:var(--tea-deep); font-family:Georgia,"Songti SC",serif; font-size:clamp(44px,6vw,80px); font-weight:500; }

@media (max-width: 800px) {
  .route-hero, .detail-hero, .route-intro, .route-section-heading, .detail-body { grid-template-columns:1fr; }
  .route-hero { min-height:auto; gap:38px; padding:116px 0 54px; }
  .route-hero h1, .detail-hero h1 { letter-spacing:-.05em; }
  .route-hero-media, .route-hero-media img { min-height:340px; }
  .route-intro { gap:30px; padding:74px 0; }
  .factory-compare { padding: 0 0 82px; }
  .factory-compare > header { grid-template-columns: 1fr; gap: 26px; margin-bottom: 34px; }
  .factory-compare-grid { grid-template-columns: 1fr; }
  .factory-compare article,
  .factory-compare article:first-child,
  .factory-compare article:last-child { padding: 30px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); }
  .factory-compare article:last-child { border-bottom: 0; }
  .factory-compare h3 { min-height: 0; margin: 25px 0 22px; }
  .route-section-heading { gap:18px; margin-bottom:35px; }
  .route-section-heading .eyebrow, .route-section-heading h2, .route-section-heading > p { grid-column:auto; grid-row:auto; }
  .route-stats { margin-top:30px; }
  .route-card { grid-template-columns:44px 1fr 98px 20px; gap:12px; min-height:134px; padding:12px 0; }
  .route-card:hover { padding-inline:7px; }
  .route-card-number { font-size:24px; }
  .route-card h3 { margin-bottom:5px; font-size:26px; }
  .route-card p { margin-bottom:4px; font-size:8px; }
  .route-card div > span { display:block; font-size:11px; line-height:1.45; }
  .route-card img { height:92px; }
  .route-card > i { font-size:17px; }
  .route-handoff { padding:72px max(24px, calc((100vw - var(--page)) / 2)); }
  .member-group { grid-template-columns:1fr; gap:22px; padding:30px 0; }
  .member-card-grid { grid-template-columns:repeat(2,1fr); }
  .member-link-card { min-height:235px; }
  .member-link-card h4 { margin-top:117px; font-size:19px; }
  .detail-breadcrumb { padding-top:104px; }
  .detail-hero { gap:28px; padding:32px 0 64px; }
  .detail-hero figure, .detail-hero img { min-height:300px; }
  .detail-facts { grid-template-columns:1fr; gap:20px; padding:24px 0; }
  .detail-facts dl { grid-template-columns:1fr; gap:14px; }
  .detail-jump-nav { position: static; min-height: 58px; overflow-x: auto; }
  .detail-jump-nav > span { display: none; }
  .detail-jump-nav a { flex: 0 0 auto; padding: 10px 17px; }
  .detail-jump-nav a:first-of-type { border-left: 0; padding-left: 0; }
  .detail-backtop { right: 12px; bottom: 14px; width: 46px; height: 46px; }
  .detail-backtop span { font-size: 15px; }
  .detail-body { gap:40px; padding:72px 0 58px; }
  .detail-prose-list { gap:38px; }
  .detail-prose { grid-template-columns:32px 1fr; gap:12px; }
  .detail-prose p { font-size:15px; line-height:1.9; }
  .detail-editor-note { grid-template-columns:1fr; gap:12px; width:var(--page); margin-bottom:48px; }
  .detail-field-notes { width:var(--page); margin-bottom:48px; }
  .detail-field-notes header { display:block; }
  .detail-field-notes h2 { margin-top:12px; font-size:28px; }
  .detail-field-notes > div { grid-template-columns:1fr; }
  .detail-field-notes article, .detail-field-notes article + article { min-height:0; padding:21px 0; border-right:0; border-bottom:1px solid var(--line); }
  .detail-gallery { grid-template-columns:1fr; gap:26px; padding-bottom:68px; }
  .detail-source { width:var(--page); padding:20px; }
  .detail-source b { font-size:17px; line-height:1.45; }
  .detail-pager { grid-template-columns:1fr 1fr; }
  .detail-pager-home { grid-column:1 / -1; grid-row:1; border-inline:0; border-bottom:1px solid var(--line); min-height:72px; }
  .detail-pager a, .detail-pager-placeholder { min-height:96px; padding:18px 12px; }
  .detail-pager b, .detail-pager-placeholder b { font-size:13px; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(157, 195, 51, 0.13), transparent 22rem),
    var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(11, 91, 56, 0.03) 0,
    rgba(11, 91, 56, 0.03) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(-160%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

section[id] {
  scroll-margin-top: 5.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 78px;
  padding: 0 40px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 246, 235, 0.92);
  transition: background 280ms ease, min-height 280ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(251, 252, 246, 0.97);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wordmark-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--tea);
  border-radius: 50%;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 25px;
  font-weight: 700;
}

.wordmark b,
.wordmark small {
  display: block;
}

.wordmark b {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.wordmark small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 38px);
  font-size: 13px;
}

.site-nav a {
  position: relative;
  padding: 27px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  min-width: 92px;
  padding: 11px 18px;
  border: 1px solid var(--tea);
  text-align: center;
}

.site-nav .nav-contact::after {
  display: none;
}

.site-nav .nav-contact:hover {
  background: var(--tea);
  color: white;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  display: grid;
  width: var(--page);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(60px, 7.5vw, 118px) 0 54px;
  grid-template-columns: minmax(340px, 0.76fr) minmax(600px, 1.32fr);
  gap: clamp(44px, 5.5vw, 96px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--tea);
  font-family: Consolas, "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-weight: 400;
  line-height: 0.92;
}

.hero-title span {
  display: block;
}

.hero-title .school {
  margin-bottom: 20px;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 500;
  letter-spacing: 0.32em;
}

.hero-title .project-name {
  margin-left: -0.05em;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(76px, 7.3vw, 132px);
  font-weight: 700;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.hero-title .team-name {
  margin-top: 15px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(28px, 2.7vw, 48px);
  letter-spacing: 0.22em;
}

.hero-lead {
  margin: 46px 0 18px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.5;
}

.hero-summary {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 25px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  padding: 0 26px;
  background: var(--tea);
  color: white;
}

.button-primary:hover {
  background: var(--tea-deep);
}

.button-text {
  gap: 14px;
  border-bottom: 1px solid var(--ink);
}

.hero-facts {
  display: grid;
  margin: 48px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-facts div {
  min-width: 0;
}

.hero-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  min-width: 0;
}

.carousel-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e6edd4;
  box-shadow: 0 30px 70px rgba(20, 58, 43, 0.14);
}

.carousel-stage::after {
  position: absolute;
  inset: 13px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.56);
  content: "";
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 720ms var(--ease), visibility 720ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .photo-cover {
  object-position: center 45%;
  filter: saturate(0.82) contrast(1.03);
  transform: scale(1.02);
}

.hero-slide figcaption {
  position: absolute;
  right: 28px;
  bottom: 27px;
  z-index: 6;
  min-width: 215px;
  padding: 14px 16px;
  background: rgba(248, 250, 240, 0.92);
  color: var(--ink);
}

.hero-slide figcaption span,
.hero-slide figcaption strong {
  display: block;
}

.hero-slide figcaption span {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.hero-slide figcaption strong {
  font-size: 13px;
}

.carousel-controls {
  display: grid;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto auto;
  gap: 28px;
}

.carousel-controls p {
  margin: 0;
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  background: var(--line);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--tea);
}

.carousel-arrows {
  display: flex;
}

.carousel-arrows button {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.carousel-arrows button:hover {
  background: var(--tea);
  color: white;
}

.asset-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
}

.theme-rail {
  display: flex;
  min-height: 84px;
  padding: 0 40px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 60px);
  background: var(--tea);
  color: white;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(15px, 1.4vw, 22px);
  letter-spacing: 0.15em;
}

.theme-rail i {
  width: 7px;
  aspect-ratio: 1;
  background: var(--sprout);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-45deg);
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 12vw, 210px) 0;
}

.section-index {
  position: absolute;
  top: 42px;
  left: 0;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.section h2,
.practice-header h2,
.ip-heading h2,
.works-heading h2,
.closing h2 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(48px, 5vw, 86px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.project-overview {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.54fr;
  gap: clamp(50px, 6vw, 105px);
  align-items: start;
}

.overview-copy {
  padding-top: 80px;
}

.overview-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.overview-copy .lead-copy {
  color: var(--ink);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 21px;
  line-height: 1.75;
}

.field-card {
  margin-top: 80px;
  padding: 22px;
  border-top: 3px solid var(--sun);
  background: #e5ebcf;
}

.field-card-label {
  display: block;
  margin-bottom: 32px;
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.field-card dl {
  margin: 0;
}

.field-card dl div {
  padding: 14px 0;
  border-top: 1px solid rgba(20, 58, 43, 0.18);
}

.field-card dt {
  color: var(--tea);
  font-family: "Times New Roman", serif;
  font-size: 32px;
}

.field-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.field-card small {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.team-section {
  display: grid;
  padding-top: 150px;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.78fr 1.2fr 0.58fr;
  grid-template-rows: auto auto;
  gap: 32px;
  align-items: start;
}

.team-intro {
  position: sticky;
  top: 120px;
  grid-row: 1 / span 2;
  padding-right: 35px;
}

.team-intro p:not(.eyebrow) {
  max-width: 28rem;
  margin: 35px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  padding-bottom: 6px;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}

.team-section figure {
  margin: 0;
}

.team-section figure img {
  width: 100%;
}

.team-section figcaption,
.ip-gallery figcaption,
.fan-showcase figcaption {
  display: flex;
  margin-top: 12px;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.team-section figcaption span,
.ip-gallery figcaption span,
.fan-showcase figcaption span {
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.team-section figcaption b,
.ip-gallery figcaption b,
.fan-showcase figcaption b {
  font-size: 12px;
}

.team-flag {
  grid-column: 2 / span 2;
}

.team-shirt {
  grid-column: 2;
}

.team-photo-field {
  grid-column: 3;
}

.team-photo-field img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-photo-placeholder {
  display: flex;
  min-height: 100%;
  padding: 28px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px dashed var(--muted);
  background:
    linear-gradient(135deg, rgba(157, 195, 51, 0.25), transparent 70%),
    var(--paper-bright);
}

.team-photo-placeholder span {
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.team-photo-placeholder b {
  margin-top: 12px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 27px;
}

.team-photo-placeholder p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.team-roster {
  margin-top: clamp(90px, 10vw, 155px);
  grid-column: 1 / -1;
}

.roster-heading {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1fr 0.45fr;
  gap: 90px;
  align-items: end;
}

.roster-heading h3 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.12;
}

.roster-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

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

.member-card {
  min-width: 0;
  padding: 18px 18px 34px;
  background: var(--paper);
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.02);
  transition: filter 400ms ease, transform 500ms var(--ease);
}

.member-card:hover img {
  filter: saturate(1);
  transform: translateY(-4px);
}

.member-card div {
  padding-top: 18px;
}

.member-card span {
  color: var(--tea);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.member-card h4 {
  margin: 9px 0 8px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 27px;
}

.member-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.practice-section {
  padding: clamp(100px, 11vw, 180px) 0;
  overflow: hidden;
  background: var(--tea-deep);
  color: white;
}

.practice-shell {
  position: relative;
  width: var(--page);
  margin: 0 auto;
}

.practice-header {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
}

.practice-header .eyebrow,
.ip-section .eyebrow {
  color: var(--sprout);
}

.practice-header > p {
  max-width: 33rem;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.route-line {
  position: absolute;
  top: 170px;
  right: -15vw;
  width: 48vw;
  height: 210px;
  border-top: 1px dashed rgba(157, 195, 51, 0.6);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.route-line span {
  position: absolute;
  top: -7px;
  left: 33%;
  width: 12px;
  aspect-ratio: 1;
  background: var(--sprout);
  border-radius: 50% 0 50% 50%;
  transform: rotate(35deg);
}

.practice-steps {
  display: grid;
  margin: 100px 0 80px;
  padding: 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.practice-steps li {
  min-height: 210px;
  padding: 22px 30px 30px 0;
  border-right: 1px solid var(--white-line);
}

.practice-steps li:not(:first-child) {
  padding-left: 30px;
}

.practice-steps li > span {
  color: var(--sprout);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.practice-steps li div {
  margin-top: 58px;
}

.practice-steps b {
  display: block;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 26px;
}

.practice-steps p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.practice-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.practice-gallery figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: #d7dfca;
}

.practice-gallery .gallery-large {
  grid-row: 1 / span 2;
  min-height: 540px;
}

.practice-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.02);
  transition: filter 500ms ease, transform 800ms var(--ease);
}

.practice-gallery figure:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.practice-gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 9px;
}

.subjects-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 150px);
}

.subjects-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.subject-list article {
  display: grid;
  min-height: 190px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 60px 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 0 24px;
}

.subject-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.subject-list article > span {
  grid-row: 1 / span 2;
  color: var(--sprout);
  font-family: "Times New Roman", serif;
  font-size: 34px;
}

.subject-list h3 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 31px;
}

.subject-list b {
  color: var(--tea);
  font-size: 11px;
}

.subject-list p {
  max-width: 35rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.subjects-link {
  margin-top: 34px;
}

.ip-section {
  padding: clamp(100px, 11vw, 180px) max(40px, calc((100vw - 1440px) / 2));
  background: #0a4b31;
  color: white;
}

.ip-heading {
  display: grid;
  max-width: 1440px;
  margin: 0 auto 80px;
  grid-template-columns: 1fr 0.45fr;
  gap: 100px;
  align-items: end;
}

.ip-heading > p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.ip-gallery {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 20px;
}

.ip-gallery figure {
  margin: 0;
}

.ip-gallery .ip-feature {
  grid-column: 1 / span 2;
}

.ip-gallery img {
  width: 100%;
  background: #f4f5ea;
}

.ip-gallery figcaption span {
  color: rgba(255, 255, 255, 0.6);
}

.works-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 12vw, 200px) 0;
}

.works-heading {
  display: grid;
  margin-bottom: 90px;
  grid-template-columns: 0.4fr 0.8fr 0.45fr;
  gap: 60px;
  align-items: end;
}

.works-heading .eyebrow {
  align-self: start;
}

.works-heading > p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.fan-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fan-showcase figure {
  margin: 0;
}

.fan-showcase img {
  width: 100%;
  background: white;
}

.sign-strip {
  display: grid;
  margin-top: 110px;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.sign-strip figure {
  margin: 0;
  filter: drop-shadow(0 18px 22px rgba(20, 58, 43, 0.1));
  transition: transform 300ms var(--ease);
}

.sign-strip figure:nth-child(1) {
  z-index: 1;
  grid-column: 1 / span 5;
  transform: rotate(-4deg);
}

.sign-strip figure:nth-child(2) {
  z-index: 3;
  grid-column: 4 / span 6;
  grid-row: 1;
  transform: translateY(65px) rotate(2deg);
}

.sign-strip figure:nth-child(3) {
  z-index: 2;
  grid-column: 8 / span 5;
  grid-row: 1;
  transform: rotate(5deg);
}

.sign-strip figure:hover {
  z-index: 5;
  transform: translateY(-12px) rotate(0);
}

.closing {
  padding: clamp(100px, 12vw, 190px) max(40px, calc((100vw - 1440px) / 2));
  background:
    linear-gradient(100deg, rgba(9, 60, 42, 0.95), rgba(9, 60, 42, 0.68)),
    url("assets/images/team-flag.png") center / cover;
  color: white;
}

.closing .eyebrow {
  color: var(--sprout);
}

.closing h2 {
  max-width: 980px;
  font-size: clamp(55px, 7vw, 112px);
}

.closing-meta {
  display: grid;
  margin-top: 100px;
  padding-top: 25px;
  border-top: 1px solid var(--white-line);
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.closing-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.8;
}

.site-footer {
  display: flex;
  min-height: 72px;
  padding: 0 40px;
  align-items: center;
  justify-content: space-between;
  background: #062c20;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

/* Homepage story index */
.story-index-grid {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
  grid-template-columns: repeat(2, 1fr);
}

.story-index-card {
  display: grid;
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  grid-template-columns: minmax(140px, 0.72fr) 1fr;
  gap: 24px;
  transition: background 260ms ease, color 260ms ease;
}

.story-index-card:hover,
.story-index-card:focus-visible {
  background: var(--paper-bright);
  color: var(--ink);
}

.story-index-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 300ms ease;
}

.story-index-card:hover img,
.story-index-card:focus-visible img {
  filter: saturate(1);
}

.story-index-card div {
  display: flex;
  padding: 12px 6px 8px 0;
  align-items: flex-start;
  flex-direction: column;
}

.story-index-card span {
  color: var(--sprout);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.story-index-card h3 {
  margin: auto 0 12px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.2;
}

.story-index-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.story-index-card:hover p,
.story-index-card:focus-visible p {
  color: var(--muted);
}

.light-link {
  display: inline-flex;
  margin-top: 40px;
  padding-bottom: 7px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
  font-size: 12px;
}

/* Shared interior pages */
.inner-page main {
  overflow: hidden;
}

.page-hero {
  display: grid;
  width: var(--page);
  min-height: 700px;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 160px) 0 clamp(80px, 9vw, 140px);
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(60px, 6.3vw, 108px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.page-hero-copy > p:last-child {
  max-width: 39rem;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.page-hero-media {
  margin: 0;
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  box-shadow: 0 34px 75px rgba(20, 58, 43, 0.14);
}

.page-hero-media figcaption,
.factory-visual figcaption,
.chapter-cover figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.chapter-nav {
  position: sticky;
  top: 66px;
  z-index: 40;
  display: flex;
  min-height: 70px;
  padding: 0 max(40px, calc((100vw - 1440px) / 2));
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 246, 0.96);
  backdrop-filter: blur(14px);
}

.chapter-nav a {
  display: flex;
  min-width: 210px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-left: 1px solid var(--line);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 17px;
}

.chapter-nav a:last-child {
  border-right: 1px solid var(--line);
}

.chapter-nav span {
  color: var(--tea);
  font-family: Consolas, monospace;
  font-size: 9px;
}

.chapter-nav a:hover,
.chapter-nav a:focus-visible {
  background: var(--tea);
  color: white;
}

.chapter-nav a:hover span,
.chapter-nav a:focus-visible span {
  color: var(--sprout);
}

.story-chapter,
.factory-chapter {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(120px, 12vw, 190px) 0;
}

.story-chapter + .story-chapter,
.factory-chapter + .factory-chapter {
  border-top: 1px solid var(--line);
}

.story-chapter-tint {
  background: #e8edda;
  box-shadow: 0 0 0 100vmax #e8edda;
  clip-path: inset(0 -100vmax);
}

.chapter-header {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: start;
}

.chapter-header > span,
.factory-heading span {
  padding-top: 10px;
  color: var(--tea);
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.chapter-header .eyebrow {
  margin-bottom: 18px;
}

.chapter-header h2,
.factory-heading h2,
.next-page-cta h2 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(54px, 5.5vw, 92px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.chapter-deck {
  max-width: 45rem;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.chapter-cover {
  margin: 80px 0 100px;
}

.chapter-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: start;
}

.story-sidebar {
  position: sticky;
  top: 165px;
}

.story-sidebar dl {
  margin: 0;
  border-top: 2px solid var(--tea);
}

.story-sidebar div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.story-sidebar dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.story-sidebar dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}

.article-prose {
  max-width: 850px;
}

.article-prose p {
  margin: 0 0 24px;
  color: #304f41;
  font-size: 15px;
  line-height: 2.05;
}

.article-prose .article-lead {
  margin-bottom: 55px;
  color: var(--ink);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.75;
}

.article-prose h3 {
  margin: 76px 0 25px;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(30px, 2.8vw, 43px);
  line-height: 1.3;
}

.article-prose strong {
  color: var(--ink);
}

.article-gallery {
  display: grid;
  margin: 52px 0 72px;
  gap: 15px;
}

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

.article-gallery figure,
.article-wide-image {
  margin: 0;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-gallery figcaption,
.article-wide-image figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.article-wide-image {
  margin: 56px 0 75px;
}

.article-wide-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}

.article-wide-image.compact-image img {
  max-height: 520px;
}

.article-credit {
  margin-top: 65px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.back-to-index {
  display: inline-flex;
  margin-top: 90px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
}

.next-page-cta {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(120px, 13vw, 210px) 0;
}

.next-page-cta h2 {
  max-width: 1100px;
  margin-bottom: 50px;
}

.next-page-cta .button {
  width: fit-content;
}

/* Factory page */
.factories-page-hero {
  grid-template-columns: 1.15fr 0.45fr;
}

.factory-intro-note {
  align-self: end;
  padding: 30px;
  border-top: 3px solid var(--sun);
  background: #e5ebcf;
}

.factory-intro-note span,
.field-quote span {
  color: var(--tea);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.factory-intro-note p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.factory-nav a {
  min-width: 260px;
}

.factory-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: start;
}

.factory-heading > div p {
  margin: 22px 0 0;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 30px;
}

.factory-visual {
  margin: 80px 0 0;
}

.factory-visual img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.fact-strip {
  display: grid;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.fact-strip > div {
  min-height: 185px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip span {
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.fact-strip b {
  display: block;
  margin-top: 42px;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 30px;
}

.fact-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.factory-copy-grid {
  display: grid;
  margin-top: 100px;
  grid-template-columns: 0.46fr 1fr;
  gap: clamp(55px, 9vw, 150px);
}

.factory-lead > p {
  margin: 0 0 32px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.6;
}

.factory-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.field-quote {
  max-width: 900px;
  margin: 110px 0 0 auto;
  padding: 38px 42px;
  border: 0;
  border-left: 4px solid var(--sun);
  background: rgba(255, 255, 255, 0.08);
}

.field-quote p {
  margin: 23px 0 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.65;
}

.factory-chapter-dark {
  background: var(--tea-deep);
  box-shadow: 0 0 0 100vmax var(--tea-deep);
  color: white;
  clip-path: inset(0 -100vmax);
}

.factory-chapter-dark .factory-heading span,
.factory-chapter-dark .factory-heading > div p,
.factory-chapter-dark .fact-strip b,
.factory-chapter-dark .field-quote span {
  color: var(--sprout);
}

.factory-chapter-dark .factory-visual figcaption,
.factory-chapter-dark .fact-strip span,
.factory-chapter-dark .fact-strip p,
.factory-chapter-dark .factory-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.factory-chapter-dark .fact-strip,
.factory-chapter-dark .fact-strip > div {
  border-color: var(--white-line);
}

.factory-chapter-dark .text-link,
.factory-chapter-dark .back-to-index {
  border-color: rgba(255, 255, 255, 0.7);
}

.factory-methods {
  display: grid;
  margin-top: 110px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.factory-methods span {
  color: var(--tea);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.factory-methods b {
  display: block;
  margin-top: 24px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 25px;
}

.factory-methods p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1180px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .site-header {
    padding: 0 24px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    gap: 40px;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div:last-child {
    display: none;
  }

  .project-overview {
    grid-template-columns: 1fr 0.8fr;
  }

  .field-card {
    grid-column: 2;
    margin-top: 0;
  }

  .team-section {
    grid-template-columns: 0.7fr 1fr 0.55fr;
  }

  .works-heading {
    grid-template-columns: 1fr 1fr;
  }

  .works-heading .eyebrow {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 900px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .wordmark-mark {
    width: 36px;
    font-size: 21px;
  }

  .wordmark b {
    font-size: 17px;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
    display: flex;
    min-width: 64px;
    min-height: 44px;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    font-size: 11px;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 240ms ease;
  }

  .menu-toggle i::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: flex;
    padding: 110px 30px 40px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper-bright);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 280ms ease, transform 280ms var(--ease), visibility 280ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: "STKaiti", "KaiTi", serif;
    font-size: 26px;
  }

  .site-nav .nav-contact {
    margin-top: 20px;
    border: 1px solid var(--tea);
  }

  .hero {
    min-height: auto;
    padding: 62px 0 42px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-title .project-name {
    font-size: clamp(74px, 23vw, 112px);
  }

  .hero-summary {
    max-width: 30rem;
  }

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

  .hero-facts div:last-child {
    display: block;
  }

  .asset-note {
    text-align: left;
  }

  .theme-rail {
    min-height: 68px;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    font-size: 14px;
    white-space: nowrap;
  }

  .project-overview,
  .team-section,
  .subjects-section {
    display: block;
  }

  .overview-copy,
  .field-card {
    margin-top: 50px;
    padding-top: 0;
  }

  .field-card {
    padding: 22px;
  }

  .team-intro,
  .subjects-heading {
    position: static;
  }

  .team-flag {
    margin-top: 55px !important;
  }

  .team-shirt,
  .team-photo-placeholder,
  .team-photo-field {
    margin-top: 36px !important;
  }

  .team-photo-placeholder {
    min-height: 260px;
  }

  .practice-header,
  .ip-heading,
  .works-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .practice-header > p,
  .ip-heading > p,
  .works-heading > p:last-child {
    max-width: 32rem;
  }

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

  .practice-steps li:nth-child(2) {
    border-right: 0;
  }

  .practice-steps li:nth-child(3),
  .practice-steps li:nth-child(4) {
    border-top: 1px solid var(--white-line);
  }

  .practice-gallery .gallery-large {
    min-height: 440px;
  }

  .subject-list {
    margin-top: 70px;
  }

  .ip-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .works-heading .eyebrow {
    grid-column: auto;
  }

  .fan-showcase {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .closing {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 620px) {
  .wordmark small {
    display: none;
  }

  .hero {
    padding-top: 45px;
  }

  .hero-title .school {
    font-size: 16px;
  }

  .hero-title .team-name {
    font-size: 26px;
  }

  .hero-lead {
    margin-top: 35px;
    font-size: 21px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .button-text {
    justify-content: space-between;
  }

  .hero-facts {
    gap: 10px;
  }

  .hero-facts dt {
    font-size: 8px;
  }

  .hero-facts dd {
    font-size: 9px;
  }

  .carousel-stage {
    aspect-ratio: 4 / 3;
  }

  .hero-slide:first-child img {
    object-position: 62% center;
  }

  .hero-slide figcaption {
    right: 18px;
    bottom: 18px;
    min-width: 180px;
  }

  .carousel-controls {
    gap: 14px;
  }

  .carousel-dots {
    display: none;
  }

  .section h2,
  .practice-header h2,
  .ip-heading h2,
  .works-heading h2 {
    font-size: 44px;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-index {
    top: 28px;
  }

  .practice-steps {
    grid-template-columns: 1fr;
  }

  .practice-steps li,
  .practice-steps li:not(:first-child) {
    min-height: 0;
    padding: 22px 0 28px;
    border-top: 1px solid var(--white-line);
    border-right: 0;
  }

  .practice-steps li div {
    margin-top: 28px;
  }

  .practice-gallery {
    display: block;
  }

  .practice-gallery figure,
  .practice-gallery .gallery-large {
    min-height: 320px;
    margin-top: 14px;
  }

  .subject-list article {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto auto;
  }

  .subject-list article > span {
    grid-row: 1 / span 3;
    font-size: 27px;
  }

  .subject-list h3 {
    font-size: 27px;
  }

  .subject-list b {
    margin-top: 5px;
  }

  .subject-list p {
    grid-column: 2;
  }

  .ip-gallery {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ip-gallery .ip-feature {
    grid-column: auto;
  }

  .sign-strip {
    display: flex;
    margin: 70px -18px 0;
    padding: 20px 18px 35px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .sign-strip figure,
  .sign-strip figure:nth-child(1),
  .sign-strip figure:nth-child(2),
  .sign-strip figure:nth-child(3) {
    min-width: 78vw;
    transform: none;
    scroll-snap-align: center;
  }

  .closing-meta {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 20px 18px;
  }
}

/* Reading-page pass: a clear summary and contents before the field story.
   The route pages choose a story; the detail page is where a reader settles in. */
.detail-reading-meta {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
}

.detail-page .detail-jump-nav {
  position: relative;
  top: auto;
  z-index: auto;
  display: grid;
  grid-template-columns: minmax(150px, .28fr) 1fr;
  column-gap: clamp(30px, 6vw, 86px);
  align-items: start;
  margin-top: clamp(52px, 7vw, 94px);
  padding: 0 0 18px;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-page .detail-jump-nav > span {
  grid-column: 1;
  grid-row: 1;
  padding-top: 22px;
  color: var(--tea);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.detail-page .detail-jump-nav a {
  grid-column: 2;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 42px 12px 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.detail-page .detail-jump-nav a:last-child { border-bottom: 0; }
.detail-page .detail-jump-nav a::after { margin-left: auto; content: "↘"; color: var(--sprout); font-size: 15px; }
.detail-page .detail-jump-nav a:hover,
.detail-page .detail-jump-nav a:focus-visible { padding-left: 10px; color: var(--tea); }

.detail-brief {
  width: min(var(--page), 980px);
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: clamp(28px, 4vw, 48px);
  background: #eff4e9;
  border-left: 3px solid var(--sprout);
}

.detail-brief-meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.detail-brief-meta span,
.detail-brief-meta p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.detail-brief-meta span { color: var(--tea); }
.detail-brief-meta p { color: var(--muted); white-space: nowrap; }
.detail-brief > p { max-width: 48rem; margin: 0; color: #294b3c; font-size: 17px; line-height: 1.9; }

/* Directory rows borrow the editorial rhythm of the reference: metadata first,
   a single promise of value, then a modest documentary image. */
.route-page .route-card {
  grid-template-columns: 70px minmax(300px, 1fr) clamp(148px, 15vw, 218px) 28px;
  min-height: 156px;
  gap: clamp(20px, 2.4vw, 36px);
  padding-block: 20px;
}

.route-page .route-card img { height: 112px; }
.route-page .route-card p { display: flex; align-items: center; gap: 12px; }
.route-page .route-card p small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  white-space: nowrap;
}
.route-page .route-card h3 { margin-bottom: 8px; font-size: clamp(25px, 2.1vw, 34px); }
.route-page .route-card div > span { display: block; max-width: 48rem; line-height: 1.7; }

@media (max-width: 760px) {
  .route-page .route-card { grid-template-columns: 48px minmax(0, 1fr) 22px; gap: 14px; min-height: 0; }
  .route-page .route-card img { display: none; }
  .route-page .route-card-number { font-size: 26px; align-self: start; padding-top: 3px; }
  .route-page .route-card p { gap: 9px; }
  .route-page .route-card p small { font-size: 9px; }
  .route-page .route-card h3 { font-size: 25px; }
  .route-page .route-card div > span { font-size: 14px; }
}

@media (max-width: 620px) {
  .detail-page .detail-jump-nav { grid-template-columns: 1fr; margin-top: 48px; }
  .detail-page .detail-jump-nav > span,
  .detail-page .detail-jump-nav a { grid-column: 1; }
  .detail-page .detail-jump-nav > span { padding: 18px 0 8px; }
  .detail-page .detail-jump-nav a { min-height: 46px; padding-right: 8px; }
  .detail-brief { width: auto; margin: 30px 24px 0; padding: 25px 22px; }
  .detail-brief > p { font-size: 16px; line-height: 1.85; }
}

/* Content-rich route overviews and member profiles */
.team-workflow,
.practice-scope,
.member-profile-panel {
  width: var(--page);
  margin-inline: auto;
}

.team-workflow,
.practice-scope {
  padding: 34px 0 126px;
}

/* The team page introduces the four working lines as a compact index.
   The member cards below remain the place for individual evidence and profiles. */
.team-workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-workflow-list li {
  min-height: 172px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-workflow-list > li > span {
  display: block;
  margin-bottom: 38px;
  color: var(--sprout);
  font: 700 11px/1.2 Arial, sans-serif;
  letter-spacing: .14em;
}

.team-workflow-list p {
  margin: 0 0 8px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.team-workflow-list b {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}

.team-workflow-grid,
.practice-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-workflow-grid article,
.practice-scope-grid article {
  min-height: 310px;
  padding: 34px 38px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
}

.team-workflow-grid article > span,
.practice-scope-grid article > span,
.member-profile-grid article > span {
  color: var(--sprout);
  font: 700 11px/1.2 Arial, sans-serif;
  letter-spacing: .14em;
}

.team-workflow-grid article > p:first-of-type {
  margin: 34px 0 8px;
  color: var(--tea);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.team-workflow-grid h3,
.practice-scope-grid h3,
.member-profile-grid h3 {
  margin: 0 0 16px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.team-workflow-grid article > p:last-of-type,
.practice-scope-grid article > p,
.member-profile-grid p {
  margin: 0;
  color: #375549;
  font-size: 15px;
  line-height: 1.9;
}

.team-workflow-grid small {
  display: block;
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.practice-scope-grid article > span { display: block; margin-bottom: 38px; }
.practice-scope-grid dl { display: grid; gap: 8px; margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.practice-scope-grid dl div { display: grid; grid-template-columns: 54px 1fr; gap: 12px; }
.practice-scope-grid dt { color: var(--tea); font-size: 12px; font-weight: 700; }
.practice-scope-grid dd { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.member-profile-panel {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 2.22fr);
  gap: clamp(42px, 7vw, 110px);
  padding: 96px 0 26px;
}

.member-profile-panel > header h2 {
  margin: 14px 0 22px;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.06em;
}

.member-profile-panel > header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.member-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-profile-grid article {
  min-height: 290px;
  padding: 28px 28px 32px 0;
  border-right: 1px solid var(--line);
}

.member-profile-grid article + article { padding-left: 28px; }
.member-profile-grid article:last-child { border-right: 0; }
.member-profile-grid article > span { display: block; margin-bottom: 52px; }
.member-profile-grid h3 { font-size: 24px; }

@media (min-width: 901px) {
  .member-profile-grid article:nth-child(even) { border-right: 0; }
  .member-profile-grid article:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .member-profile-grid article.member-voice {
    grid-column: 1 / -1;
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .team-workflow-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .team-workflow-grid,
  .practice-scope-grid { grid-template-columns: 1fr; }

  .team-workflow-grid article,
  .practice-scope-grid article { min-height: 0; }

  .member-profile-panel { grid-template-columns: 1fr; padding-top: 72px; }
  .member-profile-panel > header { max-width: 620px; }
  .member-profile-grid { grid-template-columns: 1fr; }
  .member-profile-grid article,
  .member-profile-grid article + article { min-height: 0; padding: 28px 0 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .member-profile-grid article:last-child { border-bottom: 0; }
  .member-profile-grid article > span { margin-bottom: 24px; }
}

@media (max-width: 620px) {
  .team-workflow,
  .practice-scope { padding: 12px 0 92px; }

  .team-workflow-list { grid-template-columns: 1fr; }
  .team-workflow-list li { min-height: 0; padding: 26px 24px; }
  .team-workflow-list > li > span { margin-bottom: 22px; }
  .team-workflow-list p { font-size: 23px; }
  .team-workflow-grid article,
  .practice-scope-grid article { padding: 28px 24px 30px; }
  .team-workflow-grid article > p:first-of-type { margin-top: 26px; }
  .practice-scope-grid article > span { margin-bottom: 26px; }
  .member-profile-panel { padding-top: 58px; }
}

@media (max-width: 900px) {
  .roster-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .roster-heading > p {
    max-width: 32rem;
  }

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

@media (max-width: 620px) {
  .team-roster {
    margin-top: 90px;
  }

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

  .member-card {
    padding: 10px 10px 24px;
  }

  .member-card div {
    padding-top: 13px;
  }

  .member-card h4 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .story-index-card {
    grid-template-columns: 0.8fr 1fr;
  }

  .page-hero,
  .factories-page-hero {
    display: block;
    min-height: auto;
    padding-top: 85px;
  }

  .page-hero-media,
  .factory-intro-note {
    margin-top: 65px;
  }

  .page-hero-media img {
    aspect-ratio: 16 / 10;
  }

  .chapter-nav {
    padding: 0;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .chapter-nav::-webkit-scrollbar {
    display: none;
  }

  .chapter-nav a,
  .factory-nav a {
    min-width: 185px;
    padding: 0 22px;
    white-space: nowrap;
  }

  .chapter-header,
  .story-layout,
  .factory-heading,
  .factory-copy-grid {
    display: block;
  }

  .chapter-header > span,
  .factory-heading > div {
    display: block;
    margin-bottom: 45px;
  }

  .story-sidebar {
    position: static;
    margin-bottom: 75px;
  }

  .story-sidebar dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .story-sidebar div {
    padding: 18px 18px 18px 0;
  }

  .article-prose {
    max-width: none;
  }

  .fact-strip,
  .factory-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-copy {
    margin-top: 60px;
  }

  .factory-visual img {
    aspect-ratio: 16 / 8;
  }

  .field-quote {
    margin-top: 80px;
  }
}

@media (max-width: 620px) {
  .story-index-grid {
    grid-template-columns: 1fr;
  }

  .story-index-card {
    padding: 10px;
    grid-template-columns: 0.72fr 1fr;
    gap: 15px;
  }

  .story-index-card img {
    min-height: 150px;
  }

  .story-index-card h3 {
    font-size: 23px;
  }

  .page-hero {
    padding-top: 65px;
    padding-bottom: 80px;
  }

  .page-hero-copy h1 {
    font-size: clamp(51px, 15vw, 68px);
  }

  .page-hero-copy > p:last-child {
    margin-top: 30px;
    font-size: 13px;
  }

  .page-hero-media {
    margin-top: 48px;
  }

  .page-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .chapter-nav {
    top: 66px;
    min-height: 58px;
  }

  .chapter-nav a,
  .factory-nav a {
    min-width: 158px;
    padding: 0 16px;
    font-size: 15px;
  }

  .story-chapter,
  .factory-chapter {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .chapter-header > span,
  .factory-heading > div {
    margin-bottom: 32px;
  }

  .chapter-header h2,
  .factory-heading h2,
  .next-page-cta h2 {
    font-size: 45px;
  }

  .chapter-deck {
    margin-top: 24px;
    font-size: 12px;
  }

  .chapter-cover {
    margin: 55px 0 70px;
  }

  .chapter-cover img,
  .factory-visual img {
    aspect-ratio: 4 / 3;
  }

  .story-sidebar {
    margin-bottom: 55px;
  }

  .story-sidebar dl {
    display: block;
  }

  .article-prose p,
  .factory-copy p {
    font-size: 14px;
    line-height: 1.95;
  }

  .article-prose .article-lead {
    margin-bottom: 45px;
    font-size: 23px;
  }

  .article-prose h3 {
    margin-top: 62px;
    font-size: 31px;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .article-gallery {
    gap: 32px;
  }

  .factory-heading > div p {
    font-size: 25px;
  }

  .factory-visual {
    margin-top: 55px;
  }

  .fact-strip {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-strip > div {
    min-height: 170px;
    padding: 16px;
  }

  .fact-strip b {
    margin-top: 34px;
    font-size: 25px;
  }

  .factory-copy-grid {
    margin-top: 75px;
  }

  .factory-lead > p {
    font-size: 24px;
  }

  .field-quote {
    padding: 28px;
  }

  .field-quote p {
    font-size: 23px;
  }

  .factory-methods {
    margin-top: 80px;
    grid-template-columns: 1fr;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .next-page-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* 2026 field atlas: a single route links the site's growing body of work. */
.field-atlas {
  width: var(--page);
  margin: 0 auto;
  padding: 126px 0 138px;
  border-bottom: 1px solid var(--line);
}
.field-atlas-heading {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(46px, 9vw, 160px);
  align-items: end;
  margin-bottom: 76px;
}
.field-atlas-heading h2 {
  margin: 15px 0 0;
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(43px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.065em;
}
.field-atlas-heading > div:last-child p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}
.field-atlas-heading > div:last-child a {
  display: inline-flex;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--tea);
  font-size: 13px;
  font-weight: 700;
}
.field-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.field-route::before {
  position: absolute;
  top: 29px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}
.field-route li { position: relative; min-width: 0; }
.field-route a {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 0 22px 28px;
  border-right: 1px solid var(--line);
  color: var(--tea-deep);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.field-route li:first-child a { padding-left: 0; }
.field-route li:last-child a { padding-right: 0; border-right: 0; }
.field-route a:hover,
.field-route a:focus-visible { background: rgba(157,195,51,.11); transform: translateY(-5px); }
.field-route a > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 59px;
  height: 59px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid var(--tea);
  border-radius: 50%;
  background: var(--paper);
  color: var(--tea);
  font-family: Georgia, serif;
  font-size: 17px;
}
.field-route-focus a > span { background: var(--tea-deep); color: var(--paper); }
.field-route small { display: block; margin-bottom: 12px; color: var(--sprout); font: 700 9px/1 Arial,sans-serif; letter-spacing: .14em; }
.field-route b { display: block; font-family: Georgia,"Songti SC",serif; font-size: clamp(20px,1.8vw,27px); font-weight: 500; line-height: 1.22; }
.field-route em { display: block; margin-top: 11px; color: var(--muted); font-size: 11px; font-style: normal; line-height: 1.55; }
.field-atlas-image {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(270px,.45fr);
  margin: 48px 0 0;
  background: var(--tea-deep);
}
.field-atlas-image img { width: 100%; height: 450px; object-fit: cover; }
.field-atlas-image figcaption { display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; color: var(--paper); }
.field-atlas-image figcaption span { margin-bottom: 18px; color: #bcd988; font: 700 9px/1 Arial,sans-serif; letter-spacing: .15em; }
.field-atlas-image figcaption b { font-family: Georgia,"Songti SC",serif; font-size: clamp(25px,2.4vw,38px); font-weight: 500; line-height: 1.45; }

/* Archive browser: one data source can accept future articles and cultural products. */
.archive-page { background: var(--paper); }
.archive-hero,
.archive-browser {
  width: var(--page);
  margin-inline: auto;
}
.archive-hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(46px, 9vw, 160px);
  min-height: 680px;
  align-items: center;
  padding: 142px 0 92px;
  border-bottom: 1px solid var(--line);
}
.archive-hero h1 {
  margin: 18px 0 0;
  color: var(--tea-deep);
  font-family: Georgia,"Songti SC",serif;
  font-size: clamp(54px,6vw,96px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.07em;
}
.archive-hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 2; }
.archive-hero-copy dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 52px 0 0; }
.archive-hero-copy dl div { padding-top: 18px; border-top: 1px solid var(--line); }
.archive-hero-copy dt { color: var(--tea); font-family: Georgia,serif; font-size: clamp(34px,4vw,55px); }
.archive-hero-copy dd { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.archive-browser { padding: 112px 0 136px; }
.archive-browser > header { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: end; }
.archive-browser h2 { margin: 13px 0 0; color: var(--tea-deep); font-family: Georgia,"Songti SC",serif; font-size: clamp(42px,4.8vw,72px); font-weight: 500; letter-spacing: -.06em; }
.archive-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; border-bottom: 1px solid var(--line); }
.archive-filters button { padding: 13px 18px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; }
.archive-filters button:hover,
.archive-filters button:focus-visible,
.archive-filters button.is-active { border-bottom-color: var(--tea); color: var(--tea-deep); }
.archive-status { margin: 32px 0 14px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-align: right; }
.archive-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); }
.archive-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.archive-card:nth-child(3n) { border-right: 0; }
.archive-card a { display: block; height: 100%; padding: 20px; transition: background-color .25s var(--ease); }
.archive-card a:hover,
.archive-card a:focus-visible { background: rgba(157,195,51,.12); }
.archive-card figure { margin: 0 0 25px; overflow: hidden; }
.archive-card img { width: 100%; aspect-ratio: 1.35/1; object-fit: cover; transition: transform .45s var(--ease); }
.archive-card a:hover img { transform: scale(1.035); }
.archive-card-copy > span { color: var(--sprout); font: 700 9px/1 Arial,sans-serif; letter-spacing: .13em; }
.archive-card h3 { min-height: 2.35em; margin: 16px 0 13px; color: var(--tea-deep); font-family: Georgia,"Songti SC",serif; font-size: clamp(23px,2vw,31px); font-weight: 500; line-height: 1.2; letter-spacing: -.035em; }
.archive-card p { min-height: 5.1em; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.archive-card ul { display: flex; flex-wrap: wrap; gap: 6px 15px; margin: 24px 0; padding: 14px 0 0; border-top: 1px solid var(--line); list-style: none; }
.archive-card li { color: var(--tea); font-size: 10px; }
.archive-card li::before { margin-right: 5px; content: "#"; color: var(--sprout); }
.archive-card-copy > b { color: var(--tea-deep); font-size: 11px; }

/* Long-form stories use image-led chapters instead of repeating equal text cards. */
.detail-body-practice .detail-prose-list,
.detail-body-factory .detail-prose-list {
  display: block;
  border: 0;
}
.detail-chapter {
  display: grid;
  grid-template-columns: minmax(0,1.02fr) minmax(380px,.98fr);
  gap: clamp(44px,7vw,112px);
  align-items: center;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}
.detail-chapter:last-child { border-bottom: 1px solid var(--line); }
.detail-chapter.is-reverse .detail-chapter-copy { order: 2; }
.detail-chapter-copy > span { display: block; margin-bottom: 38px; color: var(--sprout); font: 700 11px/1 Arial,sans-serif; letter-spacing: .13em; }
.detail-chapter h2 { max-width: 650px; margin: 0 0 25px; color: var(--tea-deep); font-family: Georgia,"Songti SC",serif; font-size: clamp(34px,3.7vw,56px); font-weight: 500; line-height: 1.14; letter-spacing: -.055em; }
.detail-chapter p { margin: 0; color: #2f5043; font-size: 15px; line-height: 2; text-align: justify; }
.detail-chapter p + p { margin-top: 20px; }
.detail-chapter figure { margin: 0; }
.detail-chapter img { width: 100%; aspect-ratio: 1.15/1; object-fit: cover; }
.detail-chapter figcaption { display: flex; flex-direction: column; gap: 5px; margin-top: 12px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.detail-chapter figcaption b { color: var(--tea-deep); font-size: 13px; }
.detail-related { width: var(--page); margin: 92px auto 84px; padding-top: 42px; border-top: 1px solid var(--line); }
.detail-related > header { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 35px; }
.detail-related h2 { margin: 12px 0 0; color: var(--tea-deep); font-family: Georgia,"Songti SC",serif; font-size: clamp(31px,3.5vw,51px); font-weight: 500; letter-spacing: -.05em; }
.detail-related > div { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); }
.detail-related a { min-width: 0; padding: 22px 28px 30px; border-right: 1px solid var(--line); transition: background-color .25s var(--ease); }
.detail-related a:first-child { padding-left: 0; }
.detail-related a:last-child { padding-right: 0; border-right: 0; }
.detail-related a:hover { background: rgba(157,195,51,.11); }
.detail-related img { width: 100%; aspect-ratio: 1.55/1; object-fit: cover; margin-bottom: 20px; }
.detail-related a > span { color: var(--sprout); font: 700 9px/1 Arial,sans-serif; letter-spacing: .12em; }
.detail-related h3 { min-height: 2.4em; margin: 14px 0 11px; color: var(--tea-deep); font-family: Georgia,"Songti SC",serif; font-size: 24px; font-weight: 500; line-height: 1.2; }
.detail-related a > p { min-height: 4.9em; margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.detail-related a > b { color: var(--tea); font-size: 10px; }
#detail-related { scroll-margin-top: 150px; }

@media (max-width: 1050px) {
  .field-route { grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); }
  .field-route::before { display: none; }
  .field-route a,
  .field-route li:first-child a,
  .field-route li:last-child a { padding: 26px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .field-route li:nth-child(4n) a { border-right: 0; }
  .field-route a > span { width: 48px; height: 48px; margin-bottom: 24px; }
}

@media (max-width: 800px) {
  .field-atlas { padding: 86px 0 92px; }
  .field-atlas-heading,
  .archive-hero { grid-template-columns: 1fr; gap: 34px; }
  .field-atlas-heading { margin-bottom: 48px; }
  .field-route { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .field-route li:nth-child(4n) a { border-right: 1px solid var(--line); }
  .field-route li:nth-child(2n) a { border-right: 0; }
  .field-atlas-image { grid-template-columns: 1fr; }
  .field-atlas-image img { height: 340px; }
  .field-atlas-image figcaption { padding: 30px; }
  .archive-hero { min-height: 0; padding: 118px 0 72px; }
  .archive-browser { padding: 82px 0 94px; }
  .archive-browser > header { grid-template-columns: 1fr; align-items: start; }
  .archive-filters { justify-content: flex-start; }
  .archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .archive-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .archive-card:nth-child(2n) { border-right: 0; }
  .detail-chapter { grid-template-columns: 1fr; gap: 34px; padding: 58px 0; }
  .detail-chapter.is-reverse .detail-chapter-copy { order: 0; }
  .detail-related > div { grid-template-columns: 1fr; }
  .detail-related a,
  .detail-related a:first-child,
  .detail-related a:last-child { padding: 24px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-related a:last-child { border-bottom: 0; }
  .detail-related h3,
  .detail-related a > p { min-height: 0; }
}

@media (max-width: 560px) {
  .field-route a,
  .field-route li:first-child a,
  .field-route li:last-child a { min-height: 190px; padding: 22px 12px; }
  .field-route b { font-size: 19px; }
  .field-atlas-image img { height: 245px; }
  .archive-hero-copy dl { gap: 8px; }
  .archive-hero-copy dd { font-size: 10px; }
  .archive-filters { display: grid; grid-template-columns: repeat(2,1fr); width: 100%; }
  .archive-filters button { text-align: left; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card,
  .archive-card:nth-child(2n),
  .archive-card:nth-child(3n) { border-right: 0; }
  .archive-card a { padding-inline: 0; }
  .archive-card h2,
  .archive-card p { min-height: 0; }
  .detail-chapter h2 { font-size: 34px; }
  .detail-chapter img { aspect-ratio: 1.25/1; }
}

/* Compact portal and switchable detail pages */
h1,
h2,
h3,
h4,
p,
figcaption,
.site-nav a,
.button {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.portal-page main {
  overflow: hidden;
}

.portal-page .team-hero-photo {
  object-position: center 56%;
  filter: saturate(0.88) contrast(1.04);
}

.portal-overview {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 10vw, 170px) 0;
}

.portal-heading,
.switcher-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.portal-heading h2,
.switcher-heading h2,
.portal-closing h2 {
  margin: 0;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(54px, 5.5vw, 92px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.07em;
}

.portal-heading > p,
.switcher-heading > p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.action-route {
  display: grid;
  margin: clamp(70px, 8vw, 120px) 0 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.action-route > div {
  min-width: 0;
  min-height: 185px;
  padding: 30px clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
}

.action-route > div:last-child {
  border-right: 0;
}

.action-route span,
.portal-card div > p,
.member-profile > span,
.design-panel > header > span {
  display: block;
  color: var(--tea);
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.action-route strong {
  display: block;
  margin-top: 28px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(23px, 2vw, 30px);
}

.action-route p {
  max-width: 15rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.portal-card {
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  isolation: isolate;
  background: var(--tea-deep);
  color: white;
  align-items: end;
}

.portal-card-team,
.portal-card-design {
  grid-column: span 5;
}

.portal-card-practice,
.portal-card-sites {
  grid-column: span 7;
}

.portal-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 450ms ease;
}

.portal-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 35, 24, 0.04) 20%, rgba(5, 35, 24, 0.88) 100%);
  content: "";
}

.portal-card:hover img,
.portal-card:focus-visible img {
  filter: saturate(1.07);
  transform: scale(1.04);
}

.portal-card > div {
  padding: 42px;
}

.portal-card div > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
}

.portal-card h3 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1;
}

.portal-card div > span:last-child {
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.portal-number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: white;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.portal-card-design img {
  object-position: 28% center;
}

.portal-closing {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 clamp(110px, 10vw, 170px);
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.portal-closing figure {
  margin: 0;
}

.portal-closing figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portal-closing h2 {
  font-size: clamp(48px, 4.8vw, 78px);
}

.portal-closing div > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.portal-closing .button {
  margin-top: 34px;
}

.team-page-hero .page-hero-media img {
  object-position: center 58%;
}

.member-switcher,
.design-switcher {
  width: var(--page);
  margin: 0 auto;
  padding: 30px 0 clamp(110px, 10vw, 170px);
}

.member-switcher-layout {
  display: grid;
  margin-top: clamp(70px, 8vw, 115px);
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}

.member-tabs {
  display: grid;
  border-top: 1px solid var(--line);
}

.member-tabs button {
  display: grid;
  min-height: 61px;
  padding: 8px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  grid-template-columns: 26px 43px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.member-tabs button:hover,
.member-tabs button.is-active {
  background: var(--tea);
  color: white;
}

.member-tabs button > span {
  font-family: Consolas, monospace;
  font-size: 8px;
}

.member-tabs button img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  object-fit: cover;
}

.member-tabs button b {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 18px;
}

.member-tabs button small {
  color: var(--muted);
  font-size: 9px;
}

.member-tabs button:hover small,
.member-tabs button.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.member-panels {
  min-width: 0;
}

.member-panel {
  display: grid;
  min-height: 680px;
  background: var(--tea-deep);
  color: white;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
}

.member-panel[hidden],
.design-panel[hidden] {
  display: none;
}

.member-portrait {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86);
}

.member-profile {
  display: flex;
  min-width: 0;
  padding: clamp(42px, 5vw, 78px);
  justify-content: center;
  flex-direction: column;
}

.member-profile > span {
  color: var(--sprout);
}

.member-major {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.member-profile h3 {
  margin: 12px 0 30px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(56px, 5.5vw, 86px);
  line-height: 1;
}

.member-profile > p:not(.member-major) {
  max-width: 38rem;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.9;
}

.member-profile ul {
  display: grid;
  margin: 32px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.member-profile li {
  padding-right: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.6;
}

.team-field-strip {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding-bottom: clamp(110px, 10vw, 170px);
  grid-template-columns: 1.15fr 0.7fr 0.7fr;
  gap: 18px;
}

.team-field-strip figure {
  margin: 0;
}

.team-field-strip img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.team-field-strip figure:first-child img {
  object-position: center;
}

.team-field-strip figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.design-page-hero .page-hero-media img {
  object-position: 57% center;
}

.design-tabs {
  display: grid;
  margin-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.design-tabs button {
  display: flex;
  min-height: 132px;
  padding: 24px clamp(18px, 2.3vw, 36px);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.design-tabs button:last-child {
  border-right: 0;
}

.design-tabs button:hover,
.design-tabs button.is-active {
  background: var(--tea);
  color: white;
}

.design-tabs button > span {
  font-family: Consolas, monospace;
  font-size: 9px;
}

.design-tabs button b {
  margin-top: 22px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 26px;
}

.design-tabs button small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.design-tabs button:hover small,
.design-tabs button.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.design-panels {
  margin-top: 44px;
}

.design-panel {
  padding: clamp(38px, 5vw, 72px);
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.design-panel > header {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 0.5fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.design-panel > header h3 {
  margin: -5px 0 0;
  color: var(--tea);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
}

.design-panel > header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.design-gallery {
  display: grid;
  gap: 16px;
}

.design-gallery figure,
.design-signs figure {
  margin: 0;
}

.design-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 9px;
}

.design-gallery-ip {
  grid-template-columns: 1.25fr 0.75fr;
}

.design-gallery-ip figure {
  min-height: 310px;
}

.design-gallery-ip .design-gallery-feature {
  grid-row: span 3;
}

.design-gallery-identity,
.design-gallery-fans {
  grid-template-columns: repeat(2, 1fr);
}

.design-gallery-identity img,
.design-gallery-fans img {
  min-height: 430px;
}

.design-signs {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.design-signs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.design-gallery-field {
  grid-template-columns: 1.25fr 0.75fr;
}

.design-gallery-field figure {
  min-height: 330px;
}

.design-gallery-field .design-gallery-wide {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .portal-heading,
  .switcher-heading,
  .portal-closing,
  .design-panel > header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .action-route > div:nth-child(2) {
    border-right: 0;
  }

  .action-route > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .portal-card-team,
  .portal-card-practice,
  .portal-card-sites,
  .portal-card-design {
    grid-column: 1 / -1;
  }

  .portal-card {
    min-height: 420px;
  }

  .portal-closing figure {
    order: 2;
  }

  .member-switcher-layout {
    grid-template-columns: 1fr;
  }

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

  .member-tabs button:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .member-panel {
    min-height: 0;
  }

  .member-portrait {
    min-height: 620px;
  }

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

  .team-field-strip figure:first-child {
    grid-column: 1 / -1;
  }

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

  .design-tabs button:nth-child(2) {
    border-right: 0;
  }

  .design-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .portal-overview,
  .member-switcher,
  .design-switcher {
    padding-top: 84px;
    padding-bottom: 105px;
  }

  .portal-heading h2,
  .switcher-heading h2,
  .portal-closing h2 {
    font-size: 48px;
    line-height: 1.08;
  }

  .action-route {
    margin-top: 58px;
  }

  .action-route > div {
    min-height: 170px;
    padding: 24px 18px;
  }

  .action-route strong {
    margin-top: 20px;
    font-size: 22px;
  }

  .portal-grid {
    gap: 14px;
  }

  .portal-card {
    min-height: 340px;
  }

  .portal-card > div {
    padding: 28px;
  }

  .portal-card h3 {
    font-size: 46px;
  }

  .portal-closing {
    padding-bottom: 105px;
  }

  .member-switcher-layout {
    margin-top: 58px;
  }

  .member-tabs button {
    min-height: 68px;
    padding: 8px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
  }

  .member-tabs button > span,
  .member-tabs button small {
    display: none;
  }

  .member-tabs button img {
    width: 36px;
    height: 36px;
  }

  .member-tabs button b {
    font-size: 17px;
  }

  .member-panel {
    grid-template-columns: 1fr;
  }

  .member-portrait {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .member-profile {
    padding: 34px 26px 42px;
  }

  .member-profile h3 {
    font-size: 58px;
  }

  .member-profile ul {
    grid-template-columns: 1fr;
  }

  .team-field-strip {
    grid-template-columns: 1fr;
    padding-bottom: 105px;
  }

  .team-field-strip figure:first-child {
    grid-column: auto;
  }

  .team-field-strip img {
    height: auto;
    max-height: 520px;
  }

  .design-tabs button {
    min-height: 116px;
    padding: 20px 16px;
  }

  .design-tabs button b {
    font-size: 22px;
  }

  .design-panel {
    padding: 28px 18px;
  }

  .design-panel > header {
    margin-bottom: 34px;
  }

  .design-panel > header h3 {
    font-size: 43px;
  }

  .design-gallery-ip,
  .design-gallery-identity,
  .design-gallery-fans,
  .design-gallery-field,
  .design-signs {
    grid-template-columns: 1fr;
  }

  .design-gallery-ip .design-gallery-feature,
  .design-gallery-field .design-gallery-wide {
    grid-row: auto;
  }

  .design-gallery-ip figure,
  .design-gallery-field figure {
    min-height: 0;
  }

  .design-gallery-identity img,
  .design-gallery-fans img {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .route-hero { grid-template-columns: minmax(0, 1fr); overflow: hidden; }
  .route-hero > * { min-width: 0; }
  .route-hero-copy { min-width: 0; width: calc(100vw - 64px); max-width: calc(100vw - 64px); }
  .route-hero-copy > p { width: calc(100vw - 64px); max-width: calc(100vw - 64px); overflow-wrap: anywhere; }
  .route-hero h1 { max-width: 100%; font-size: 42px; line-height: 1.1; overflow-wrap: anywhere; word-break: break-all; }
  .detail-hero h1 { font-size: 44px; line-height: 1.1; }
  .route-stats,
  .route-intro-copy > dl { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .route-stats dd,
  .route-intro-copy > dl dd { overflow-wrap: anywhere; }
}

.mobile-break { display: none; }

@media (max-width: 620px) {
  .mobile-break { display: block; }
}

/* Long-form editorial reading: content first, no explanatory sidebar */
.route-intro-copy > p + p { margin-top: 18px; }
.team-route-page .route-intro-copy > dl { margin-top: 0; }

.team-workflow .route-section-heading,
.practice-scope .route-section-heading,
.member-directory .route-section-heading {
  display: block;
  max-width: 900px;
}

.detail-body {
  display: block;
  padding: 92px 0 96px;
}

.detail-prose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-body-practice .detail-prose-list,
.detail-body-factory .detail-prose-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-prose {
  display: block;
  min-width: 0;
  padding: 34px clamp(26px, 3vw, 48px) 44px;
  border-right: 1px solid var(--line);
}

.detail-prose:first-child { padding-left: 0; }
.detail-prose:last-child { padding-right: 0; border-right: 0; }
.detail-prose > span { display: block; padding: 0; margin-bottom: 48px; }
.detail-prose h2 { min-height: 2.2em; margin-bottom: 25px; font-size: clamp(29px, 2.7vw, 43px); line-height: 1.12; }
.detail-prose p { color: #2f5043; font-size: 15px; line-height: 2; text-align: justify; }
.detail-prose p + p { margin-top: 20px; }

.detail-body-practice .detail-prose,
.detail-body-factory .detail-prose {
  border-bottom: 1px solid var(--line);
}

.detail-body-practice .detail-prose:nth-child(odd),
.detail-body-factory .detail-prose:nth-child(odd) { padding-left: 0; }

.detail-body-practice .detail-prose:nth-child(even),
.detail-body-factory .detail-prose:nth-child(even) {
  padding-right: 0;
  border-right: 0;
}

.detail-body-practice .detail-prose:nth-last-child(-n + 2),
.detail-body-factory .detail-prose:nth-last-child(-n + 2) { border-bottom: 0; }

@media (max-width: 900px) {
  .detail-process {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 68px;
  }
  .detail-process > header { max-width: none; }
  .detail-process-list article { grid-template-columns: 1fr; gap: 15px; }
  .detail-process-list article > span { padding-top: 0; }
  .detail-process-list small { grid-template-columns: 1fr; gap: 5px; }
  .detail-body-practice .detail-prose-list,
  .detail-body-factory .detail-prose-list,
  .detail-prose-list { grid-template-columns: 1fr; }
  .detail-prose,
  .detail-prose:first-child,
  .detail-prose:last-child { padding: 30px 0 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-body-practice .detail-prose:nth-last-child(-n + 2),
  .detail-body-factory .detail-prose:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .detail-body-practice .detail-prose:last-child,
  .detail-body-factory .detail-prose:last-child,
  .detail-prose:last-child { border-bottom: 0; }
  .detail-prose > span { margin-bottom: 25px; }
  .detail-prose h2 { min-height: 0; }
}

/* 2026 quiet editorial pass: one clear route, fewer competing devices. */
.portal-overview {
  padding-top: clamp(96px, 9vw, 145px);
}

.portal-heading {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .6fr);
  padding-bottom: clamp(48px, 6vw, 78px);
  border-bottom: 1px solid var(--line);
}

.portal-heading h2,
.portal-closing h2 {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}

.portal-heading h2 {
  font-size: clamp(48px, 5vw, 78px);
}

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

.portal-card,
.portal-card-team,
.portal-card-practice,
.portal-card-sites,
.portal-card-design {
  grid-column: auto;
  min-height: 245px;
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: auto;
  overflow: visible;
  background: transparent;
  color: var(--tea-deep);
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  transition: background-color 260ms var(--ease), padding 260ms var(--ease);
}

.portal-card:nth-child(2n) { border-right: 0; }
.portal-card:hover,
.portal-card:focus-visible {
  padding-left: clamp(40px, 4.7vw, 68px);
  background: rgba(157, 195, 51, .09);
}

.portal-card::after { display: none; }
.portal-card > div { padding: 0; }
.portal-card div > p { margin-bottom: 18px; color: var(--sprout); }
.portal-card h3 {
  color: var(--tea-deep);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -.045em;
}
.portal-card div > span:last-child {
  max-width: 28rem;
  margin-top: 24px;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.portal-card > i {
  align-self: center;
  color: var(--tea);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  transition: transform 240ms var(--ease);
}
.portal-card:hover > i,
.portal-card:focus-visible > i { transform: translateX(7px); }

.field-atlas { padding-top: clamp(100px, 10vw, 160px); }
.field-atlas-heading { margin-bottom: clamp(70px, 8vw, 110px); }
.field-atlas-heading h2 { font-size: clamp(48px, 5.2vw, 82px); }
.field-atlas-image { margin-top: clamp(52px, 7vw, 92px); }
.field-atlas-image figcaption { padding: clamp(28px, 4vw, 48px); }

.portal-closing { padding-top: 22px; }
.portal-closing h2 { font-size: clamp(44px, 4.5vw, 70px); }

.detail-jump-nav {
  top: 72px;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 239, .94);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.detail-jump-nav > span { letter-spacing: .08em; }
.detail-jump-nav a {
  min-height: 42px;
  padding: 12px 18px;
  border: 0;
}

.detail-process { padding-top: clamp(72px, 8vw, 110px); }
.detail-body { padding-top: clamp(72px, 8vw, 105px); }
.detail-source {
  margin-top: 34px;
  margin-bottom: 70px;
  padding: 26px 0;
  border-width: 1px 0;
}

.detail-pager { margin-bottom: 70px; }
.detail-pager-placeholder.detail-pager-end {
  align-items: flex-end;
  text-align: right;
}

@media (max-width: 900px) {
  .portal-heading { grid-template-columns: 1fr; gap: 30px; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card,
  .portal-card-team,
  .portal-card-practice,
  .portal-card-sites,
  .portal-card-design {
    min-height: 210px;
    border-right: 0;
  }
  .portal-card:hover,
  .portal-card:focus-visible { padding-left: clamp(32px, 4vw, 56px); }
  .detail-jump-nav { overflow-x: auto; }
  .detail-jump-nav > span { display: none; }
  .detail-jump-nav a { flex: 0 0 auto; min-width: 118px; text-align: center; }
}

@media (max-width: 620px) {
  .portal-overview { padding-block: 82px 96px; }
  .portal-heading { padding-bottom: 42px; }
  .portal-heading h2 { font-size: 43px; }
  .portal-card,
  .portal-card-team,
  .portal-card-practice,
  .portal-card-sites,
  .portal-card-design {
    min-height: 190px;
    padding: 30px 0;
  }
  .portal-card:hover,
  .portal-card:focus-visible { padding-left: 0; }
  .portal-card h3 { font-size: 38px; }
  .portal-card > i { font-size: 23px; }
  .field-atlas { padding-top: 82px; }
  .field-atlas-heading { margin-bottom: 54px; }
  .detail-pager { grid-template-columns: 1fr; }
  .detail-pager > * { min-height: 82px; border-bottom: 1px solid var(--line); }
  .detail-pager > *:last-child { border-bottom: 0; }
  .detail-pager-home { border-inline: 0; }
  .detail-pager-next,
  .detail-pager-placeholder.detail-pager-end { align-items: flex-start; text-align: left; }
  .detail-pager-placeholder.detail-pager-end { display: flex; }
}

.archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.archive-card:nth-child(3n) { border-right: 1px solid var(--line); }
.archive-card:nth-child(2n) { border-right: 0; }
.archive-card a {
  display: grid;
  grid-template-columns: minmax(150px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 2.6vw, 38px);
  padding: 28px;
  align-items: start;
}
.archive-card figure { margin: 0; }
.archive-card img { aspect-ratio: 1 / 1.12; }
.archive-card h3 { min-height: 0; font-size: clamp(22px, 2vw, 29px); }
.archive-card p { min-height: 0; margin-bottom: 28px; }

@media (max-width: 1050px) {
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card,
  .archive-card:nth-child(2n),
  .archive-card:nth-child(3n) { border-right: 0; }
}

@media (max-width: 620px) {
  .archive-card a { grid-template-columns: 1fr; gap: 22px; padding: 24px 0 30px; }
  .archive-card img { aspect-ratio: 1.48 / 1; }
}

/* Local restructuring pass — field notes first, decoration second. */
:root {
  --paper: #fafaf5;
  --ink: #173d2c;
  --tea: #1f6844;
  --muted: #587063;
  --sprout: #547d25;
  --line: #d6dfd4;
}

body { background: var(--paper); color: var(--ink); }
.site-nav .nav-contact { border: 0; background: transparent; color: inherit; }
.site-nav .nav-contact:hover { background: transparent; }
.eyebrow, .route-kicker, .route-card-number, .detail-index { color: #426b37 !important; }

/* Homepage: one thesis, one quiet route, four real destinations. */
.home-page .hero { min-height: min(820px, 100svh); }
.home-path { max-width: var(--page); margin: 0 auto; padding: clamp(78px, 10vw, 132px) 0; border-top: 1px solid var(--line); }
.home-path > .eyebrow { margin-bottom: 20px; }
.home-path h2 { max-width: 760px; margin: 0; font-family: Georgia, "Songti SC", "SimSun", serif; font-size: clamp(36px, 4.2vw, 66px); font-weight: 500; line-height: 1.16; letter-spacing: -.035em; }
.home-path ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: clamp(44px, 6vw, 72px) 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-path li { padding: 25px 22px 28px 0; border-right: 1px solid var(--line); }
.home-path li + li { padding-left: 22px; }
.home-path li:last-child { border-right: 0; }
.home-path span { display: block; margin-bottom: 34px; color: var(--tea); font: 700 12px/1 Arial, sans-serif; letter-spacing: .08em; }
.home-path b { display: block; color: var(--ink); font-size: 19px; }
.home-path p { max-width: 15rem; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.home-note { display: flex; align-items: end; justify-content: space-between; gap: 48px; max-width: var(--page); margin: 0 auto; padding: clamp(70px, 9vw, 118px) 0; border-top: 1px solid var(--line); }
.home-note h2 { margin: 12px 0; font-size: clamp(27px, 3vw, 42px); font-weight: 500; letter-spacing: -.03em; }
.home-note p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.8; }
.site-footer { display: flex; justify-content: space-between; gap: 18px; }
.site-footer > div { display: flex; gap: 20px; }

/* Category pages stop before they repeat their own summary. */
.route-intro-compact { padding-block: clamp(72px, 8vw, 104px); }
.route-intro-compact .route-intro-copy > dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.practice-route-page .route-directory, .factory-route-page .route-directory { padding-top: clamp(88px, 9vw, 126px); }
.route-handoff { padding-block: clamp(70px, 8vw, 104px); }
.route-handoff h2 { max-width: 700px; margin-block: 14px 26px; font-size: clamp(34px, 4vw, 58px); letter-spacing: -.04em; }
.route-handoff .eyebrow { color: #d5e7cf !important; }

/* Team and outcome pages end with a quiet handoff instead of another poster wall. */
.team-route-page .route-handoff,
.design-route-page .route-handoff {
  background: transparent;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.team-route-page .route-handoff .eyebrow,
.design-route-page .route-handoff .eyebrow { color: var(--tea) !important; }
.team-route-page .route-handoff a,
.design-route-page .route-handoff a { color: var(--tea-deep); }

/* Details: a short orientation, then the actual story. */
.detail-hero h1 { letter-spacing: -.035em; }
.detail-hero-copy > .eyebrow { font-size: 11px; }
.detail-facts { grid-template-columns: 154px 1fr; }
.detail-facts div { border-left-color: var(--tea); }
.detail-facts dd { font-size: 14px; line-height: 1.65; }
.detail-jump-nav { top: 64px; }
.detail-process { grid-template-columns: minmax(180px, .45fr) 1fr; padding-block: 62px 44px; }
.detail-process > header h2 { font-size: clamp(28px, 3vw, 42px); letter-spacing: -.03em; }
.detail-process-list article { grid-template-columns: 50px 1fr; padding-block: 18px; }
.detail-process-list article > span { color: var(--tea); }
.detail-process-list h3 { margin: 0; font-size: 18px; }
.detail-process-list p, .detail-process-list small { display: none; }
.detail-body { padding-top: 28px; }
.detail-chapter { padding-block: clamp(58px, 7vw, 90px); }
.detail-chapter-copy h2, .detail-prose h2 { letter-spacing: -.025em; }
.detail-chapter-copy p, .detail-prose p { max-width: 42rem; color: #294b3c; font-size: 16px; line-height: 2; text-align: left; }
.detail-chapter figure figcaption, .detail-gallery figcaption { font-size: 12px; line-height: 1.6; }
.detail-source { margin-top: 60px; }
.detail-pager { margin-top: 10px; }
.detail-pager-link b, .detail-pager-home b { font-size: 16px; }

/* The archive is a utility, not a second homepage. */
.archive-page .archive-hero h1 { letter-spacing: -.03em; }

@media (max-width: 900px) {
  .home-path, .home-note { margin-inline: max(24px, calc((100vw - var(--page)) / 2)); }
  .home-path ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-path li:nth-child(2) { border-right: 0; }
  .home-path li:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .home-path li:nth-child(3) { padding-left: 0; }
  .home-path li:nth-child(4) { padding-right: 0; }
  .route-intro-compact .route-intro-copy > dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-process { grid-template-columns: 1fr; gap: 26px; }
  .detail-facts { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .home-page .hero { min-height: auto; }
  .home-path, .home-note { margin-inline: 24px; }
  .home-path { padding-block: 74px; }
  .home-path h2 { font-size: 37px; }
  .home-path li, .home-path li + li { min-height: 166px; padding: 20px 14px 22px 0; }
  .home-path li:nth-child(2), .home-path li:nth-child(4) { padding-left: 14px; padding-right: 0; }
  .home-path span { margin-bottom: 25px; }
  .home-path b { font-size: 17px; }
  .home-path p { font-size: 13px; }
  .home-note { display: block; padding-block: 66px; }
  .home-note .button { margin-top: 28px; }
  .site-footer { display: block; }
  .site-footer > div { margin-top: 12px; }
  .route-intro-compact .route-intro-copy > dl { grid-template-columns: 1fr; }
  .route-intro-copy > dl dt { font-size: 29px; }
  .detail-jump-nav { top: 58px; }
  .detail-chapter-copy p, .detail-prose p { font-size: 16px; line-height: 1.9; }
  .detail-process { padding-block: 48px 28px; }
}

/* Image viewer: photographs stay in their narrative position, then open only
   when a reader asks for a closer look. */
.is-image-viewer-open { overflow: hidden; }
.image-viewer[hidden] { display: none; }
.image-viewer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  transition: opacity .18s ease;
}
.image-viewer.is-open { opacity: 1; }
.image-viewer-backdrop { position: absolute; inset: 0; background: rgba(13, 24, 18, .88); }
.image-viewer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  width: min(1120px, 100%);
  max-height: 100%;
}
.image-viewer-close {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 0 10px;
  padding: 0;
  color: #f4f6ef;
  font: 300 32px/.9 Arial, sans-serif;
  text-align: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.image-viewer-close:hover,
.image-viewer-close:focus-visible { color: #f4f6ef; }
.image-viewer-close:focus,
.image-viewer-close:focus-visible {
  outline: 0;
  box-shadow: none;
}
.image-viewer figure { width: 100%; margin: 0; }
.image-viewer figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 126px);
  margin: 0 auto;
  object-fit: contain;
  background: #101b14;
}
.image-viewer figcaption {
  max-width: 780px;
  margin: 12px auto 0;
  color: rgba(244, 246, 239, .82);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
main img:not([data-no-image-viewer]) { cursor: zoom-in; }

@media (max-width: 620px) {
  .image-viewer { padding: 16px; }
  .image-viewer-close { min-height: 40px; margin-bottom: 10px; }
  .image-viewer figure img { max-height: calc(100svh - 108px); }
  .image-viewer figcaption { margin-top: 10px; font-size: 12px; }
}
