/* ============================================================
   旅行手账 · 全新 UI
   干净卡片 · 暗色日徽章 · 浅灰次级面 · 细微边框
   ============================================================ */

:root {
  --bg: #f8f8f7;
  --surface: #ffffff;
  --surface-2: #f3f3f2;
  --surface-3: #eeeeec;

  --text: #171717;
  --text-2: #404040;
  --muted: #737373;
  --muted-2: #a3a3a3;

  --border: #e5e5e5;
  --border-2: #f0f0ef;

  --accent: #171717;
  --accent-2: #525252;
  --accent-soft: #f3f3f2;
  --accent-dark: #171717;

  --warm: #b85c1a;
  --warm-light: #fdf7f0;
  --warm-border: #f0dcc4;

  --success: #16a34a;
  --success-soft: #f0fdf4;
  --warning: #b85c1a;
  --warning-soft: #fefce8;
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --info: #525252;
  --info-soft: #f3f3f2;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgb(0 0 0 / .04);
  --shadow: 0 1px 3px rgb(0 0 0 / .06);
  --shadow-lg: 0 4px 12px rgb(0 0 0 / .06);

  --maxw: 960px;
  --font: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .18s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: opacity var(--dur) var(--ease); }
a:hover { opacity: .7; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--text); font-family: var(--font); letter-spacing: -.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: hsl(0 0% 100% / .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; height: 52px;
}
.brand {
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14.5px; color: var(--text);
}
.brand:hover { opacity: 1; }
.brand .logo {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--text);
  display: grid; place-items: center; font-size: 15px;
  border: 1px solid var(--border);
}
.brand small { display: none; }

.nav-home {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 5px 12px; border-radius: 9999px;
  border: 1px solid var(--border); background: var(--surface);
  transition: background var(--dur) var(--ease);
}
.nav-home:hover { background: var(--surface-2); opacity: 1; }

/* ========== Hero ========== */
.hero {
  padding: 90px 0 70px; text-align: center;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  background: var(--surface-2); padding: 4px 10px;
  border-radius: 9999px; margin-bottom: 22px;
  letter-spacing: .4px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 48px); margin: 0 auto 14px;
  font-weight: 700; line-height: 1.14; max-width: 700px;
}
.hero p {
  margin: 0 auto 26px; color: var(--muted); max-width: 520px;
  font-size: 15px; line-height: 1.7;
}
.hero .cta-row { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; justify-content: center; }

/* Buttons */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-weight: 500; font-size: 13.5px; padding: 8px 18px; height: 38px;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.cta:not(.ghost) {
  background: var(--accent); color: #fff; box-shadow: var(--shadow-sm);
}
.cta:not(.ghost):hover { background: #404040; opacity: 1; }
.cta.ghost {
  background: var(--surface); color: var(--text-2); border-color: var(--border);
}
.cta.ghost:hover { background: var(--surface-2); opacity: 1; }

/* ========== Home Section Title ========== */
.section-title { display: flex; align-items: baseline; gap: 12px; margin: 52px 0 22px; }
.section-title h2 { font-size: 21px; font-weight: 600; color: var(--text); }
.section-title .line { flex: 1; height: 1px; background: var(--border); }

/* ========== Guide Card (Home) ========== */
.guide-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; scroll-margin-top: 64px;
}
.guide-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease);
}
.guide-card:hover { box-shadow: var(--shadow); }
.guide-cover {
  height: 120px; display: grid; place-items: center; font-size: 44px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.guide-card .body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.guide-card h3 { margin: 0 0 5px; font-size: 16px; font-weight: 600; }
.guide-card .sub { color: var(--muted); font-size: 13px; margin: 0 0 14px; line-height: 1.55; }
.guide-card .chips { margin-top: auto; display: flex; flex-wrap: wrap; gap: 5px; }
.chip {
  font-size: 11px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 9999px; padding: 3px 9px; color: var(--muted); white-space: nowrap;
}
.guide-card .go {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; font-size: 13px; color: var(--text);
}
.guide-card .go .arrow { transition: transform var(--dur) var(--ease); }
.guide-card:hover .go .arrow { transform: translateX(3px); }
.empty-note { color: var(--muted); padding: 40px 0; text-align: center; }

/* ========== Guide Detail Hero ========== */
.guide-hero { padding: 34px 0 36px; }
.crumbs {
  display: flex; align-items: center; gap: 5px; font-size: 12px;
  color: var(--muted); flex-wrap: wrap; margin-bottom: 16px;
}
.crumbs a { color: var(--text); }
.crumbs .sep { opacity: .4; }
.crumbs .cur { color: var(--text); font-weight: 500; }

.guide-hero .cover-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 21px;
}
.guide-hero .emoji {
  width: 50px; height: 50px; border-radius: var(--radius-sm); display: grid;
  place-items: center; font-size: 26px; background: var(--surface-2);
  border: 1px solid var(--border); flex: none;
}
.guide-hero h1 {
  margin: 0; font-size: clamp(22px, 3.5vw, 33px); font-weight: 700;
  line-height: 1.16;
}
.guide-hero .sub { color: var(--muted); margin: 5px 0 0; font-size: 14px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 4px; margin-bottom: 12px;
  font-size: 11px; font-weight: 600; color: var(--text);
  background: var(--surface-2); padding: 3px 9px;
  border-radius: 9999px; border: 1px solid var(--border);
}

/* ========== Fact Bar ========== */
.factbar { display: flex; flex-wrap: wrap; gap: 7px; }
.fact {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 13px; min-width: 105px;
  display: flex; flex-direction: column; gap: 1px;
  transition: box-shadow var(--dur) var(--ease);
}
.fact:hover { box-shadow: var(--shadow-sm); }
.fact .fi { font-size: 15px; line-height: 1; margin-bottom: 2px; }
.fact .fk { font-size: 10px; color: var(--muted); letter-spacing: .3px; text-transform: uppercase; }
.fact .fv { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ========== Summary Panel ========== */
.summary-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px; margin-top: 6px;
}
.summary-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px;
}
.summary-item { display: flex; align-items: baseline; gap: 7px; font-size: 13.5px; }
.summary-item .sl { color: var(--muted); min-width: 64px; font-weight: 500; }
.summary-item .sv { color: var(--text); font-weight: 500; }

/* ========== Sub Nav ========== */
.subnav {
  position: sticky; top: 52px; z-index: 40;
  background: hsl(0 0% 100% / .88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.subnav .wrap {
  display: flex; gap: 3px; overflow-x: auto; padding: 5px 0;
  scrollbar-width: none;
}
.subnav .wrap::-webkit-scrollbar { display: none; }
.subnav a {
  flex: none; font-size: 12px; font-weight: 500; color: var(--muted);
  padding: 5px 10px; border-radius: var(--radius-sm); white-space: nowrap;
  border: 1px solid transparent; transition: all var(--dur) var(--ease);
}
.subnav a:hover { background: var(--surface-2); color: var(--text); opacity: 1; }
.subnav a.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ========== Sections ========== */
.section { padding: 44px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: 0; }
.section > h2 {
  font-size: 19px; font-weight: 600; margin: 0 0 10px; color: var(--text);
  display: flex; align-items: center; gap: 9px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.section > h2 .ic {
  width: 30px; height: 30px; border-radius: var(--radius-sm); flex: none;
  background: var(--surface-2); display: grid; place-items: center;
  font-size: 15px; border: 1px solid var(--border);
}
.section .lead {
  color: var(--text-2); margin: 0 0 22px;
  font-size: 14px; max-width: 660px; line-height: 1.72;
}

/* ========== Text ========== */
.text-block { max-width: 660px; }
.text-block p { margin-bottom: 11px; font-size: 13.5px; line-height: 1.72; }
.text-block p:last-child { margin-bottom: 0; }

/* ========== Callouts ========== */
.callout {
  border-radius: var(--radius-sm); padding: 15px 17px; margin: 14px 0;
  font-size: 13.5px; line-height: 1.72; border: 1px solid var(--border);
  background: var(--surface);
}
.callout .ct { font-weight: 600; display: block; margin-bottom: 3px; font-size: 12.5px; }
.callout.tip { background: var(--warm-light); border-color: var(--warm-border); }
.callout.tip .ct { color: var(--warm); }
.callout.warn { background: var(--warning-soft); border-color: #fde68a; }
.callout.warn .ct { color: #a16207; }
.callout.info { background: var(--surface-2); border-color: var(--border); }
.callout.info .ct { color: var(--text-2); }

/* ---------- 要点卡片（独立成块的①②③） ---------- */
.points-list { display: flex; flex-direction: column; gap: 4px; margin: 10px 0; }
.point-item {
  display: flex; gap: 9px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 7px 12px;
}
.point-num {
  font-weight: 700; color: var(--accent); font-size: 13px;
  background: var(--surface-2); border: 1px solid var(--border);
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--font);
}
.point-content { flex: 1; min-width: 0; display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; }
.point-k { font-weight: 600; color: var(--text); font-size: 13.5px; flex: none; }
.point-v { color: var(--text-2); font-size: 13px; line-height: 1.5; flex: 1; min-width: 0; }

/* ---------- Checkbox 清单 ---------- */
.checklist-list { display: flex; flex-direction: column; gap: 12px; margin: 12px 0; }
.checklist-group {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.checklist-group-title {
  font-size: 12px; font-weight: 600; color: var(--accent-dark);
  letter-spacing: .3px; text-transform: uppercase; margin-bottom: 8px;
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.checklist-items { display: flex; flex-direction: column; gap: 4px; }
.checklist-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 6px; border-radius: var(--radius-sm);
  cursor: pointer; transition: background var(--dur) var(--ease);
}
.checklist-item:hover { background: var(--surface-2); }
.checklist-cb {
  width: 16px; height: 16px; flex: none; accent-color: var(--accent);
  cursor: pointer; margin: 0;
}
.checklist-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.checklist-item:has(.checklist-cb:checked) .checklist-text {
  color: var(--muted); text-decoration: line-through;
}

/* ========== Tables ========== */
.table-wrap {
  overflow-x: auto; margin: 12px 0; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface);
}
table.tbl { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 13px; }
table.tbl th, table.tbl td {
  padding: 9px 13px; text-align: left; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.tbl th {
  background: var(--surface-2); font-weight: 600; color: var(--text);
  white-space: nowrap; font-size: 12px;
}
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl tbody tr { transition: background var(--dur) var(--ease); }
table.tbl tbody tr:hover { background: var(--surface-2); }
.tag-yes { color: var(--success); font-weight: 600; }
.tag-no { color: var(--danger); font-weight: 600; }
.tag-part { color: var(--warning); font-weight: 600; }

/* ========== Place Boxes ========== */
.place {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius-sm); padding: 4px 9px 4px 10px;
  margin: 3px 5px 3px 0; font-size: 13px; color: var(--text);
  cursor: pointer; user-select: none; transition: all var(--dur) var(--ease);
  max-width: 100%;
}
.place:hover { background: var(--surface-2); border-color: var(--accent); box-shadow: 0 1px 3px rgb(0 0 0 / .06); }
.place:active { transform: scale(.97); }
.place .ic-pin { width: 13px; height: 13px; fill: var(--warm); flex: none; }
.place .place-body { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.place .place-name { font-weight: 700; color: var(--text); }
.place .place-sub { font-size: 10.5px; color: var(--muted); }
.place .ic-copy {
  width: 11px; height: 11px; fill: var(--muted); opacity: .45; flex: none; margin-left: 2px;
}
.place.copied { background: var(--success-soft); border-color: #bbf7d0; }
.place.copied .ic-copy { opacity: 1; fill: var(--success); }
.place-row { display: flex; flex-wrap: wrap; margin: 5px 0; }

/* ========== Day Cards ========== */
.day {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin: 18px 0; overflow: hidden;
  scroll-margin-top: 106px;
  transition: box-shadow var(--dur) var(--ease);
}
.day:hover { box-shadow: var(--shadow-sm); }

.day-head {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.day-head .day-no {
  width: 26px; height: 26px; border-radius: var(--radius-sm); flex: none;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 11px;
}
.day-head .day-title { font-weight: 600; font-size: 14.5px; color: var(--text); }
.day-head .day-date { color: var(--muted); font-size: 12px; margin-top: 1px; }
.day-head .day-km {
  margin-left: auto; font-size: 11.5px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 9999px;
  padding: 3px 11px; color: var(--text-2); font-weight: 500;
}

.day-body { padding: 10px 18px 14px; }

/* Timeline */
.timeline { list-style: none; margin: 6px 0 3px; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 5px; bottom: 5px;
  width: 1.5px; background: var(--border);
}
.tl-item { position: relative; padding: 7px 0 7px 26px; }
.tl-item::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  transition: all var(--dur) var(--ease);
}
.tl-item:hover::before { background: var(--accent); border-color: var(--accent); }
/* 时间 + 标签在同一行 */
.tl-meta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 5px; flex-wrap: nowrap;
}
.tl-item .tl-time {
  display: inline-flex; align-items: center;
  font-weight: 700; color: var(--text);
  font-size: 11px; padding: 2px 7px; border-radius: 9999px;
  background: var(--surface-2); border: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px; line-height: 1;
  flex: none;
}
/* 地点/活动的性质标签（免费·预约·拍照·换电·洗澡…） */
.tl-tags { display: inline-flex; flex-wrap: nowrap; align-items: center; gap: 4px; margin: 0; }
.tl-item:hover .tl-tags { /* 保持原样，hover 不改变标签 */ }
.tl-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; line-height: 1;
  padding: 2px 7px; border-radius: 9999px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--muted); white-space: nowrap; letter-spacing: .2px;
  flex: none;
}
.tag-free   { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.tag-book   { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.tag-photo  { background: #fdf2f8; border-color: #fbcfe8; color: #be185d; }
.tag-charge { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.tag-bath   { background: #ecfeff; border-color: #a5f3fc; color: #0e7490; }
.tag-opt    { background: var(--surface-2); border-color: var(--border); color: var(--muted); }
.tag-supply { background: #fefce8; border-color: #fde68a; color: #a16207; }
.tag-neutral{ background: var(--surface-2); border-color: var(--border); color: var(--muted); }
.tl-item .tl-text { font-size: 14px; color: var(--text); line-height: 1.68; }
.tl-item .tl-text .place { margin-top: 4px; }
.tl-item .tl-text .tl-note { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.day-foot { padding: 0 18px 14px; }
.day-foot .label {
  font-size: 11px; color: var(--muted); font-weight: 600;
  margin: 7px 0 3px; letter-spacing: .3px; text-transform: uppercase;
}

/* ========== Food Cards ========== */
.food-city { margin: 16px 0; }
.food-city h3 {
  font-size: 15px; margin: 0 0 9px; display: flex; align-items: center;
  gap: 5px; color: var(--text); font-weight: 600;
}
.food-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
.food-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 15px;
  transition: box-shadow var(--dur) var(--ease);
}
.food-item:hover { box-shadow: var(--shadow-sm); }
.food-item .fname {
  font-weight: 600; font-size: 13.5px; color: var(--text);
  display: flex; align-items: center; gap: 5px;
}
.food-item .fname::before { content: "🍜"; font-size: 12px; opacity: .85; }
.food-item .fmeta { font-size: 12px; color: var(--muted); margin: 3px 0; }
.food-item .fprice { color: var(--warm); font-weight: 700; font-size: 13px; }
.food-item .fsrc { font-size: 11px; color: var(--success); margin-top: 3px; font-weight: 600; }
.food-item .fnote { font-size: 11.5px; color: var(--muted); margin-top: 3px; line-height: 1.55; }

/* ========== Budget Grid ========== */
.budget-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px; margin: 14px 0;
}
.budget-cell {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 15px 16px; overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.budget-cell:hover { box-shadow: var(--shadow-sm); }
.budget-cell .bk { font-size: 12px; color: var(--muted); }
.budget-cell .bv { font-size: 19px; font-weight: 700; color: var(--text); margin-top: 3px; }
.budget-cell .bn { font-size: 11px; color: var(--muted); margin-top: 2px; line-height: 1.35; }

/* ========== Gallery ========== */
.gallery { margin: 14px 0; }
.gallery-caption { font-size: 12px; color: var(--muted); margin-bottom: 9px; font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.gallery-item {
  aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--border);
}
.gallery-item .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: hsl(0 0% 100% / .88); font-size: 11.5px; font-weight: 500;
  text-align: center; padding: 9px; text-shadow: 0 1px 3px rgb(0 0 0 / .4);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ========== Toast ========== */
.toast {
  position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%) translateY(14px);
  background: var(--accent); color: #fff; padding: 9px 18px;
  border-radius: 9999px; font-size: 12.5px; opacity: 0;
  pointer-events: none; transition: all .24s var(--ease); z-index: 200;
  box-shadow: var(--shadow-lg); max-width: 86vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ========== Footer ========== */
.footer {
  padding: 36px 0 44px; color: var(--muted); font-size: 12px;
  text-align: center; border-top: 1px solid var(--border); margin-top: 20px;
}

/* ========== Animations ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.reveal { opacity: 0; transform: translateY(10px); will-change: opacity, transform; }
.reveal.is-visible { animation: fadeUp .5s var(--ease) forwards; }

.hero-anim { opacity: 0; animation: fadeUp .55s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: .04s; }
.hero-anim.d2 { animation-delay: .1s; }
.hero-anim.d3 { animation-delay: .18s; }
.hero-anim.d4 { animation-delay: .26s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal, .hero-anim { opacity: 1 !important; transform: none !important; animation: none !important; }
  .guide-card, .day, .food-item, .budget-cell, .fact, .place, .cta { transition: none !important; }
}

/* ========== Focus ========== */
a:focus-visible, .guide-card:focus-visible, .place:focus-visible,
.nav-home:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ========== Mobile ========== */
@media (max-width: 760px) {
  .wrap { padding: 0 15px; }
  .hero { padding: 60px 0 44px; }
  .hero h1 { font-size: clamp(24px, 6vw, 32px); }
  .hero p { font-size: 13.5px; }

  .guide-grid { grid-template-columns: 1fr; }
  .guide-cover { height: 130px; }

  .guide-hero { padding: 22px 0 26px; }
  .guide-hero .cover-row { gap: 10px; }
  .guide-hero .emoji { width: 44px; height: 44px; font-size: 22px; }

  .summary-grid { grid-template-columns: 1fr; gap: 8px; }
  .summary-panel { padding: 18px; }

  .fact { min-width: calc(50% - 4px); flex: 1 1 calc(50% - 4px); }

  .section { padding: 34px 0; }
  .section > h2 { font-size: 17px; }
  .section-title { margin: 38px 0 18px; }
  .section-title h2 { font-size: 19px; }

  .day-head { gap: 9px; padding: 12px 14px; }
  .day-head .day-km { margin-left: 0; width: 100%; margin-top: 3px; }
  .day-body, .day-foot { padding-left: 14px; padding-right: 14px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .food-list { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: 1fr; }

  .cta { padding: 7px 15px; font-size: 12.5px; height: 34px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .fact { min-width: 100%; }
}
