:root {
  --pine-950: #10251d;
  --pine-900: #17372a;
  --pine-800: #1f4b38;
  --pine-700: #2e624a;
  --pine-100: #e4eee7;
  --rice: #f6f3eb;
  --rice-deep: #ebe5d8;
  --paper: #fffdfa;
  --ink: #1c2822;
  --muted: #69756e;
  --gold: #b7864c;
  --gold-light: #ddc49c;
  --line: rgba(28, 40, 34, 0.13);
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(16, 37, 29, 0.08);
  --shadow-lg: 0 28px 70px rgba(16, 37, 29, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: 1240px;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --font-serif: "Source Han Serif SC", "Songti SC", "STSong", serif;
}

/* Community photographs keep their complete original composition, including collages. */
.community-grid { columns: 3; column-gap: 28px; }
.community-grid-single { columns: 1; }
.community-card { display: inline-block; width: 100%; min-width: 0; margin: 0 0 30px; break-inside: avoid; vertical-align: top; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.community-card button { display: block; width: 100%; padding: 0; border: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; background: transparent; cursor: zoom-in; }
.community-card img { display: block; width: 100%; height: auto; min-height: 0; max-height: none; aspect-ratio: auto; object-fit: contain; border-radius: 0; }
.community-card .photo-open { position: static; display: block; padding: 8px 18px; border-bottom: 1px solid var(--line); color: var(--pine-700); background: var(--rice); font-size: 12px; text-align: right; }
.community-card button:hover .photo-open { background: var(--pine-100); }
.community-card figcaption { padding: 18px 22px 22px; }
.community-category { color: var(--gold); font-size: 12px; letter-spacing: .12em; }
.community-card h3 { margin: 6px 0 10px; font-family: var(--font-serif); font-size: 24px; }
.community-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.community-note { margin: 10px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.community-jump { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.community-feature .community-card { margin-bottom: 0; color: var(--ink); border-radius: 0; }
.community-feature .community-card img { height: auto; min-height: 0; aspect-ratio: auto; }
.community-feature .community-card p { color: var(--muted); }
.feature-split.community-feature { overflow: visible; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
@media (max-width: 1000px) { .community-grid { columns: 2; } .community-grid-single { columns: 1; } }
@media (max-width: 600px) { .community-grid { columns: 1; } .community-card { margin-bottom: 24px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(183,134,76,.72); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { color: #fff; background: var(--pine-700); }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: hidden; }
.section-rice { background: var(--rice); }
.section-dark { color: #fff; background: var(--pine-950); }
.section-tight { padding: 76px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 46px; }
.section-head > div { max-width: 760px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}
.section-label::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.section h2,
.content-prose h2,
.page-intro h2 {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.22;
}
.section-head p:last-child { margin: 0; color: var(--muted); }
.section-dark .section-head p:last-child { color: rgba(255,255,255,.66); }
.eyebrow { color: var(--gold-light); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.lead { color: #415047; font-size: clamp(18px, 2vw, 22px); line-height: 1.75; }
.section-dark .lead { color: rgba(255,255,255,.74); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.text-link::after { content: "→"; transition: transform .25s ease; }
.text-link:hover::after { transform: translateX(5px); }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--pine-700); }
.btn-primary:hover { background: var(--pine-800); }
.btn-light { color: var(--pine-950); background: #fff; }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn-outline:hover { background: #fff; color: var(--pine-950); }
.placeholder-tag,
.demo-tag {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid rgba(183,134,76,.35);
  border-radius: 5px;
  color: #8b642f;
  background: #f8efe1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--pine-950); }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: #fff; transition: color .3s ease, background .3s ease, box-shadow .3s ease; }
.utility-bar { border-bottom: 1px solid rgba(255,255,255,.18); font-size: 12px; }
.utility-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner div { display: flex; gap: 22px; }
.utility-inner a { color: var(--gold-light); }
.main-nav { transition: background .3s ease; }
.nav-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-seal {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50% 50% 46% 54%;
  color: #fff;
  background: var(--pine-700);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
}
.brand-copy { display: block; }
.brand-copy strong { display: block; font-family: var(--font-serif); font-size: 21px; line-height: 1.15; letter-spacing: .08em; }
.brand-copy small { display: block; margin-top: 5px; font-size: 9px; letter-spacing: .16em; opacity: .68; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.nav-group { position: relative; }
.nav-group > a { display: flex; align-items: center; gap: 5px; }
.nav-caret { margin-top: -3px; font-size: 15px; transition: transform .25s ease; }
.nav-links a { position: relative; padding: 12px 10px; font-size: 14px; font-weight: 650; white-space: nowrap; }
.nav-links a::after { position: absolute; right: 10px; bottom: 5px; left: 10px; height: 1px; background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; content: ""; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  min-width: 168px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,253,250,.98);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-submenu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 12px; content: ""; }
.nav-submenu a { padding: 10px 14px; border-radius: 9px; font-weight: 600; }
.nav-submenu a::after { display: none; }
.nav-submenu a:hover,
.nav-submenu a.active { color: var(--pine-800); background: var(--rice); }
.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-group:hover .nav-caret,
.nav-group:focus-within .nav-caret { transform: rotate(180deg); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; }
.menu-toggle i { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: .25s ease; }
.site-header.is-scrolled { color: var(--ink); background: rgba(255,253,250,.96); box-shadow: 0 8px 30px rgba(16,37,29,.09); backdrop-filter: blur(16px); }
.site-header.is-scrolled .utility-bar { display: none; }
.site-header.is-scrolled .brand-seal { border-color: transparent; }
.site-header.is-scrolled .nav-inner { min-height: 68px; }
.site-header.is-scrolled .nav-links a::after { background: var(--pine-700); }
.site-header.is-scrolled .menu-toggle { border-color: var(--line); }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--pine-950);
}
.hero-media,
.hero-media img,
.page-hero-media,
.page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { animation: heroZoom 18s ease-out both; }
.hero-media::after,
.page-hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,20,.88) 0%, rgba(12,40,29,.5) 48%, rgba(5,24,18,.12) 78%), linear-gradient(0deg, rgba(7,24,18,.72), transparent 55%); content: ""; }
.hero-content { position: relative; z-index: 2; padding: 215px 0 150px; }
.hero-copy { max-width: 900px; }
.hero h1 { max-width: 860px; margin: 20px 0 26px; font-family: var(--font-serif); font-size: clamp(54px, 8vw, 104px); font-weight: 700; letter-spacing: .02em; line-height: 1.04; text-shadow: 0 20px 50px rgba(0,0,0,.25); }
.hero .subtitle { max-width: 670px; margin-bottom: 36px; color: rgba(255,255,255,.83); font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-rail { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--shell))/2)); bottom: 78px; display: grid; grid-template-columns: repeat(3, minmax(110px, 1fr)); width: min(420px, calc(100% - 48px)); border-top: 1px solid rgba(255,255,255,.32); }
.hero-rail div { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.22); }
.hero-rail div:last-child { border-right: 0; }
.hero-rail strong { display: block; font-family: var(--font-serif); font-size: 24px; }
.hero-rail span { color: rgba(255,255,255,.72); font-size: 12px; }
.hero-scroll { position: absolute; z-index: 2; bottom: 42px; left: max(24px, calc((100vw - var(--shell))/2)); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .14em; }
.hero-scroll::before { width: 54px; height: 1px; background: currentColor; content: ""; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }

.home-gateway { position: relative; z-index: 4; margin-top: -42px; }
.gateway-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(28,40,34,.1); border-radius: var(--radius-md); background: rgba(255,253,250,.98); box-shadow: 0 22px 55px rgba(16,37,29,.13); }
.gateway-grid a { display: grid; min-height: 112px; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 24px 26px; border-right: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.gateway-grid a:last-child { border-right: 0; }
.gateway-grid a:hover { color: var(--pine-800); background: var(--rice); }
.gateway-index { color: var(--gold); font-family: var(--font-serif); font-size: 14px; }
.gateway-grid strong { display: block; font-family: var(--font-serif); font-size: 19px; line-height: 1.35; }
.gateway-grid small { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.gateway-grid b { color: var(--gold); font-size: 18px; font-weight: 500; transition: transform .25s ease; }
.gateway-grid a:hover b { transform: translateX(4px); }
.home-gateway + .section { padding-top: 92px; }

.intro-editorial { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.intro-editorial .intro-title { position: sticky; top: 110px; }
.intro-title h2 { max-width: 480px; }
.intro-body { padding-top: 54px; }
.intro-body .lead { max-width: 780px; }
.intro-foot { display: grid; grid-template-columns: 1fr .8fr; gap: 34px; align-items: end; margin-top: 52px; }
.intro-foot img { height: 360px; border-radius: var(--radius-md); }
.editor-note { padding: 26px 0 8px 26px; border-left: 2px solid var(--gold); color: var(--muted); }
.editor-note strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: var(--font-serif); font-size: 22px; }

.metrics-band { border-block: 1px solid var(--line); background: #fff; }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.metric { padding: 36px 28px; border-right: 1px solid var(--line); }
.metric:first-child { border-left: 1px solid var(--line); }
.metric strong { display: block; margin: 8px 0 2px; color: var(--pine-800); font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 46px); line-height: 1; }
.metric small { color: var(--muted); font-size: 13px; }

.impression-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 290px 250px; gap: 18px; }
.image-story { position: relative; overflow: hidden; border-radius: var(--radius-md); color: #fff; }
.image-story:first-child { grid-row: 1 / 3; }
.image-story:nth-child(4) { grid-column: 2 / 4; }
.image-story img { height: 100%; transition: transform .6s ease; }
.image-story:hover img { transform: scale(1.035); }
.image-story::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,25,18,.76), transparent 62%); content: ""; }
.image-story div { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; }
.image-story span { color: var(--gold-light); font-size: 13px; }
.image-story h3 { margin: 6px 0 0; font-family: var(--font-serif); font-size: 24px; }

.news-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 420px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.news-feature img { height: 100%; min-height: 420px; }
.news-feature-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 58px; }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.news-feature h3 { margin-bottom: 18px; font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.3; }
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.news-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.news-card time { color: var(--gold); font-size: 13px; font-weight: 700; }
.news-card h3 { margin: 18px 0 12px; font-family: var(--font-serif); font-size: 21px; line-height: 1.45; }
.news-card p { margin: 0; color: var(--muted); font-size: 14px; }

.revival-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; align-items: start; }
.revival-intro { position: sticky; top: 110px; }
.revival-list { counter-reset: revival; }
.revival-item { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.15); counter-increment: revival; }
.revival-item::before { color: var(--gold-light); font-family: var(--font-serif); font-size: 24px; content: "0" counter(revival); }
.revival-item h3 { margin: 0 0 8px; font-family: var(--font-serif); font-size: 25px; }
.revival-item p { margin: 0; color: rgba(255,255,255,.64); }

.industry-showcase { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.industry-card { position: relative; min-height: 450px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; }
.industry-card:first-child { grid-column: span 7; }
.industry-card:last-child { grid-column: span 5; }
.industry-card img { position: absolute; inset: 0; height: 100%; }
.industry-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,25,18,.86), rgba(6,25,18,.08) 65%); content: ""; }
.industry-card div { position: absolute; z-index: 2; right: 34px; bottom: 30px; left: 34px; }
.industry-card h3 { margin: 7px 0 10px; font-family: var(--font-serif); font-size: 30px; }
.industry-card p { margin: 0; color: rgba(255,255,255,.72); }

.route-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--line); }
.route-stop { position: relative; padding: 34px 28px 0 0; }
.route-stop::before { position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border: 3px solid var(--paper); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); content: ""; }
.route-stop span { color: var(--gold); font-size: 13px; }
.route-stop h3 { margin: 11px 0 8px; font-family: var(--font-serif); font-size: 21px; }
.route-stop p { color: var(--muted); font-size: 14px; }

.gallery-mosaic { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 260px; gap: 16px; }
.gallery-mosaic button { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius-md); background: var(--rice-deep); cursor: zoom-in; }
.gallery-mosaic button:first-child { grid-row: span 2; }
.gallery-mosaic button:nth-child(5) { grid-column: span 2; }
.gallery-mosaic img { height: 100%; transition: transform .5s ease; }
.gallery-mosaic button:hover img { transform: scale(1.04); }
.gallery-mosaic span { position: absolute; right: 16px; bottom: 14px; padding: 4px 9px; border-radius: 5px; color: #fff; background: rgba(9,31,23,.7); font-size: 13px; backdrop-filter: blur(7px); }
.lightbox { width: min(1120px, calc(100% - 34px)); max-width: none; padding: 0; border: 0; border-radius: var(--radius-md); color: #fff; background: #0a1510; box-shadow: 0 40px 100px rgba(0,0,0,.55); }
.lightbox::backdrop { background: rgba(5,14,10,.84); backdrop-filter: blur(8px); }
.lightbox img { max-height: 78vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 16px 22px; color: rgba(255,255,255,.75); }
.lightbox button { position: absolute; z-index: 2; top: 12px; right: 12px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.55); cursor: pointer; }

.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { min-height: 190px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.72); transition: transform .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-4px); background: #fff; }
.service-card b { display: grid; width: 42px; height: 42px; margin-bottom: 32px; place-items: center; border-radius: 50%; color: #fff; background: var(--pine-700); font-family: var(--font-serif); }
.service-card h3 { margin-bottom: 8px; font-family: var(--font-serif); font-size: 19px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-banner { position: relative; min-height: 530px; overflow: hidden; color: #fff; background: var(--pine-950); }
.contact-banner img { position: absolute; inset: 0; height: 100%; opacity: .48; }
.contact-banner::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,35,25,.94), rgba(9,35,25,.45)); content: ""; }
.contact-banner-content { position: relative; z-index: 2; display: grid; min-height: 530px; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.contact-banner h2 { margin: 12px 0 22px; font-family: var(--font-serif); font-size: clamp(38px, 5vw, 62px); }
.contact-details { display: grid; gap: 18px; padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.contact-details div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; }
.contact-details span { color: var(--gold-light); font-size: 13px; }
.contact-details strong { font-weight: 500; }

.page-hero { position: relative; display: flex; min-height: 560px; align-items: flex-end; overflow: hidden; color: #fff; background: var(--pine-950); }
.page-hero-media::after { background: linear-gradient(90deg, rgba(8,31,22,.9), rgba(8,31,22,.28)), linear-gradient(0deg, rgba(8,24,18,.72), transparent 62%); }
body[data-page="industry"] .page-hero-media img { object-position: center 68%; }
.page-hero-content { position: relative; z-index: 2; padding: 210px 0 82px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 26px; color: rgba(255,255,255,.66); font-size: 13px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { margin: 0 0 18px; font-family: var(--font-serif); font-size: clamp(46px, 6vw, 76px); line-height: 1.08; }
.page-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.76); font-size: 19px; }
.page-intro { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; align-items: start; }
.page-intro aside { position: sticky; top: 105px; padding-top: 8px; }
.anchor-list { display: grid; margin-top: 26px; border-top: 1px solid var(--line); }
.anchor-list a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.anchor-list a:hover { color: var(--pine-700); }
.content-prose > * { max-width: 850px; }
.content-prose p { color: #536058; }
.content-prose .lead { color: #34443b; }
.facts-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.fact { padding: 25px; background: #fff; }
.fact span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 13px; }
.fact strong { font-family: var(--font-serif); font-size: 21px; }

.feature-split { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: var(--pine-900); color: #fff; }
.feature-split img { height: 100%; min-height: 520px; }
.feature-split article { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.feature-split h2 { font-size: clamp(32px, 4vw, 48px); }
.feature-split p { color: rgba(255,255,255,.68); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.pillar-card span { color: var(--gold); font-family: var(--font-serif); font-size: 26px; }
.pillar-card h3 { margin: 32px 0 10px; font-family: var(--font-serif); font-size: 24px; }
.pillar-card p { margin: 0; color: var(--muted); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-bar button { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; }
.filter-bar button.active { color: #fff; border-color: var(--pine-700); background: var(--pine-700); }
.news-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-index-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.news-index-card[hidden] { display: none; }
.news-index-card img { height: 220px; }
.news-index-copy { padding: 26px; }
.news-index-copy h2 { margin: 14px 0 10px; font-family: var(--font-serif); font-size: 22px; line-height: 1.45; }
.news-index-copy p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }

.article-wrap { display: grid; grid-template-columns: minmax(0, 820px) 280px; gap: 80px; align-items: start; }
.article-header { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.article-header h1 { margin: 18px 0; font-family: var(--font-serif); font-size: clamp(34px, 5vw, 54px); line-height: 1.25; }
.article-body { padding-top: 40px; font-size: 17px; }
.article-body h2 { margin: 46px 0 16px; font-family: var(--font-serif); font-size: 28px; }
.article-body p { color: #4c5b52; }
.article-notice { margin: 30px 0; padding: 22px 24px; border-left: 3px solid var(--gold); background: var(--rice); }
.article-aside { position: sticky; top: 100px; }
.article-aside img { height: 180px; border-radius: var(--radius-md); }
.article-aside h2 { margin: 20px 0 8px; font-family: var(--font-serif); font-size: 22px; }
.article-aside p { color: var(--muted); font-size: 14px; }

.public-layout { display: grid; grid-template-columns: 300px 1fr; gap: 50px; align-items: start; }
.public-categories { display: grid; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.public-categories a { display: flex; align-items: center; justify-content: space-between; padding: 15px 13px; border-bottom: 1px solid var(--line); }
.public-categories a:last-child { border: 0; }
.public-categories a::after { content: "→"; color: var(--gold); }
.disclosure-list { border-top: 2px solid var(--pine-800); }
.disclosure-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 22px; align-items: center; padding: 24px 8px; border-bottom: 1px solid var(--line); }
.disclosure-item time { color: var(--muted); font-size: 13px; }
.disclosure-item strong { font-family: var(--font-serif); font-size: 18px; }
.disclosure-item em { color: var(--gold); font-style: normal; font-size: 13px; }

.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-card { padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.contact-card h2 { margin-bottom: 30px; font-family: var(--font-serif); font-size: 34px; }
.contact-row { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-row span { color: var(--muted); }
.map-card { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); color: #fff; }
.map-card img { position: absolute; inset: 0; height: 100%; }
.map-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,31,22,.88), rgba(8,31,22,.08)); content: ""; }
.map-card-content { position: absolute; z-index: 2; right: 34px; bottom: 30px; left: 34px; }
.map-card-content h2 { margin: 0 0 8px; font-family: var(--font-serif); font-size: 30px; }

.accordion { display: grid; gap: 10px; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.accordion-item button { display: flex; width: 100%; min-height: 64px; align-items: center; justify-content: space-between; padding: 0 22px; border: 0; background: transparent; cursor: pointer; text-align: left; font-weight: 700; }
.accordion-item button::after { content: "+"; font-size: 22px; }
.accordion-item.open button::after { content: "−"; }
.accordion-content { display: none; padding: 0 22px 20px; color: var(--muted); }
.accordion-item.open .accordion-content { display: block; }

.site-footer { color: rgba(255,255,255,.72); background: #0c2119; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr 1fr 150px; gap: 52px; padding: 74px 0 56px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 410px; margin: 25px 0 0; font-size: 14px; }
.footer-main h2 { margin: 0 0 18px; color: #fff; font-size: 15px; }
.footer-nav div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px; font-size: 14px; }
.footer-nav a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact p { margin: 5px 0; font-size: 14px; }
.qr-placeholder { display: grid; width: 136px; height: 136px; place-content: center; border: 1px dashed rgba(255,255,255,.35); border-radius: var(--radius-sm); text-align: center; }
.qr-placeholder span { font-size: 12px; }
.qr-placeholder strong { margin-top: 8px; color: var(--gold-light); font-size: 13px; }
.footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.wide-panorama { height: clamp(300px, 46vw, 520px); border-radius: var(--radius-lg); }
.source-note { margin: 24px 0 0; color: var(--muted); font-size: 14px; }

@media (max-width: 1080px) {
  .shell { width: min(100% - 36px, var(--shell)); }
  .utility-bar { display: none; }
  .nav-inner { min-height: 70px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--ink);
    background: rgba(255,253,250,.98);
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  }
  .nav-links.open { max-height: calc(100vh - 70px); padding-block: 18px 26px; overflow-y: auto; opacity: 1; box-shadow: 0 24px 40px rgba(16,37,29,.15); }
  .nav-links a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-group { display: grid; }
  .nav-group > a { justify-content: space-between; }
  .nav-caret { display: none; }
  .nav-submenu { position: static; display: grid; min-width: 0; padding: 2px 0 8px 20px; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-submenu a { padding: 10px 12px; border-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 500; }
  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu { transform: none; }
  .hero-content { padding-top: 180px; }
  .hero-rail { bottom: 72px; }
  .intro-editorial,
  .revival-layout { grid-template-columns: 1fr; gap: 36px; }
  .intro-editorial .intro-title,
  .revival-intro,
  .page-intro aside,
  .article-aside { position: static; }
  .intro-body { padding-top: 0; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .metric:nth-child(4) { border-left: 1px solid var(--line); }
  .impression-grid { grid-template-columns: 1fr 1fr; }
  .image-story:nth-child(4) { grid-column: auto; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature img { min-height: 340px; }
  .industry-card:first-child,
  .industry-card:last-child { grid-column: span 6; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .page-intro { grid-template-columns: 1fr; gap: 30px; }
  .anchor-list { grid-template-columns: repeat(5, 1fr); gap: 8px; border: 0; }
  .anchor-list a { padding: 10px; border: 1px solid var(--line); border-radius: 8px; text-align: center; }
  .pillar-grid,
  .news-index { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { grid-template-columns: 1fr; gap: 40px; }
  .public-layout { grid-template-columns: 1fr; }
  .public-categories { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .qr-placeholder { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, var(--shell)); }
  .section { padding: 78px 0; }
  .section-tight { padding: 56px 0; }
  .section-head { display: block; margin-bottom: 32px; }
  .section-head .text-link { margin-top: 14px; }
  .brand-copy strong { font-size: 18px; }
  .brand-seal { width: 40px; height: 40px; }
  .hero { min-height: max(720px, 100svh); }
  .hero-media::after { background: linear-gradient(0deg, rgba(7,27,20,.91), rgba(7,27,20,.18) 82%); }
  .hero-content { align-self: center; padding: 150px 0 230px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero .subtitle { font-size: 17px; }
  .hero-actions .btn { min-width: calc(50% - 6px); padding-inline: 14px; }
  .hero-rail { right: 14px; bottom: 68px; left: 14px; width: auto; }
  .hero-rail div { padding: 13px 10px; }
  .hero-rail strong { font-size: 20px; }
  .hero-scroll { display: none; }
  .home-gateway { margin-top: -28px; }
  .gateway-grid { grid-template-columns: 1fr 1fr; }
  .gateway-grid a { min-height: 102px; padding: 20px; border-bottom: 1px solid var(--line); }
  .gateway-grid a:nth-child(2) { border-right: 0; }
  .gateway-grid a:nth-child(n+3) { border-bottom: 0; }
  .gateway-grid strong { font-size: 18px; }
  .home-gateway + .section { padding-top: 72px; }
  .intro-foot { grid-template-columns: 1fr; }
  .intro-foot img { height: 290px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 25px 18px; border-bottom: 1px solid var(--line); }
  .metric:nth-child(odd) { border-left: 1px solid var(--line); }
  .impression-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .image-story, .image-story:first-child { grid-row: auto; min-height: 270px; }
  .news-feature-copy { padding: 30px 24px; }
  .news-feature img { min-height: 260px; }
  .news-list { grid-template-columns: 1fr; }
  .revival-item { grid-template-columns: 48px 1fr; }
  .industry-showcase { display: grid; grid-template-columns: 1fr; }
  .industry-card:first-child,
  .industry-card:last-child { grid-column: auto; min-height: 390px; }
  .route-strip { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-mosaic button:first-child { grid-row: span 1; }
  .gallery-mosaic button:nth-child(5) { grid-column: span 1; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .contact-banner-content { grid-template-columns: 1fr; gap: 30px; padding-block: 76px; }
  .contact-details { padding: 24px; }
  .page-hero { min-height: 500px; }
  .page-hero-content { padding: 170px 0 66px; }
  .page-hero p { font-size: 16px; }
  .anchor-list { grid-template-columns: 1fr 1fr; }
  .facts-panel { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split img { min-height: 300px; }
  .feature-split article { padding: 36px 26px; }
  .pillar-grid,
  .news-index { grid-template-columns: 1fr; }
  .public-categories { grid-template-columns: 1fr 1fr; }
  .disclosure-item { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .disclosure-item time { grid-column: 1 / -1; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 30px 24px; }
  .map-card { min-height: 420px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding-block: 56px; }
  .footer-bottom { display: block; padding: 22px 0; }
  .footer-bottom div { flex-wrap: wrap; margin-top: 10px; }
}

@media (max-width: 440px) {
  .hero-actions .btn { width: 100%; }
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-grid a { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .gateway-grid a:nth-child(2),
  .gateway-grid a:nth-child(3) { border-bottom: 1px solid var(--line); }
  .gateway-grid a:last-child { border-bottom: 0; }
  .metrics-grid,
  .service-grid,
  .public-categories { grid-template-columns: 1fr; }
  .route-strip { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .contact-details div,
  .contact-row { grid-template-columns: 1fr; gap: 3px; }
}

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

/* Village history archive */
.history-hero .page-hero-media img { object-position: center 58%; }
.archive-notice { margin-top: 30px; padding: 22px 24px; border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--rice); }
.archive-notice strong { color: var(--pine-800); font-family: var(--font-serif); font-size: 20px; }
.archive-notice p { margin: 8px 0 0; font-size: 14px; }
.archive-feature img { object-position: center; }
.archive-caption { display: block; margin-top: 20px; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.7; }
.history-chapters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.history-chapter { min-height: 270px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.history-chapter > span { color: var(--gold); font-family: var(--font-serif); font-size: 28px; }
.history-chapter h3 { margin: 38px 0 12px; font-family: var(--font-serif); font-size: 26px; }
.history-chapter p { margin: 0; color: var(--muted); }
.history-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: start; }
.history-intro { position: sticky; top: 112px; }
.history-timeline { border-top: 1px solid rgba(255,255,255,.22); }
.timeline-entry { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline-entry time { color: var(--gold-light); font-family: var(--font-serif); font-size: 18px; }
.timeline-entry h3 { margin: 0 0 8px; color: #fff; font-family: var(--font-serif); font-size: 24px; }
.timeline-entry p { margin: 0; color: rgba(255,255,255,.66); }
.bridge-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bridge-archive-card { min-height: 300px; padding: 36px; border-radius: var(--radius-md); color: #fff; background: var(--pine-900); }
.bridge-archive-card span { color: var(--gold-light); font-family: var(--font-serif); font-size: 30px; }
.bridge-archive-card h3 { margin: 42px 0 12px; font-family: var(--font-serif); font-size: 28px; }
.bridge-archive-card p { margin: 0; color: rgba(255,255,255,.68); }
.leader-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.leader-table-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.leader-table-heading { padding: 30px 32px 24px; color: #fff; background: var(--pine-900); }
.leader-table-heading span { color: var(--gold-light); font-size: 12px; letter-spacing: .14em; }
.leader-table-heading h3 { margin: 8px 0 0; font-family: var(--font-serif); font-size: 28px; }
.history-table-wrap { overflow-x: auto; }
.history-table-wrap table { width: 100%; border-collapse: collapse; min-width: 520px; }
.history-table-wrap th,
.history-table-wrap td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.history-table-wrap th { color: var(--muted); background: var(--rice); font-size: 12px; letter-spacing: .06em; }
.history-table-wrap td:first-child { color: var(--pine-900); font-family: var(--font-serif); font-size: 17px; font-weight: 700; }
.history-table-wrap tbody tr:last-child td { border-bottom: 0; }
.history-table-wrap tbody tr:hover { background: #fbfaf6; }
.section-action { margin-top: 34px; }

@media (max-width: 1080px) {
  .history-layout { grid-template-columns: 1fr; gap: 42px; }
  .history-intro { position: static; }
  .leader-tables { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .history-chapters,
  .bridge-archive-grid { grid-template-columns: 1fr; }
  .history-chapter,
  .bridge-archive-card { min-height: auto; padding: 30px 26px; }
  .history-chapter h3,
  .bridge-archive-card h3 { margin-top: 28px; }
  .timeline-entry { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .leader-table-heading { padding: 26px 24px 22px; }
}

/* 2026-09: source-led photography, comfortable reading and touch navigation. */
body { overflow-wrap: break-word; }
[hidden] { display: none !important; }
.brand-copy small { font-size: 12px; letter-spacing: .06em; }
.section-label, .eyebrow { font-size: 14px; }
.feature-split p, .revival-item p { color: rgba(255,255,255,.8); }
.section-dark .section-label { color: var(--gold-light); }
.data-footnote { margin-block: 0; padding-block: 18px; color: var(--muted); font-size: 14px; }
.content-prose .data-footnote { padding: 16px 20px; border-left: 2px solid var(--gold); background: var(--rice); }
.contact-row strong, .contact-details strong { min-width: 0; overflow-wrap: anywhere; }
.route-stop h3 a:hover { color: var(--pine-700); text-decoration: underline; text-underline-offset: 6px; }
.route-stop .text-link { min-height: 44px; font-size: 14px; }
.hero-media img { animation: none; }
.hero-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-rail span { font-size: 14px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px 24px; }
.photo-card { min-width: 0; margin: 0; }
.photo-card button { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-md); background: var(--pine-100); cursor: zoom-in; }
.photo-card img { aspect-ratio: 4 / 3; height: auto; object-fit: cover; transition: transform .4s ease; }
.photo-card:first-child { grid-column: span 2; }
.photo-card:first-child img { aspect-ratio: 2 / 1; }
.photo-card:nth-child(2) img { aspect-ratio: 1 / 1; }
.photo-card:nth-child(2) { align-self: end; }
.photo-card button:hover img { transform: scale(1.025); }
.photo-open { position: absolute; right: 14px; bottom: 14px; padding: 5px 12px; color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: 30px; background: rgba(10,30,23,.8); font-size: 14px; }
.photo-card figcaption { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px 14px; padding-top: 16px; }
.photo-card figcaption > div { display: flex; align-items: center; gap: 12px; }
.photo-number { color: var(--gold); font-size: 13px; font-variant-numeric: tabular-nums; }
.photo-card h3 { margin: 0; font-family: var(--font-serif); font-size: 22px; }
.photo-card time { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.photo-card:last-child:nth-child(3n) { grid-column: span 2; }
.photo-card:last-child:nth-child(3n) img { aspect-ratio: 2 / 1; }
.lightbox { width: min(1340px, calc(100% - 32px)); max-height: calc(100dvh - 32px); overflow-y: auto; }
.lightbox-toolbar { display: flex; min-height: 64px; align-items: center; justify-content: space-between; padding: 10px 18px; color: #e5eae7; font-size: 14px; }
.lightbox button { position: static; display: grid; width: 44px; height: 44px; flex-shrink: 0; place-items: center; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); font-size: 22px; }
.lightbox button:hover { background: rgba(255,255,255,.18); }
.lightbox-stage { position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; gap: 6px; align-items: center; padding: 0 12px; }
.lightbox-stage img { width: 100%; height: min(66dvh, 780px); max-height: none; object-fit: contain; }
.lightbox-stage[aria-busy="true"] img { opacity: .25; }
.lightbox-status { position: absolute; top: 50%; left: 50%; max-width: 65%; transform: translate(-50%, -50%); text-align: center; font-size: 14px; }
.lightbox-status:empty { display: none; }
.lightbox p { padding: 18px 24px 24px; color: #d9e3dc; font-size: 16px; }
.disclosure-item { grid-template-columns: 78px minmax(0, 1fr) auto; align-items: start; padding-block: 28px; }
.disclosure-item p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.disclosure-item em { font-size: 14px; }
.disclosure-status { display: inline-flex; justify-content: center; padding: 4px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-size: 14px; }
.history-table-wrap th { font-size: 14px; }
.history-table-wrap table { min-width: 0; }
.history-table-wrap th, .history-table-wrap td { white-space: normal; }
.history-table-wrap td:nth-child(2) { font-variant-numeric: tabular-nums; }
@media (max-width: 1080px) {
  .menu-open .site-header { color: var(--ink); background: var(--paper); }
  .nav-links { transition: opacity .16s ease; }
  .nav-links:not(.open) { visibility: hidden; }
  .nav-links.open { visibility: visible; max-height: calc(100dvh - 70px); overscroll-behavior: contain; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-card:first-child { grid-column: span 2; }
  .photo-card:nth-child(2) img { aspect-ratio: 4 / 3; }
  .photo-card:last-child:nth-child(3n) { grid-column: auto; }
  .photo-card:last-child:nth-child(3n) img { aspect-ratio: 4 / 3; }
}
@media (max-width: 760px) {
  .hero { min-height: 740px; }
  .hero-content { padding: 150px 0 250px; }
  .hero h1 { line-height: 1.18; letter-spacing: .05em; }
  .hero .subtitle { font-size: 17px; line-height: 1.8; }
  .hero-rail { bottom: 56px; }
  .hero-media img { object-position: 53% center; }
  .gateway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gateway-grid a { grid-template-columns: minmax(0, 1fr) auto; min-height: 90px; padding: 18px 16px; gap: 8px; }
  .gateway-index { display: none; }
  .gateway-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
  .gateway-grid a:nth-child(n+3) { border-bottom: 0; }
  .gateway-grid small { font-size: 13px; }
  .section { padding-block: 64px; }
  .page-hero { min-height: 430px; }
  .page-hero-content { padding: 150px 0 60px; }
  .photo-grid { gap: 26px 14px; }
  .photo-card h3 { font-size: 18px; }
  .photo-card figcaption { align-items: flex-start; flex-direction: column; padding-top: 12px; }
  .photo-number { display: none; }
  .photo-open { right: 8px; bottom: 8px; padding: 3px 8px; }
  .lightbox { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 12px; }
  .lightbox-stage { grid-template-columns: 1fr 1fr; padding: 0 8px; gap: 12px; }
  .lightbox-stage img { grid-column: 1 / -1; grid-row: 1; height: auto; min-height: 160px; max-height: 60dvh; }
  .lightbox-stage [data-photo-prev] { grid-row: 2; justify-self: end; }
  .lightbox-stage [data-photo-next] { grid-row: 2; justify-self: start; }
  .lightbox p { padding: 16px; }
  .disclosure-item { grid-template-columns: 70px minmax(0, 1fr); gap: 12px; }
  .disclosure-item em { grid-column: 2; }
  .history-table-wrap th, .history-table-wrap td { padding: 13px 10px; font-size: 14px; }
  .history-table-wrap td:first-child { font-size: 16px; }
  .feature-split img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
}
@media (max-width: 380px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card:first-child { grid-column: auto; }
  .photo-card:first-child img { aspect-ratio: 4 / 3; }
  .hero-rail strong { font-size: 20px; }
  .hero-rail span { font-size: 12px; }
  .gateway-grid strong { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal { opacity: 1; transform: none; }
}
:root { --chronicle-paper: #f0eee4; }
.chronicle-promo { padding: 56px 0; background: var(--chronicle-paper); border-block: 1px solid var(--line); }
.chronicle-promo-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 56px; }
.chronicle-promo h2 { max-width: 22em; margin: 14px 0 20px; font-family: var(--font-serif); font-size: clamp(1.75rem,3vw,2.75rem); line-height: 1.5; }
.chronicle-promo p { max-width: 48em; line-height: 1.9; color: var(--muted); }
.chronicle-promo small { display: block; margin-top: 16px; color: var(--muted); line-height: 1.8; }
.chronicle-promo-links { display: grid; gap: 22px; justify-items: start; }
.archive-source-link { display: inline-block; margin-top: 18px; color: var(--pine-700); text-decoration: underline; text-underline-offset: 5px; line-height: 1.8; }
@media(max-width:760px) { .chronicle-promo-inner { grid-template-columns: 1fr; gap: 24px; } .chronicle-promo { padding-block: 36px; } }
