:root {
  color-scheme: light;
  --paper: #f1eadf;
  --paper-2: #e8dfd2;
  --ink: #191817;
  --muted: #766e64;
  --line: rgba(34, 29, 25, 0.16);
  --red: #e87542;
  --red-dark: #a9431e;
  --orange-1: #f7c8ae;
  --orange-2: #efa078;
  --orange-3: #df7447;
  --orange-4: #a9431e;
  --blue: #cdd5d2;
  --black: #090b0a;
  --lime: #d9e45c;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --serif: "Songti SC", "STSong", "Noto Serif SC", serif;
  --sans: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #d8d1c7; color: var(--ink); font-family: var(--sans); }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--red-dark); outline-offset: 3px; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-frame { width: min(1920px, 100%); min-height: 100vh; margin: 0 auto; background: var(--paper); }
.topbar { height: 78px; padding: 0 3.2vw; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 30; background: color-mix(in srgb, var(--paper) 93%, transparent); backdrop-filter: blur(18px); }
.wordmark, .account-button, nav button { border: 0; background: transparent; cursor: pointer; }
.wordmark { display: flex; align-items: center; gap: 12px; padding: 0; text-align: left; }
.wordmark strong { display: block; font: 800 20px Arial, sans-serif; letter-spacing: .06em; }
.wordmark strong span { color: var(--red); }
.mark { width: 33px; height: 33px; border: 1.5px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); padding: 6px; gap: 3px; transform: rotate(4deg); }
.mark i { border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
nav { display: flex; gap: 28px; }
nav button { font-size: 13px; letter-spacing: .08em; padding: 10px 4px; border-bottom: 1px solid transparent; }
nav button:hover { border-color: var(--ink); }
.account-button { display: flex; align-items: center; gap: 9px; font-size: 12px; }
.avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #667557; color: white; }

.view { display: none; min-height: calc(100vh - 78px); }
.view.active { display: block; animation: view-in .45s ease both; }
@keyframes view-in { from { opacity: 0; transform: translateY(5px); } }
.kicker { font: 10px/1.5 var(--mono); letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }

.home-grid { height: calc(100vh - 78px); min-height: 720px; display: grid; grid-template-columns: minmax(350px, 31%) 1fr; }
.home-copy { padding: 5vh 3vw 3vh; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.home-copy h1 { margin: 3vh 0 0; font: 900 clamp(58px, 6.8vw, 116px)/.78 Arial, sans-serif; letter-spacing: -.085em; }
.home-copy h1 span { display: block; }
.home-copy h1 span:first-child { color: var(--red); }
.home-copy h1 span:last-child { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.subtitle { display: inline-block; align-self: flex-start; margin: 20px 0 24px; padding-top: 10px; border-top: 4px solid var(--lime); font: 15px var(--serif); letter-spacing: .16em; }
.roll-index { margin-top: auto; border-top: 1px solid var(--line); }
.index-head, .roll-index button { display: grid; grid-template-columns: 44px 90px 1fr; align-items: center; }
.index-head { padding: 9px 3px; font: 9px var(--mono); color: var(--muted); }
.roll-index button { width: 100%; border: 0; border-top: 1px solid var(--line); background: transparent; padding: 10px 3px; text-align: left; cursor: pointer; transition: .2s ease; }
.roll-index button:hover { padding-left: 10px; background: rgba(255,255,255,.28); }
.roll-index button span, .roll-index time { font: 10px var(--mono); color: var(--muted); }
.roll-index strong { font: 600 13px var(--serif); letter-spacing: .08em; }
.map-entry { margin-top: 18px; padding: 13px 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; display: flex; justify-content: space-between; cursor: pointer; font: 12px var(--mono); }
.stats { display: flex; gap: 30px; margin: 24px 0 0; }
.stats div { display: flex; gap: 8px; align-items: baseline; }
.stats dt { font: 8px var(--mono); color: var(--muted); }
.stats dd { margin: 0; font: 17px var(--mono); }

.roll-stage { position: relative; overflow: hidden; padding: 6vh 3vw 4vh; background: var(--black); color: #f4efe7; display: flex; flex-direction: column; gap: 8px; }
.stage-meta, .stage-footer { display: flex; justify-content: space-between; font: 9px var(--mono); letter-spacing: .13em; color: #9d9e99; }
.stage-meta { margin-bottom: 8px; }
.stage-footer { margin-top: auto; padding-top: 9px; }
.film-strip { min-height: 0; height: 0; flex: 1 1 0; position: relative; overflow: hidden; cursor: pointer; background: #151715; transform-origin: left center; animation: expose .72s cubic-bezier(.22,.8,.22,1) calc(.13s * var(--i) + .12s) both; }
@keyframes expose { from { opacity: .12; transform: scaleX(.05); filter: saturate(0); } to { opacity: 1; transform: scaleX(1); filter: saturate(1); } }
.film-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.film-strip:hover img { transform: scale(1.025); }
.film-strip .shade { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(0,0,0,.56)); }
.film-strip p { position: absolute; inset: 0; margin: 0; padding: 12px 18px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; color: white; z-index: 2; text-align: right; }
.film-strip p.dark { color: #151515; text-shadow: 0 1px 8px rgba(255,255,255,.55); }
.film-strip p strong { font: 700 clamp(15px, 1.5vw, 25px) var(--serif); letter-spacing: .09em; }
.film-strip p time { margin-top: 5px; font: 8px var(--mono); letter-spacing: .12em; }
.caption-color-control { position: absolute; top: 7px; left: 8px; z-index: 4; padding: 4px 7px; border: 1px solid rgba(255,255,255,.42); background: rgba(8,10,9,.64); color: #fff; opacity: .62; cursor: pointer; font: 8px var(--mono); letter-spacing: .05em; transition: opacity .2s ease, background .2s ease; }
.film-strip:hover .caption-color-control, .caption-color-control:focus-visible { opacity: 1; }
.film-strip p.caption-white { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.film-strip p.caption-black { color: #121212; text-shadow: 0 1px 8px rgba(255,255,255,.55); }
.film-strip.text-roll { min-height: 70px; border: 1px solid #282b28; }
.film-strip.text-roll p { position: static; height: 100%; align-items: flex-start; text-align: left; background: repeating-linear-gradient(90deg, #111 0 12px, #0a0b0a 12px 24px); }
.film-strip.text-roll em { margin-left: auto; font: 8px var(--mono); color: #81847f; }

.section-head { padding: 52px 4vw 30px; display: flex; justify-content: space-between; align-items: end; border-bottom: 1px solid var(--line); }
.section-head h2, .search-page h2 { margin: 4px 0 0; font: 700 clamp(45px, 6vw, 92px)/1 var(--serif); letter-spacing: -.05em; }
.section-head > p { color: var(--muted); font-size: 12px; }
.legend { display: flex; flex-wrap: wrap; gap: 18px; font-size: 11px; color: var(--muted); }
.legend span { display: flex; align-items: center; gap: 7px; }
.legend i { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.legend .visit-1 { background: var(--orange-1); }
.legend .visit-2 { background: var(--orange-2); }
.legend .visit-3 { background: var(--orange-3); }
.legend .visit-4 { background: var(--orange-4); }
.map-layout { display: grid; grid-template-columns: 1.7fr .8fr; min-height: 660px; }
.map-canvas { position: relative; padding: 38px 4vw 30px; background: radial-gradient(circle at 42% 45%, #f7f1e7 0, var(--paper) 60%); }
.map-toolbar { min-height: 38px; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font: 9px var(--mono); }
.map-toolbar label { color: var(--muted); }
.map-toolbar select, .map-toolbar button { height: 32px; border: 1px solid var(--line); background: rgba(255,255,255,.35); padding: 0 10px; color: var(--ink); }
.map-toolbar button { cursor: pointer; }
.map-toolbar span { margin-left: auto; color: var(--muted); text-align: right; }
.map-toolbar span[data-kind="ready"] { color: #526348; }
.map-toolbar span[data-kind="error"] { color: #9d3d28; }
.amap-container { width: 100%; height: 570px; overflow: hidden; background: #e9e5dc; }
.amap-container[hidden], #map-fallback[hidden] { display: none; }
.map-notice { display: flex; justify-content: space-between; gap: 20px; padding: 10px 14px; border: 1px solid #c9a770; background: #fff7df; font-size: 11px; color: #705933; }
.province-field { width: min(760px, 100%); margin: 32px auto 48px; display: grid; grid-template-columns: repeat(7, minmax(64px, 1fr)); gap: 6px; }
.province { min-height: 48px; border: 1px solid rgba(78,83,80,.2); background: #e5e5df; cursor: pointer; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 3px; transition: .22s ease; }
.province:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(60,45,35,.1); }
.province span { font: 600 12px var(--serif); }.province small { font: 8px var(--mono); color: #655f58; }
.province.visited-1 { background: var(--orange-1); }
.province.visited-2 { background: var(--orange-2); }
.province.visited-3 { background: var(--orange-3); color: white; }
.province.visited-4 { background: var(--orange-4); color: white; }
.province.visited-3 small, .province.visited-4 small { color: #fff0e9; }
.map-source { position: absolute; bottom: 18px; left: 4vw; right: 4vw; font: 9px var(--mono); color: var(--muted); }
.map-side { padding: 48px 3vw; border-left: 1px solid var(--line); background: rgba(255,255,255,.18); }
.map-side h3 { margin: 8px 0; font: 700 52px var(--serif); }
.map-side > p:not(.kicker) { line-height: 1.9; color: var(--muted); font-size: 13px; }
.city-list { margin: 30px 0; border-top: 1px solid var(--line); }
.city-list button { width: 100%; padding: 16px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; display: grid; grid-template-columns: 1fr 1.4fr auto; text-align: left; cursor: pointer; }
.city-list button:disabled { opacity: .45; cursor: default; }
.city-list span { font: 600 14px var(--serif); }.city-list small, .city-list b { font: 9px var(--mono); color: var(--muted); }
.city-list-empty { padding: 18px 0; color: var(--muted); font-size: 11px; }
.solid-button { border: 0; padding: 14px 18px; background: var(--ink); color: white; cursor: pointer; display: inline-flex; justify-content: space-between; gap: 30px; }
.outline-button { border: 1px solid var(--line); padding: 10px 14px; background: transparent; color: var(--ink); cursor: pointer; }
.text-button { border: 0; border-bottom: 1px solid currentColor; padding: 7px 0; background: transparent; color: var(--muted); cursor: pointer; }

.back-button { margin: 25px 4vw; border: 0; background: transparent; cursor: pointer; font: 10px var(--mono); }
.trip-hero { height: min(56vh, 590px); margin: 0 4vw; position: relative; overflow: hidden; background: #111; }
.trip-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72); }
.trip-hero-copy { position: absolute; inset: 0; padding: 5vw; display: flex; flex-direction: column; justify-content: end; color: white; }
.trip-hero-copy .kicker { color: #ddd2c6; }.trip-hero-copy h2 { margin: 5px 0; font: 800 clamp(55px, 8vw, 130px)/.9 var(--serif); letter-spacing: -.06em; }
.trip-hero-copy > p { font: 11px var(--mono); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag-row span { padding: 6px 11px; border: 1px solid color-mix(in srgb, var(--tag-color) 72%, white); border-radius: 999px; background: color-mix(in srgb, var(--tag-color) 78%, transparent); color: white; font-size: 10px; }
.tag-editor-toggle { align-self: flex-start; margin-top: 10px; padding: 5px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); background: transparent; color: white; cursor: pointer; font: 9px var(--mono); }
.tag-editor { position: absolute; right: 3vw; bottom: 3vw; z-index: 5; width: min(430px, calc(100% - 6vw)); padding: 16px; border: 1px solid rgba(255,255,255,.26); background: rgba(13,14,13,.94); box-shadow: 0 18px 48px rgba(0,0,0,.3); }
.tag-editor[hidden] { display: none; }
#tag-editor-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.tag-edit-item { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; font-size: 11px; }
.tag-edit-item input[type="color"] { width: 26px; height: 24px; padding: 0; border: 0; background: transparent; }
.tag-edit-item button { border: 0; background: transparent; color: #d9d2ca; cursor: pointer; font-size: 10px; }
.tag-edit-item button:disabled { color: #77736e; cursor: default; }
#tag-form { display: grid; grid-template-columns: 1fr 86px auto; align-items: end; gap: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.16); }
#tag-form label { display: flex; flex-direction: column; gap: 4px; font: 8px var(--mono); color: #aaa49c; }
#tag-form input { min-width: 0; height: 34px; border: 1px solid rgba(255,255,255,.24); background: #1d1e1c; color: white; padding: 6px 8px; }
#tag-form input[type="color"] { width: 100%; padding: 3px; }
#tag-form button { height: 34px; border: 0; background: var(--red); color: white; padding: 0 12px; cursor: pointer; font-size: 10px; }
.tag-editor > small { display: block; margin-top: 10px; color: #918b84; font: 8px var(--mono); }
.trip-body { display: grid; grid-template-columns: 260px 1fr; gap: 7vw; padding: 60px 7vw 90px; }
.trip-body aside dl div { padding: 14px 0; border-top: 1px solid var(--line); }
.trip-body dt { font: 600 13px var(--serif); }.trip-body dd { margin: 6px 0 0; font: 9px/1.6 var(--mono); color: var(--muted); }
.trip-actions { display: flex; flex-direction: column; gap: 7px; margin-top: 30px; }.trip-actions button { text-align: left; border: 0; background: transparent; padding: 7px 0; cursor: pointer; }
.story { max-width: 1020px; }
.story-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 12px; }
.story-head .kicker { margin: 0; }
.markdown-body { max-width: 820px; }
.markdown-body h1 { margin: 8px 0 22px; font: 600 clamp(32px, 4vw, 59px)/1.15 var(--serif); }
.markdown-body h2 { margin: 36px 0 12px; font: 600 28px/1.3 var(--serif); }
.markdown-body h3 { margin: 30px 0 10px; font: 600 22px/1.4 var(--serif); }
.markdown-body p, .markdown-body li { line-height: 2; color: #4f4942; }
.markdown-body ul, .markdown-body ol { padding-left: 24px; }
.markdown-body code { padding: 2px 5px; background: rgba(60,54,47,.08); font: 12px/1.6 var(--mono); }
.markdown-body pre { overflow: auto; padding: 18px; border: 1px solid var(--line); background: #252522; color: #eee9df; }
.markdown-body pre code { padding: 0; background: transparent; color: inherit; }
.markdown-body a { color: var(--red); text-underline-offset: 3px; }
.story-editor { margin: 22px 0 36px; padding: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.story-editor label { display: block; margin: 12px 0 7px; font: 9px var(--mono); color: var(--muted); }
.story-editor textarea { width: 100%; min-height: 360px; resize: vertical; padding: 16px; border: 1px solid var(--line); background: #fbf6ed; color: var(--ink); font: 13px/1.75 var(--mono); }
.editor-toolbar { display: flex; flex-wrap: wrap; gap: 7px; }
.editor-toolbar span { padding: 5px 8px; border: 1px solid var(--line); background: rgba(255,255,255,.35); font: 8px var(--mono); color: var(--muted); }
.editor-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 12px; }
.editor-actions p { margin: 0 auto 0 0; font-size: 10px; color: var(--muted); }
.story-editor > small { display: block; margin-top: 10px; color: var(--muted); font: 8px/1.6 var(--mono); }
blockquote { margin: 34px 0; padding: 18px 24px; border-left: 3px solid var(--red); font: 20px/1.7 var(--serif); background: rgba(255,255,255,.22); }
.gallery-toolbar { margin-top: 45px; padding: 13px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font: 9px var(--mono); }
.gallery-toolbar button { border: 0; background: transparent; padding: 5px 10px; cursor: pointer; }.gallery-toolbar button.active { border-bottom: 2px solid var(--red); }
.photo-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.photo-grid figure { margin: 0; background: #e3dacd; }.photo-grid figure.wide { grid-row: span 2; }.photo-grid img { width: 100%; height: 260px; object-fit: cover; }.photo-grid .wide img { height: 100%; min-height: 532px; }.photo-grid figcaption { padding: 10px; font: 9px var(--mono); }

.archive-list { padding: 20px 4vw 80px; }
.archive-list button { width: 100%; display: grid; grid-template-columns: 120px 150px 1fr 120px; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 24px 8px; text-align: left; cursor: pointer; }
.archive-list button:hover { background: rgba(255,255,255,.25); }
.archive-list time { font: 44px var(--serif); }.archive-list span, .archive-list em { font: 10px var(--mono); color: var(--muted); }.archive-list strong { font: 600 30px var(--serif); }

.search-page { padding: 11vh 8vw; max-width: 1100px; margin: auto; }
.search-page label { margin-top: 45px; display: flex; align-items: center; border-bottom: 2px solid var(--ink); }
.search-page input { flex: 1; padding: 18px 0; border: 0; background: transparent; font: 24px var(--serif); outline: none; }
kbd { font: 9px var(--mono); padding: 5px 7px; border: 1px solid var(--line); }
.search-chips { display: flex; gap: 8px; margin: 22px 0 70px; }.search-chips button { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 6px 13px; cursor: pointer; }
.search-empty { min-height: 260px; display: grid; place-items: center; align-content: center; color: var(--muted); text-align: center; }.search-empty span { font-size: 60px; }.search-empty p { margin-bottom: 4px; }.search-empty small { font: 9px var(--mono); }

.auth-layout { min-height: calc(100vh - 78px); display: grid; grid-template-columns: 1.05fr .95fr; }
.auth-intro { padding: 11vh 7vw; border-right: 1px solid var(--line); background: radial-gradient(circle at 35% 28%, #faf2e5 0, var(--paper) 65%); }
.auth-intro h2 { margin: 8px 0 28px; font: 700 clamp(52px, 7vw, 108px)/.92 var(--serif); letter-spacing: -.06em; }
.auth-intro > p:not(.kicker) { max-width: 570px; color: var(--muted); line-height: 2; }
.auth-intro dl { max-width: 570px; margin-top: 50px; }
.auth-intro dl div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); }
.auth-intro dt { font: 600 15px var(--serif); }
.auth-intro dd { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.auth-card { align-self: center; width: min(460px, calc(100% - 8vw)); margin: 8vh auto; padding: 34px; border: 1px solid var(--line); background: rgba(255,255,255,.28); box-shadow: 0 24px 70px rgba(72,58,43,.08); }
.auth-card h3 { margin: 5px 0 30px; font: 600 34px var(--serif); }
.auth-card form > label { display: block; margin-bottom: 7px; font: 9px var(--mono); color: var(--muted); }
.auth-card input { width: 100%; height: 48px; margin-bottom: 14px; padding: 0 13px; border: 1px solid var(--line); background: #fbf6ed; }
.auth-card form > .solid-button { width: 100%; justify-content: center; }
.auth-card form > p:not(.kicker) { margin-bottom: 20px; color: var(--muted); font-size: 11px; }
.auth-status { margin: 20px 0 8px; padding: 10px 12px; background: rgba(94,100,82,.08); font-size: 10px; line-height: 1.7; }
.auth-status[data-kind="ready"] { color: #43553d; background: #e1ead8; }
.auth-status[data-kind="error"] { color: #923b28; background: #f0d9cf; }
.auth-status[data-kind="notice"] { color: #775b2a; background: #f5e7c9; }
.auth-card > small { color: var(--muted); font: 8px/1.6 var(--mono); }
.admin-head-actions { display: flex; align-items: center; gap: 10px; }
.admin-head-actions > span { color: var(--muted); font: 8px var(--mono); }

.admin-grid { padding: 30px 4vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.usage-card { padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.2); }.usage-card p { margin: 0 0 20px; font-size: 12px; }.usage-card strong { font: 42px var(--mono); }.usage-card strong small { font-size: 12px; color: var(--muted); }.usage-card div { height: 4px; background: #ddd4c7; margin: 20px 0 9px; }.usage-card i { display: block; height: 100%; background: var(--red); }.usage-card > span { font-size: 10px; color: var(--muted); }
.upload-panel { margin: 0 4vw 30px; padding: 32px; border: 1px dashed #9f9486; display: flex; align-items: center; justify-content: space-between; }.upload-panel h3 { margin: 5px 0; font: 22px var(--serif); }.upload-panel p:not(.kicker) { font-size: 11px; color: var(--muted); }.upload-panel button { border: 0; background: var(--ink); color: white; padding: 14px 20px; cursor: pointer; }
.admin-table { margin: 0 4vw 80px; border-top: 1px solid var(--line); }.table-head, .admin-table > button { display: grid; grid-template-columns: 1.5fr .7fr 1fr .5fr .8fr; align-items: center; gap: 20px; padding: 13px 8px; border: 0; border-bottom: 1px solid var(--line); width: 100%; text-align: left; background: transparent; }.table-head { font: 9px var(--mono); color: var(--muted); }.admin-table > button { cursor: pointer; }.status { justify-self: start; padding: 4px 8px; border-radius: 999px; font-size: 9px; }.status.live { background: #dbe7ce; color: #405235; }.status.draft { background: #e8d8bd; color: #71572e; }

footer { padding: 18px 3.2vw; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font: 8px var(--mono); color: var(--muted); }
#toast { position: fixed; left: 50%; bottom: 28px; z-index: 100; transform: translate(-50%, 20px); padding: 11px 16px; background: #171817; color: white; font-size: 11px; opacity: 0; pointer-events: none; transition: .25s ease; }
#toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .topbar nav { display: none; }
  .home-grid, .map-layout, .trip-body { grid-template-columns: 1fr; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-grid { height: auto; }
  .home-copy { min-height: 750px; border-right: 0; }
  .roll-stage { min-height: 720px; }
  .map-side { border-left: 0; border-top: 1px solid var(--line); }
  .province-field { grid-template-columns: repeat(4, 1fr); }
  .map-toolbar { flex-wrap: wrap; }
  .map-toolbar span { width: 100%; margin-left: 0; text-align: left; }
  .amap-container { height: 520px; }
  .admin-grid { grid-template-columns: 1fr; }
  .archive-list button { grid-template-columns: 70px 100px 1fr; }.archive-list em { display: none; }
  .editor-actions { align-items: stretch; flex-wrap: wrap; }
  .editor-actions p { width: 100%; }
  .admin-head-actions { align-items: flex-end; flex-direction: column; }
}

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