@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@500;600;700&display=swap");
:root {
  --ink: #243d36;
  --muted: #778078;
  --red: #963e33;
  --paper: #faf9f5;
  --line: #e4e7df;
  --green: #35594c;
  --serif: "Noto Serif SC", "Songti SC", SimSun, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #bc9f58;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
svg.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.4;
}
h1,
h2 {
  font-family: var(--serif);
}
h2 {
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 0;
}
h3 {
  font-size: 18px;
}
p {
  margin-bottom: 0;
}
.site-header {
  height: 92px;
  padding: 0 5.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(250, 249, 245, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-seal {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 46px;
  width: 45px;
  text-align: center;
  background: var(--red);
  color: white;
  border-radius: 3px;
  position: relative;
}
.brand-seal:after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid #ffffff70;
}
.brand strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  line-height: 1.3;
}
.brand small {
  font-size: 9px;
  letter-spacing: 2px;
}
.site-header nav {
  display: flex;
  gap: 36px;
  align-self: stretch;
}
.site-header nav a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
}
.site-header nav a.active {
  color: var(--red);
  font-weight: 600;
}
.site-header nav a.active:after {
  content: "";
  position: absolute;
  bottom: 21px;
  left: calc(50% - 9px);
  height: 2px;
  width: 18px;
  background: var(--red);
}
.trip-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
.trip-link b {
  font-size: 11px;
  background: #eee9df;
  border-radius: 100%;
  width: 22px;
  text-align: center;
}
.hero {
  height: 565px;
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
  background: #35584c;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(13, 39, 32, 0.43);
  z-index: -1;
}
.hero-copy {
  max-width: 1280px;
  margin: auto;
  padding: 70px 5% 0;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow.light {
  color: #f5ead1;
  font-size: 12px;
  letter-spacing: 4px;
}
.hero h1 {
  font-size: 64px;
  letter-spacing: 5px;
  font-weight: 500;
  line-height: 1.28;
  margin: 24px 0;
}
.hero-sub {
  font-size: 14px;
  line-height: 2;
  color: #fffdf0d9;
}
.hero-copy .button {
  margin-top: 30px;
}
.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 24px;
  border-radius: 3px;
  min-height: 46px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--red);
  color: white;
}
.button.primary:hover {
  background: #7d3028;
}
.button.cream {
  background: #f5efdf;
  color: #324339;
}
.button.outline {
  border-color: #cbd2c6;
  background: transparent;
}
.button.small {
  padding: 8px 13px;
  min-height: 39px;
  font-size: 12px;
  gap: 6px;
}
.wide {
  width: 100%;
}
.hero-caption {
  position: absolute;
  bottom: 58px;
  right: 6%;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.hero-caption small {
  font-size: 10px;
  color: #e0e7df;
}
.hero-index {
  position: absolute;
  top: 47px;
  right: 6%;
  font-size: 10px;
  letter-spacing: 2px;
  color: #fff9;
  line-height: 2;
  text-align: right;
}
.page-wrap {
  max-width: 1260px;
  margin: auto;
  padding: 0 46px;
}
.search-strip {
  background: #fff;
  box-shadow: 0 7px 30px #26362b0a;
  position: relative;
  margin-top: -32px;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 5px;
  z-index: 2;
}
.search-field {
  display: flex;
  gap: 17px;
  align-items: center;
  flex: 1;
}
.search-field > span:last-child {
  width: 100%;
}
.search-strip small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}
.search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  outline-offset: 4px;
  color: var(--ink);
}
.area-field {
  border-left: 1px solid var(--line);
  padding-left: 25px;
  min-width: 220px;
}
.area-field select {
  border: 0;
  background: transparent;
  color: var(--ink);
  width: 100%;
}
.theme-section {
  padding: 58px 0 55px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 28px;
}
.section-heading > p {
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 3px;
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.theme-tile {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 10px 19px;
  gap: 8px;
  transition: 0.2s;
}
.theme-tile:hover,
.theme-tile.active {
  background: #efece3;
  border-color: #c8b79b;
  transform: translateY(-3px);
}
.theme-tile .icon {
  width: 31px;
  height: 31px;
  color: #7d5943;
  margin-bottom: 4px;
  stroke-width: 1.3;
}
.theme-tile small {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1px;
}
.discovery-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.discovery-actions select {
  background: transparent;
  border: 0;
  font-size: 12px;
}
.text-button {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  color: var(--red);
  font-size: 12px;
}
.text-button[aria-pressed="true"] {
  font-weight: 700;
}
.text-button .icon {
  width: 16px;
  height: 16px;
}
.result-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: -13px;
  margin-bottom: 18px;
}
.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 23px;
}
.place-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  min-width: 0;
}
.place-card:hover {
  box-shadow: 0 10px 30px #20332710;
  transform: translateY(-3px);
}
.card-media {
  height: 209px;
  position: relative;
  background: #dce2d9;
  overflow: hidden;
}
.card-media .photo-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  display: block;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.place-card:hover .card-media img {
  transform: scale(1.04);
}
.card-area {
  position: absolute;
  bottom: 12px;
  left: 14px;
  border-radius: 2px;
  background: #162e28a8;
  color: white;
  padding: 2px 8px;
  font-size: 10px;
  pointer-events: none;
}
.save-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: #fffef4ec;
  border: 0;
  border-radius: 100%;
  color: #475347;
}
.save-button .icon {
  width: 17px;
  height: 17px;
}
.save-button.saved {
  color: var(--red);
}
.save-button.saved .icon {
  fill: #963e3328;
}
.card-body {
  padding: 20px;
}
.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.card-title {
  font-size: 18px;
  letter-spacing: 0.2px;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-weight: 600;
  line-height: 1.5;
}
.score {
  white-space: nowrap;
  color: #a27638;
  font-size: 14px;
}
.score small {
  font-size: 10px;
  color: var(--muted);
}
.card-tagline {
  font-size: 11px;
  color: var(--muted);
  margin: 8px 0 13px;
  min-height: 19px;
}
.card-info {
  display: flex;
  gap: 16px;
  color: #758075;
  font-size: 11px;
  flex-wrap: wrap;
}
.card-info span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.card-info .icon {
  width: 13px;
  height: 13px;
}
.card-bottom {
  border-top: 1px solid #eef0e9;
  margin-top: 16px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.price {
  font-size: 14px;
  color: var(--red);
  font-weight: 500;
}
.price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.center {
  text-align: center;
  margin-top: 30px;
}
.center .button {
  min-width: 185px;
  font-size: 12px;
}
.route-section {
  padding: 70px 0 60px;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.route-card {
  position: relative;
  min-height: 280px;
  border: 0;
  text-align: left;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.route-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.route-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #122e278c;
  z-index: -1;
}
.route-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 10px 0;
}
.route-card p {
  font-size: 11px;
  color: #e3e7dd;
}
.route-card .route-label {
  font-size: 10px;
  letter-spacing: 2px;
}
.route-card .route-arrow {
  position: absolute;
  right: 24px;
  bottom: 28px;
}
.evidence-banner {
  padding: 34px;
  background: #eaece3;
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 65px;
  border-radius: 4px;
}
.evidence-mark .icon {
  width: 56px;
  height: 56px;
  stroke-width: 0.9;
}
.evidence-banner h2 {
  font-size: 24px;
  margin-bottom: 9px;
}
.evidence-banner p:not(.eyebrow) {
  font-size: 12px;
  color: #717b6e;
}
.evidence-banner > a {
  margin-left: auto;
  white-space: nowrap;
}
.evidence-banner .eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
}
.site-footer {
  padding: 35px 6%;
  background: #f0f0e9;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.footer-brand span {
  font-size: 11px;
  color: var(--muted);
}
.site-footer > p {
  font-size: 10px;
  color: var(--muted);
}
.footer-stamp {
  font-family: var(--serif);
  border: 1px solid #ac7768;
  color: #a36b5c;
  padding: 7px;
  font-size: 11px;
  line-height: 1.6;
  transform: rotate(-3deg);
}
.subpage {
  padding-top: 49px;
  padding-bottom: 65px;
  min-height: 75vh;
}
.page-title {
  margin-bottom: 40px;
}
.page-title h1 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 12px;
}
.page-title > p:last-child {
  color: var(--muted);
}
.recommend-layout {
  display: grid;
  grid-template-columns: 305px 1fr;
  gap: 34px;
  align-items: start;
}
.preference-panel {
  background: #f0f0e9;
  border: 1px solid var(--line);
  padding: 27px;
  border-radius: 5px;
}
.preference-panel fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 25px;
}
.preference-panel legend {
  font-weight: 600;
  margin-bottom: 8px;
}
.preference-panel legend span {
  font-size: 10px;
  color: var(--red);
  margin-right: 7px;
  font-weight: 400;
}
.field-hint {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 9px;
}
.preference-panel select {
  width: 100%;
  border: 1px solid #d9ddd2;
  background: #fff;
  padding: 10px;
  border-radius: 3px;
  font-size: 12px;
}
.preference-themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.theme-check {
  position: relative;
}
.theme-check input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.theme-check span {
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid #d9ddd2;
  padding: 8px 4px;
  font-size: 12px;
  border-radius: 3px;
}
.theme-check input:checked + span {
  color: var(--red);
  border-color: var(--red);
  background: #f7ece7;
}
.theme-check input:focus-visible + span {
  outline: 2px solid #bc9f58;
  outline-offset: 2px;
}
.check-line {
  display: flex;
  gap: 8px;
  align-items: start;
  font-size: 11px;
  margin: 4px 0 22px;
}
.check-line input {
  accent-color: var(--red);
  margin-top: 4px;
}
.form-status {
  font-size: 11px;
  margin-top: 12px;
  color: var(--red);
}
.recommend-intro {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px dashed #ced6c9;
  padding: 50px;
  border-radius: 5px;
}
.large-icon .icon {
  width: 70px;
  height: 70px;
  stroke-width: 0.8;
  margin-bottom: 25px;
  color: #859b88;
}
.recommend-intro h2 {
  font-size: 25px;
}
.recommend-intro p {
  max-width: 380px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 17px;
}
.method-tags {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.method-tags span {
  font-size: 11px;
  padding: 5px 12px;
  background: #eeeee5;
}
.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.two-cols .card-media {
  height: 175px;
}
.two-cols .card-body {
  padding: 17px;
}
.two-cols .card-title {
  font-size: 16px;
}
.recommend-summary {
  margin-bottom: 23px;
}
.recommend-summary h2 {
  font-size: 24px;
}
.recommend-summary p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.match-label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 10px;
  border-radius: 2px;
  padding: 4px 8px;
  color: #274639;
  background: #f7f5e8;
}
.reasons {
  font-size: 11px;
  color: #647568;
  padding: 12px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.reasons li {
  margin: 4px 0;
  padding-left: 13px;
  position: relative;
}
.reasons li:before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--red);
}
.pending-label {
  font-size: 10px;
  color: #9a7542;
  background: #f6f0df;
  padding: 5px 8px;
  margin-top: 9px;
}
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 65px 22px;
  background: #f0f0e9;
  border: 1px dashed #d6d9cf;
  border-radius: 5px;
}
.empty-state h2 {
  font-size: 25px;
  margin-bottom: 12px;
}
.empty-state p {
  color: var(--muted);
  font-size: 13px;
  max-width: 480px;
  margin: 0 auto 23px;
}
.trip-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 30px;
  align-items: start;
}
.trip-toolbar {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trip-stop {
  display: grid;
  grid-template-columns: 27px 100px 1fr;
  gap: 18px;
  position: relative;
  margin-bottom: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px;
}
.stop-number {
  color: var(--red);
  font-family: var(--serif);
  font-size: 25px;
}
.trip-stop img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
}
.stop-main {
  min-width: 0;
}
.stop-main h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.stop-main p {
  font-size: 11px;
  color: var(--muted);
}
.stop-controls {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.stop-controls button {
  border: 0;
  background: transparent;
  padding: 2px;
  color: var(--muted);
  font-size: 11px;
}
.stop-controls button:hover {
  color: var(--red);
}
.leg {
  font-size: 11px;
  color: var(--muted);
  margin: -9px 0 14px 43px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.leg .icon {
  width: 15px;
  height: 15px;
}
.summary-panel {
  background: #edf0e7;
  border: 1px solid #dfe3d8;
  padding: 25px;
  border-radius: 5px;
  position: sticky;
  top: 115px;
}
.summary-panel h2 {
  font-size: 22px;
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 11px 0;
  font-size: 12px;
}
.summary-row strong {
  font-size: 19px;
  font-weight: 500;
}
.notice {
  font-size: 11px;
  padding: 13px;
  background: #f8f2e5;
  color: #8b6b36;
  line-height: 1.8;
  margin: 15px 0;
}
.summary-panel > p {
  font-size: 11px;
  color: var(--muted);
}
.spatial-plot {
  height: 200px;
  width: 100%;
  background: #e2e8dd;
  margin: 16px 0 5px;
  border-radius: 4px;
}
.plot-caption {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 18px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.stat-box {
  padding: 24px;
  background: #f0f1e9;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.stat-box strong {
  font-size: 40px;
  font-family: Georgia, serif;
  font-weight: 400;
  display: block;
}
.stat-box span {
  font-size: 12px;
}
.stat-box small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 8px;
}
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.chart-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 28px;
}
.chart-panel h2 {
  font-size: 23px;
  margin-bottom: 8px;
}
.chart-panel > p {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}
.bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 42px;
  gap: 13px;
  align-items: center;
  margin: 18px 0;
  font-size: 12px;
}
.bar-track {
  height: 9px;
  background: #edf0e9;
  border-radius: 1px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #78917e;
  border-radius: 1px;
}
.bar-row:nth-child(2n) .bar-fill {
  background: #b69b6b;
}
.bar-row > span:last-child {
  text-align: right;
  font-size: 11px;
  color: var(--muted);
}
.word-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.word-tags span {
  background: #f2f0e7;
  padding: 6px 13px;
  border-radius: 2px;
  font-size: 12px;
}
.word-tags small {
  margin-left: 7px;
  color: var(--muted);
}
.data-note {
  margin-top: 28px;
  padding: 25px 30px;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  background: #f2f0e8;
}
.data-note h3 {
  color: var(--ink);
  font-size: 17px;
  margin: 0 0 12px;
}
.data-note ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.data-note li {
  margin: 6px 0;
}
dialog {
  border: 0;
  padding: 0;
  border-radius: 7px;
  max-width: 880px;
  width: calc(100% - 40px);
  max-height: 90vh;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 80px #0003;
}
dialog::backdrop {
  background: #142b267d;
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: sticky;
  top: 15px;
  float: right;
  margin: 15px 15px -53px 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 100%;
  background: #fffffff0;
  z-index: 2;
}
.detail-hero {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.detail-body {
  padding: 32px 38px;
}
.detail-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.detail-heading h2 {
  font-size: 29px;
}
.detail-body .address {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 23px 0;
}
.detail-facts small {
  font-size: 10px;
  color: var(--muted);
  display: block;
}
.detail-facts strong {
  font-size: 17px;
  font-weight: 500;
}
.detail-body h3 {
  margin: 24px 0 10px;
  font-size: 17px;
}
.detail-body > p,
.detail-body details p {
  font-size: 13px;
  color: #657066;
  line-height: 2;
}
.detail-body details {
  font-size: 12px;
  color: #637267;
  margin: 15px 0;
}
.detail-body summary {
  cursor: pointer;
}
.detail-source {
  font-size: 11px;
  color: var(--muted);
  margin-top: 23px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.detail-source a {
  color: var(--red);
}
.review {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.review p {
  color: #687168;
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}
.review small {
  color: var(--muted);
  font-size: 10px;
}
.review-score {
  color: #a27638;
  font-size: 12px;
  margin-right: 12px;
}
#confirm-dialog {
  max-width: 430px;
  padding: 30px;
}
#confirm-dialog h2 {
  font-size: 23px;
  margin-bottom: 13px;
}
#confirm-dialog p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 25px;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 12px 24px;
  background: #243d36;
  color: white;
  border-radius: 4px;
  box-shadow: 0 5px 25px #0002;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  font-size: 13px;
  max-width: 90vw;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.loading-state {
  padding: 90px;
  text-align: center;
  color: var(--muted);
  min-height: 50vh;
}
.skip-link {
  position: fixed;
  left: 10px;
  top: -80px;
  z-index: 100;
  background: white;
  padding: 10px;
}
.skip-link:focus {
  top: 10px;
}
@media (min-width: 1500px) {
  .hero-copy {
    padding-left: 46px;
  }
  .hero {
    height: 600px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-copy {
    padding-top: 74px;
  }
}
@media (max-width: 1000px) {
  .site-header {
    padding: 0 4%;
    gap: 20px;
  }
  .site-header nav {
    gap: 25px;
  }
  .page-wrap {
    padding-left: 28px;
    padding-right: 28px;
  }
  .place-grid {
    gap: 18px;
  }
  .card-media {
    height: 175px;
  }
  .card-body {
    padding: 15px;
  }
  .card-title {
    font-size: 16px;
  }
  .section-heading > p {
    max-width: 200px;
  }
  .search-strip {
    gap: 15px;
    padding: 20px;
  }
  .area-field {
    min-width: 190px;
    padding-left: 15px;
  }
  .search-strip .button {
    padding: 12px 15px;
  }
  .recommend-layout {
    grid-template-columns: 260px 1fr;
    gap: 22px;
  }
  .preference-panel {
    padding: 20px;
  }
  .two-cols {
    grid-template-columns: 1fr;
  }
  .trip-layout {
    grid-template-columns: 1fr;
  }
  .summary-panel {
    position: static;
  }
  .route-card {
    padding: 20px;
    min-height: 250px;
  }
  .route-card h3 {
    font-size: 19px;
  }
  .evidence-banner {
    gap: 18px;
    padding: 25px;
  }
  .evidence-mark {
    display: none;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 13px;
  }
  .site-header {
    height: 110px;
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 20px 0;
    align-content: space-between;
  }
  .brand-seal {
    font-size: 23px;
    line-height: 36px;
    width: 35px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand small {
    font-size: 7px;
  }
  .brand {
    gap: 9px;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    height: 42px;
    justify-content: center;
    gap: 40px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .site-header nav a.active:after {
    bottom: 0;
  }
  .trip-link {
    font-size: 11px;
    gap: 5px;
  }
  .trip-link .icon {
    width: 17px;
  }
  .hero {
    height: 505px;
  }
  .hero-copy {
    padding: 53px 26px 0;
  }
  .hero h1 {
    font-size: 50px;
    letter-spacing: 3px;
    margin: 25px 0;
  }
  .hero-sub {
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .hero-copy .button {
    font-size: 12px;
    padding: 11px 18px;
    margin-top: 27px;
  }
  .hero-caption {
    bottom: 37px;
    right: 23px;
    font-size: 10px;
  }
  .hero-caption small {
    font-size: 8px;
  }
  .hero-index {
    top: 25px;
    right: 23px;
    font-size: 7px;
  }
  .hero-shade {
    background: #102e286b;
  }
  .page-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .search-strip {
    margin-top: -18px;
    flex-wrap: wrap;
    padding: 17px 16px;
    gap: 14px;
  }
  .search-field {
    flex-basis: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .area-field {
    border: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
  }
  .area-field select {
    font-size: 11px;
  }
  .search-strip .button {
    font-size: 11px;
    padding: 10px 12px;
    min-height: 42px;
    gap: 6px;
  }
  .search-strip .button .icon {
    width: 15px;
  }
  .theme-section {
    padding: 39px 0;
  }
  .section-heading {
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .section-heading > p {
    display: none;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 9px;
  }
  .theme-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .theme-tile {
    padding: 16px 8px 12px;
    font-size: 12px;
    gap: 5px;
  }
  .theme-tile .icon {
    width: 26px;
    height: 26px;
  }
  .theme-tile small {
    font-size: 7px;
  }
  .place-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-media {
    height: 230px;
  }
  .card-body {
    padding: 19px;
  }
  .card-title {
    font-size: 19px;
  }
  .card-tagline {
    font-size: 11px;
  }
  .card-info {
    font-size: 11px;
  }
  .discovery-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
  .discovery-actions .text-button,
  .discovery-actions select {
    font-size: 10px;
  }
  .result-meta {
    margin-top: -5px;
    font-size: 10px;
  }
  .route-section {
    padding: 45px 0;
  }
  .route-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .route-card {
    min-height: 245px;
    padding: 24px;
  }
  .route-card h3 {
    font-size: 23px;
  }
  .evidence-banner {
    padding: 24px;
    display: block;
    margin-bottom: 40px;
  }
  .evidence-banner h2 {
    font-size: 23px;
  }
  .evidence-banner > a {
    margin-top: 15px;
  }
  .site-footer {
    padding: 28px 22px;
    flex-wrap: wrap;
    gap: 22px;
  }
  .footer-brand strong {
    font-size: 21px;
  }
  .site-footer > p {
    order: 3;
    width: 100%;
    font-size: 9px;
  }
  .footer-stamp {
    font-size: 9px;
  }
  .subpage {
    padding-top: 31px;
    padding-bottom: 40px;
  }
  .page-title {
    margin-bottom: 28px;
  }
  .page-title h1 {
    font-size: 29px;
  }
  .page-title > p:last-child {
    font-size: 12px;
  }
  .recommend-layout {
    grid-template-columns: 1fr;
  }
  .preference-panel {
    padding: 23px;
  }
  .preference-themes {
    grid-template-columns: repeat(3, 1fr);
  }
  .preference-panel fieldset {
    margin-bottom: 20px;
  }
  .recommend-intro {
    min-height: 330px;
    padding: 28px;
  }
  .recommend-intro h2 {
    font-size: 21px;
  }
  .two-cols .card-media {
    height: 210px;
  }
  .two-cols .card-title {
    font-size: 18px;
  }
  .trip-toolbar {
    align-items: flex-start;
    gap: 12px;
  }
  .trip-toolbar .button-row {
    gap: 7px;
  }
  .trip-toolbar .button {
    font-size: 10px;
    padding: 7px 10px;
  }
  .trip-stop {
    grid-template-columns: 20px 68px 1fr;
    gap: 10px;
    padding: 15px;
  }
  .trip-stop img {
    width: 68px;
    height: 80px;
  }
  .stop-number {
    font-size: 19px;
  }
  .stop-main h3 {
    font-size: 15px;
  }
  .stop-controls {
    gap: 9px;
  }
  .leg {
    font-size: 10px;
    margin-left: 16px;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-box {
    padding: 19px;
  }
  .stat-box strong {
    font-size: 32px;
  }
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .chart-panel {
    padding: 22px;
  }
  .chart-panel h2 {
    font-size: 22px;
  }
  .bar-row {
    grid-template-columns: 75px 1fr 34px;
    gap: 10px;
  }
  .data-note {
    padding: 23px;
    font-size: 11px;
  }
  .detail-hero {
    height: 230px;
  }
  .detail-body {
    padding: 23px;
  }
  .detail-heading {
    display: block;
  }
  .detail-heading h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .detail-heading .button-row {
    gap: 8px;
  }
  .detail-facts {
    gap: 10px;
  }
  .detail-facts strong {
    font-size: 13px;
  }
  .detail-body > p {
    font-size: 12px;
  }
  .detail-source {
    overflow-wrap: anywhere;
  }
  .loading-state {
    padding: 80px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .trip-toolbar,
  .stop-controls,
  .button,
  .toast,
  .skip-link,
  dialog {
    display: none !important;
  }
  .view {
    display: none !important;
  }
  #view-trip {
    display: block !important;
    padding: 0;
    min-height: 0;
  }
  .page-title {
    margin: 0 0 20px;
  }
  .page-title h1 {
    font-size: 26px;
  }
  .trip-layout {
    display: block;
  }
  .trip-stop {
    break-inside: avoid;
    margin-bottom: 12px;
    padding: 10px;
  }
  .summary-panel {
    position: static;
    break-inside: avoid;
    margin-top: 20px;
  }
  .trip-stop img {
    height: 75px;
  }
  .spatial-plot {
    height: 150px;
  }
  body {
    background: white;
    font-size: 11px;
  }
  .page-wrap {
    max-width: none;
  }
  .summary-panel {
    background: white;
  }
}
