/* ───────── 基础 Design Tokens ───────── */
:root {
  --paper:        #F3ECDE;
  --paper-soft:   #EEE5D2;
  --paper-warm:   #E8DCBF;
  --ink:          #1C1A14;
  --ink-soft:     #3B362A;
  --ink-mute:     #6B6352;
  --forest:       #2C4435;
  --forest-deep:  #17291E;
  --terra:        #A7492B;
  --terra-deep:   #7A2F18;
  --gold:         #B08C3A;
  --gold-soft:    #D4B572;
  --wine:         #5C1F22;
  --line:         rgba(28,26,20,0.16);
  --line-strong:  rgba(28,26,20,0.5);

  --f-display: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --f-serif:   "Noto Serif SC", "Cormorant Garamond", Georgia, serif;
  --f-sans:    "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(176,140,58,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(44,68,53,0.07) 0%, transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.15 0 0 0 0 0.11 0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

::selection { background: var(--forest); color: var(--paper); }

img, svg { display: block; max-width: 100%; }
a { color: var(--forest-deep); text-decoration: none; border-bottom: 1px solid rgba(44,68,53,0.35); transition: color .2s, border-color .2s; }
a:hover { color: var(--terra-deep); border-color: var(--terra); }

/* ───────── 顶部导航 Sticky Nav ───────── */
.topnav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  background: rgba(243,236,222,0.82);
  border-bottom: 1px solid var(--line);
}
.topnav__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.topnav__brand {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  border: none;
  white-space: nowrap;
}
.topnav__brand span { color: var(--terra-deep); font-weight: 600; }
.topnav__links {
  display: flex; gap: clamp(10px, 2vw, 26px);
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-x: auto;
  scrollbar-width: none;
}
.topnav__links::-webkit-scrollbar { display: none; }
.topnav__links a {
  border: none; color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}
.topnav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.7,0,.3,1);
}
.topnav__links a:hover { color: var(--ink); }
.topnav__links a:hover::after { transform: scaleX(1); }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) clamp(16px, 5vw, 60px) clamp(40px, 7vw, 90px);
  max-width: 1440px;
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: end; }
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.hero__eyebrow::before {
  content: ""; width: 54px; height: 1px; background: var(--ink-mute);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(54px, 12vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.hero__title .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--terra-deep);
}
.hero__title .thin {
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
}
.hero__sub {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 560px;
  line-height: 1.75;
}
.hero__sub strong { color: var(--wine); font-weight: 600; }

.hero__meta {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 6px;
}
.hero__meta-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__meta-value {
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink);
  font-weight: 500;
}

.hero__countries {
  margin-top: clamp(40px, 6vw, 70px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.hero__country {
  display: flex; align-items: baseline; gap: 10px;
}
.hero__country-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.hero__country-zh {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--ink);
}
.hero__country-en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--ink-mute);
}
.hero__country + .hero__country { padding-left: clamp(18px, 3vw, 40px); border-left: 1px solid var(--line); }

/* 装饰罗盘 */
.compass {
  position: absolute;
  right: clamp(16px, 5vw, 60px);
  top: clamp(80px, 9vw, 130px);
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  opacity: 0.85;
  pointer-events: none;
}
@media (max-width: 899px) {
  .compass { position: static; width: 110px; height: 110px; margin: 8px 0 20px; }
}
.compass-rotate { transform-origin: 50% 50%; animation: spin 70s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ───────── Section 通用 ───────── */
section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) clamp(16px, 5vw, 60px);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink);
}
@media (min-width: 760px) {
  .section-head { grid-template-columns: auto 1fr auto; align-items: end; }
}
.section-head__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--terra-deep);
}
.section-head__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-head__title .it { font-style: italic; color: var(--forest); font-weight: 400; }
.section-head__sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  justify-self: end;
}
.section-intro {
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.85;
  max-width: 760px;
  color: var(--ink-soft);
  margin: 0 0 clamp(30px, 4vw, 48px);
}

/* ───────── Preparation Checklist ───────── */
.prep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .prep { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .prep { grid-template-columns: repeat(3, 1fr); } }

.prep-card {
  border: 1px solid var(--line-strong);
  background: var(--paper-soft);
  padding: 26px 26px 28px;
  position: relative;
  transition: transform .35s cubic-bezier(.7,0,.3,1), box-shadow .35s;
}
.prep-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 16px 0 -4px rgba(28,26,20,0.12);
}
.prep-card__icon {
  width: 28px; height: 28px;
  margin-bottom: 16px;
  color: var(--terra-deep);
}
.prep-card__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.prep-card__title {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}
.prep-card__body {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.prep-card ul {
  margin: 10px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 9px;
  font-size: 14px; color: var(--ink-soft);
}
.prep-card ul li {
  position: relative;
  padding-left: 24px;
  line-height: 1.65;
}
.prep-card ul li::before {
  content: "✦";
  position: absolute;
  left: 2px; top: 1px;
  color: var(--gold);
  font-size: 11px;
}

/* ───────── Countries overview grid ───────── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 20px;
}
.overview-card {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--paper-soft) 0%, var(--paper) 100%);
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s, box-shadow .25s;
}
.overview-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 2px 12px rgba(28,26,20,0.07);
}
.overview-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.overview-card__name {
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.overview-card__name small {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 1px;
}
.overview-card__days {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.overview-card__climate {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .03em;
  padding: 6px 10px;
  background: rgba(176,140,58,0.06);
  border-left: 2px solid var(--gold-soft);
}
.overview-card__section-label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.overview-card ul {
  margin: 4px 0 0;
  padding-left: 1.2em;
  font-size: 13.5px;
  line-height: 1.6;
}
.overview-card li { color: var(--ink-soft); }
.overview-card__practical {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}
.overview-card__practical span {
  display: inline-block;
  margin-right: 10px;
}

/* Legacy table kept as compact quick-ref below cards */
.countries-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  padding: clamp(14px, 2vw, 22px);
  overflow-x: auto;
}
.country-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-family: var(--f-sans);
  font-size: 13px;
}
.country-table th,
.country-table td {
  padding: 10px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.country-table thead th {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--ink);
  font-weight: 400;
}
.country-table tbody tr:hover { background: rgba(176,140,58,0.06); }
.country-table .country-name {
  font-family: var(--f-serif);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.country-table .country-name span {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 1px;
}

/* ───────── Reservations reminders ───────── */
.reservations {
  margin-top: 40px;
  padding: 28px clamp(20px, 3vw, 34px);
  background: var(--forest-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.reservations::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.7 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
  pointer-events: none;
}
.reservations__head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 22px;
  position: relative;
}
.reservations__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--gold-soft);
}
.reservations__sub {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243,236,222,0.6);
}
.reservations__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 24px;
}
@media (min-width: 720px) { .reservations__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reservations__grid { grid-template-columns: repeat(3, 1fr); } }
.reservations__item {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(243,236,222,0.9);
  padding: 2px 0 2px 38px;
  position: relative;
  border-left: 1px solid rgba(212,181,114,0.4);
}
.reservations__ico {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,181,114,0.35);
  border-radius: 50%;
  color: var(--gold);
}
.reservations__ico .ico {
  width: 10px; height: 10px;
  color: var(--gold);
  margin: 0;
}
.reservations__item b {
  display: block;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--paper);
  margin-bottom: 4px;
}
.reservations__item em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-left: 6px;
}

/* ───────── Country section & day cards ───────── */
.country-section {
  position: relative;
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.country-section + .country-section { border-top: 1px solid var(--line); }

.country-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 68px);
}
@media (min-width: 900px) {
  .country-head { grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; }
}
.country-head__flag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-deep);
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 16px;
}
.country-head__flag::before {
  content: ""; display: inline-block; width: 36px; height: 1px; background: var(--terra-deep);
}
.country-head__zh {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.country-head__zh .zh-char {
  font-family: var(--f-serif);
  font-weight: 900;
}
.country-head__en {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink-mute);
  margin: 10px 0 0;
  letter-spacing: 0.02em;
}
.country-head__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.country-head__meta-item { display: flex; flex-direction: column; gap: 4px; }
.country-head__meta-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.country-head__meta-value {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}

.country-notes {
  background: var(--paper-warm);
  border: 1px solid var(--line-strong);
  padding: 22px 26px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.country-notes h4 {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.country-notes ul {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr; gap: 8px;
  font-size: 14.5px; line-height: 1.7; color: var(--ink-soft);
}
@media (min-width: 760px) { .country-notes ul { grid-template-columns: 1fr 1fr; gap: 8px 32px; } }
.country-notes li {
  position: relative; padding-left: 26px;
}
.country-notes li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* ───────── Country-adaptive theming ───────── */
.country-section[data-country="de"] { --accent-c: #2C4435; --accent-c-soft: rgba(44,68,53,0.08);  --rule-c: rgba(44,68,53,0.35);  }
.country-section[data-country="ch"] { --accent-c: #1E3A5F; --accent-c-soft: rgba(30,58,95,0.06);  --rule-c: rgba(30,58,95,0.35);  --micro: #C8102E; }
.country-section[data-country="it"] { --accent-c: #7A2F18; --accent-c-soft: rgba(122,47,24,0.08); --rule-c: rgba(122,47,24,0.35); }
.country-section[data-country="at"] { --accent-c: #8B1A1A; --accent-c-soft: rgba(139,26,26,0.08); --rule-c: rgba(139,26,26,0.35); --micro: #B08C3A; }
.country-section[data-country="cz"] { --accent-c: #6B2A2A; --accent-c-soft: rgba(107,42,42,0.10); --rule-c: rgba(107,42,42,0.35); --micro: #B6832D; }

.country-section[data-country] .country-head__flag {
  color: var(--accent-c);
}
.country-section[data-country] .country-head__flag::before {
  background: var(--accent-c);
}
@media (min-width: 900px) {
  .country-section[data-country] .country-head__zh {
    color: var(--accent-c);
    text-shadow: 2px 2px 0 var(--accent-c-soft);
  }
}
.country-section[data-country] .country-head__meta {
  border-top-color: var(--accent-c);
}
.country-section[data-country] .country-notes {
  background: var(--accent-c-soft);
  border-color: var(--rule-c);
  border-left: 3px solid var(--accent-c);
}
.country-section[data-country] .country-notes li::before {
  background: var(--accent-c);
}
.country-section[data-country] + .country-section[data-country] {
  border-top: 2px solid var(--accent-c);
}

.topnav__links a[href="#germany"]::before,
.topnav__links a[href="#swiss"]::before,
.topnav__links a[href="#italy"]::before,
.topnav__links a[href="#austria"]::before,
.topnav__links a[href="#czech"]::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.topnav__links a[href="#germany"]::before { background: #2C4435; }
.topnav__links a[href="#swiss"]::before   { background: #1E3A5F; }
.topnav__links a[href="#italy"]::before   { background: #7A2F18; }
.topnav__links a[href="#austria"]::before { background: #8B1A1A; }
.topnav__links a[href="#czech"]::before   { background: #6B2A2A; }

/* Day cards */
.days {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.6vw, 34px);
}
.day {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(22px, 3vw, 36px);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .4s cubic-bezier(.7,0,.3,1), box-shadow .4s;
}
.day:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -26px rgba(28,26,20,0.35);
}
@media (min-width: 860px) {
  .day { grid-template-columns: 190px 1fr; gap: 36px; }
}
.day::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 6px; height: 100%;
  background: var(--forest);
  opacity: 0.9;
}
.day[data-accent="terra"]::before { background: var(--terra); }
.day[data-accent="gold"]::before { background: var(--gold); }
.day[data-accent="wine"]::before { background: var(--wine); }
.day[data-accent="forest"]::before { background: var(--forest); }

.day__marker {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
  border-left: none;
}
.day__dlabel {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-deep);
}
.day__dnum {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.day__date {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 2px;
}
.day__weekday {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
}

.day__body { display: flex; flex-direction: column; gap: 18px; }
.day__title {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.day__title small {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.day__route {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px;
  font-family: var(--f-serif);
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 10px 14px;
  background: rgba(176,140,58,0.1);
  border: 1px solid rgba(176,140,58,0.35);
  margin: 0;
}
.day__route .stop { font-weight: 600; color: var(--ink); }
.day__route .arrow { color: var(--terra-deep); font-family: var(--f-mono); }
.day__route .dist {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-left: auto;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

/* Day hero row: title/route on left, mini-map on right */
.day__hero-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
@media (min-width: 860px) {
  .day__hero-row {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
}
.day__hero-text {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
}

.day__map {
  width: 100%;
  height: 180px;
  border: 1px solid var(--line-strong);
  background: #E6DCC3;
  position: relative;
  overflow: hidden;
}
.day__map::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 24px rgba(28,26,20,0.1);
  z-index: 401;
}
.day__map .leaflet-container {
  background: #E6DCC3 !important;
  filter: saturate(0.82) sepia(0.08);
  font-family: var(--f-sans) !important;
}
.day__map-label {
  position: absolute;
  top: 8px; left: 10px;
  z-index: 410;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(243,236,222,0.88);
  padding: 3px 8px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.day__map-pin {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  color: var(--paper);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(28,26,20,0.3);
  letter-spacing: 0;
}
.day[data-accent="terra"] .day__map-pin { background: var(--terra); }
.day[data-accent="gold"] .day__map-pin { background: var(--gold); color: var(--ink); }
.day[data-accent="wine"] .day__map-pin { background: var(--wine); }
.day[data-accent="forest"] .day__map-pin { background: var(--forest-deep); }

.day__map .leaflet-tooltip {
  background: var(--paper) !important;
  border: 1px solid var(--line-strong) !important;
  color: var(--ink) !important;
  font-family: var(--f-serif) !important;
  font-size: 12px !important;
  padding: 3px 8px !important;
  box-shadow: 0 4px 12px rgba(28,26,20,0.15) !important;
  border-radius: 2px !important;
}
.day__map .leaflet-tooltip::before { display: none !important; }

/* ───────── Enriched food cards ───────── */
.day__block ul.food-list {
  gap: 10px;
}
.day__block ul.food-list li.food-item {
  padding-left: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}
.day__block ul.food-list li.food-item::before { display: none; }
.food-item__pic {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--forest-deep);
  margin-top: 1px;
}
.day[data-accent="terra"] .food-item__pic { color: var(--terra-deep); border-color: rgba(167,73,43,0.3); }
.day[data-accent="gold"] .food-item__pic { color: #8D6A1D; border-color: rgba(212,181,114,0.5); }
.day[data-accent="wine"] .food-item__pic { color: var(--wine); border-color: rgba(120,37,47,0.25); }
.food-item__pic .ico {
  width: 16px; height: 16px;
  color: currentColor;
}
.food-item__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.food-item__name {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.35;
}
.food-item__name em,
.day__block ul.food-list em {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  background: transparent;
  padding: 0;
  margin-left: 4px;
  border: 0;
  letter-spacing: 0;
}
.food-item__desc {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-top: 1px;
}
.food-item__desc b {
  color: var(--terra-deep);
  font-weight: 500;
  font-size: 11.5px;
}

/* Restaurant / hotel enrichment — adds a small sub-label under venue name */
.venue-item {
  padding-left: 20px;
  position: relative;
}
.venue-item__meta {
  display: block;
  margin-top: 3px;
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.venue-item__meta .pill {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-deep);
  background: rgba(167,73,43,0.08);
  border: 1px solid rgba(167,73,43,0.2);
  padding: 1px 6px;
  margin-right: 6px;
  vertical-align: 1px;
}

/* ───────── Michelin Star Badges ─────────
   Used to mark starred restaurants prominently. */
.mich {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 7px 2px 6px;
  border-radius: 2px;
  background: linear-gradient(180deg, #B02A1E 0%, #8C1A10 100%);
  color: #FBEBC8;
  border: 1px solid #6B120A;
  box-shadow: 0 1px 0 rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.18);
  vertical-align: 2px;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.mich__stars {
  color: #F6D17B;
  letter-spacing: 0.02em;
  font-size: 11px;
  line-height: 1;
  text-shadow: 0 0 4px rgba(246,209,123,0.7);
}
.mich--one   .mich__stars::before { content: "★"; }
.mich--two   .mich__stars::before { content: "★★"; }
.mich--three .mich__stars::before { content: "★★★"; }

/* A highlighted banner inside a list — draws the eye to a famous reservation */
.mich-call {
  display: block;
  position: relative;
  margin: 4px 0 6px;
  padding: 10px 12px 10px 14px;
  border-left: 3px solid #8C1A10;
  background: linear-gradient(90deg, rgba(176,42,30,0.08) 0%, rgba(176,42,30,0.02) 80%, transparent 100%);
  border-radius: 2px;
}
.mich-call__head {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.mich-call__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.mich-call__name em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-mute);
  margin-left: 6px;
  letter-spacing: 0;
  background: transparent; padding: 0; border: 0;
}
.mich-call__meta {
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 3px;
}
.mich-call__chef {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-right: 8px;
}

/* reservations-item variant: a small accent bar when Michelin */
.reservations__item.is-michelin {
  background: linear-gradient(180deg, rgba(176,42,30,0.07), rgba(176,42,30,0.02));
  border-left: 2px solid #8C1A10;
  padding-left: 14px;
}

.day__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
}
@media (min-width: 720px) { .day__cols { grid-template-columns: 1fr 1fr; } }

.day__block h5 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin: 0 0 8px;
  display: flex; align-items: center; gap: 10px;
}
.day__block h5::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.day__block ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px; line-height: 1.65; color: var(--ink-soft);
}
.day__block ul li {
  padding-left: 20px;
  position: relative;
}
.day__block ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--forest);
  border-radius: 50%;
}
.day[data-accent="terra"] .day__block ul li::before { background: var(--terra); }
.day[data-accent="gold"] .day__block ul li::before { background: var(--gold); }
.day[data-accent="wine"] .day__block ul li::before { background: var(--wine); }
.day[data-accent="forest"] .day__block ul li::before { background: var(--forest); }
.day__block p {
  margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--ink-soft);
}
.day__block b { color: var(--ink); font-weight: 600; }
.day__block em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--terra-deep);
  background: rgba(167,73,43,0.09);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 2px;
}
.tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--ink);
  color: var(--paper);
  margin-right: 6px;
}
.tag--warn { background: var(--terra-deep); }
.tag--note { background: var(--forest); }
.tag--opt { background: transparent; color: var(--ink-mute); border: 1px solid var(--line-strong); }

/* footer */
footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px clamp(16px, 5vw, 60px) 80px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 760px) {
  footer { grid-template-columns: 1fr auto; align-items: end; }
}
.foot-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
.foot-title .sig { color: var(--terra-deep); }
.foot-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.foot-meta div + div { margin-top: 4px; }

/* Reveal anim */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.7,0,.3,1), transform .9s cubic-bezier(.7,0,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* small-screen topnav condense */
@media (max-width: 580px) {
  .topnav__brand { font-size: 16px; }
  .topnav__links { font-size: 11px; }
}

/* ───────── Icons ───────── */
.ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--terra-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: -2px;
}
.day__block h5 .ico {
  color: var(--terra-deep);
  width: 13px;
  height: 13px;
}
.day[data-accent="terra"] .day__block h5 .ico { color: var(--terra); }
.day[data-accent="gold"]  .day__block h5 .ico { color: var(--gold); }
.day[data-accent="wine"]  .day__block h5 .ico { color: var(--wine); }
.day[data-accent="forest"] .day__block h5 .ico { color: var(--forest); }

.country-notes h4 .ico {
  color: var(--terra-deep);
  width: 15px; height: 15px;
  margin-right: 2px;
}

.prep-card__label .ico {
  width: 11px; height: 11px;
  margin-right: 6px;
  vertical-align: -1px;
  color: var(--gold);
}
.reservations__sub .ico {
  width: 11px; height: 11px;
  margin-right: 6px;
  vertical-align: -1px;
  color: rgba(243,236,222,0.7);
}

.hero__eyebrow .ico {
  width: 12px; height: 12px;
  color: var(--ink-mute);
  margin-right: 4px;
}

.section-head__num .ico {
  width: 12px; height: 12px;
  margin-right: 6px;
  color: var(--terra-deep);
  vertical-align: -1px;
}

.country-head__flag .ico {
  width: 13px; height: 13px;
  color: var(--terra-deep);
  margin-right: 4px;
}

.day__route .ico {
  width: 13px; height: 13px;
  color: var(--terra-deep);
  margin-right: 2px;
  vertical-align: -2px;
}
.country-head__meta-label .ico {
  width: 11px; height: 11px;
  margin-right: 5px;
  color: var(--ink-mute);
  vertical-align: -1px;
}
.hero__meta-label .ico {
  width: 11px; height: 11px;
  margin-right: 5px;
  color: var(--ink-mute);
  vertical-align: -1px;
}
.hero__country-zh .ico {
  width: 12px; height: 12px;
  color: var(--gold);
  margin-right: 2px;
  vertical-align: -1px;
}

.topnav__links a .ico {
  width: 11px; height: 11px;
  margin-right: 5px;
  color: var(--ink-mute);
  vertical-align: -1px;
}

/* ───────── Map Section ───────── */
.map-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--paper-soft);
  overflow: hidden;
}
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 48px rgba(28,26,20,0.08);
}
#trip-map {
  width: 100%;
  height: clamp(440px, 62vh, 640px);
  background: #E6DCC3;
  filter: saturate(0.85) sepia(0.08);
}
.leaflet-container {
  font-family: var(--f-sans) !important;
  background: #E6DCC3 !important;
}
.leaflet-tile-pane { opacity: 0.92; }
.leaflet-popup-content-wrapper {
  border-radius: 2px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 24px rgba(28,26,20,0.18) !important;
  padding: 2px !important;
}
.leaflet-popup-content {
  font-family: var(--f-serif) !important;
  margin: 12px 14px !important;
  color: var(--ink) !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}
.leaflet-popup-content b {
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
  color: var(--terra-deep);
}
.leaflet-popup-content em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.leaflet-popup-tip { background: var(--paper) !important; }
.leaflet-control-attribution {
  background: rgba(243,236,222,0.85) !important;
  font-family: var(--f-mono) !important;
  font-size: 10px !important;
  color: var(--ink-mute) !important;
}
.leaflet-control-attribution a { color: var(--forest) !important; }
.leaflet-control-zoom a {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line-strong) !important;
  font-family: var(--f-display) !important;
  font-size: 18px !important;
  line-height: 26px !important;
}
.leaflet-control-zoom a:hover {
  background: var(--paper-warm) !important;
}

/* Trip pin styles injected via divIcon */
.trip-pin {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--paper);
  background: var(--forest-deep);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(28,26,20,0.35);
  letter-spacing: 0.04em;
}
.trip-pin.is-bookend { background: var(--terra-deep); }

.map-legend {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(243,236,222,0.95);
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 500;
  pointer-events: none;
}
.map-legend__row { display: flex; align-items: center; gap: 8px; }
.map-legend__sw { width: 20px; height: 2px; background: var(--terra); }
.map-legend__sw--start { width: 10px; height: 10px; border-radius: 50%; background: var(--terra-deep); border: 1.5px solid var(--paper); box-shadow: 0 0 0 1px var(--terra-deep); }
.map-legend__sw--stop { width: 10px; height: 10px; border-radius: 50%; background: var(--forest-deep); border: 1.5px solid var(--paper); box-shadow: 0 0 0 1px var(--forest-deep); }

.map-stops {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}
@media (min-width: 720px) { .map-stops { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .map-stops { grid-template-columns: repeat(4, 1fr); } }
.map-stops__item {
  display: flex; align-items: baseline; gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dotted var(--line);
}
.map-stops__num {
  color: var(--terra-deep);
  font-weight: 500;
  min-width: 20px;
}
.map-stops__name {
  font-family: var(--f-serif);
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0;
}
.map-stops__days {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--ink-mute);
}

/* ───────── SVG Sprite ───────── */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* horizontal ornament */
.ornament {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-mute);
  margin: 28px 0 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* ───────── Reduced-motion a11y ───────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .compass-rotate { animation: none !important; }
}
