:root {
  color-scheme: light;
  --bg: #f6efe6;
  --bg-soft: #fff8ef;
  --card: rgba(255, 252, 247, 0.9);
  --ink: #23312b;
  --muted: #6f7d73;
  --line: rgba(89, 103, 92, 0.18);
  --brand: #1f6f5b;
  --brand-dark: #13483b;
  --brand-soft: #dcefe8;
  --tea: #b7783f;
  --shadow: 0 24px 60px rgba(35, 49, 43, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

* {
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(183, 120, 63, 0.18), transparent 20rem),
    radial-gradient(circle at top left, rgba(31, 111, 91, 0.16), transparent 28rem),
    linear-gradient(135deg, #f5eadc 0%, #eef5ef 48%, #f8efe6 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 111, 91, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 91, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(35, 49, 43, 0.08);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.brand:hover {
  color: var(--brand);
}

.hero-content {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: end;
}

.hero-copy {
  max-width: 860px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 111, 91, 0.18);
  border-radius: 32px;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(255, 252, 247, 0.94), rgba(220, 239, 232, 0.82)),
    radial-gradient(circle at top right, rgba(183, 120, 63, 0.18), transparent 16rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(31, 111, 91, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.hero-visual h2 {
  position: relative;
  margin-bottom: 24px;
  font-size: 34px;
}

.mini-route {
  position: relative;
  display: grid;
  gap: 16px;
}

.mini-route::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(31, 111, 91, 0.18), rgba(31, 111, 91, 0.04));
}

.mini-route-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.mini-route-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.mini-route-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.route-index,
.day-mark {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.route-index {
  width: 42px;
  height: 42px;
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tea);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.day-tab:focus-visible {
  outline: 3px solid rgba(31, 111, 91, 0.32);
  outline-offset: 3px;
}

.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 26px rgba(31, 111, 91, 0.24);
}

.primary:hover {
  background: var(--brand-dark);
}

.secondary {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -16px;
}

.stat-card,
.info-panel,
.section-shell,
.guide-intro,
.highlight-card,
.route-stop {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 22px;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(31, 111, 91, 0.07);
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-label {
  display: block;
  margin-bottom: 10px;
  color: var(--tea);
  font-size: 13px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.stat-card p,
.section-heading p,
.info-panel p,
.food-grid p,
.timeline-card p {
  color: var(--muted);
  line-height: 1.75;
}

.section-shell {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  padding: 34px;
}

.section-shell.compact {
  padding-bottom: 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.photo-section {
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 252, 247, 0.92), rgba(246, 239, 230, 0.82)),
    radial-gradient(circle at top right, rgba(31, 111, 91, 0.1), transparent 18rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--brand-soft);
  box-shadow: 0 18px 42px rgba(35, 49, 43, 0.16);
}

.feature-photo {
  grid-row: span 2;
}

.wide-photo {
  grid-column: 1 / -1;
  min-height: 320px;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.photo-card:hover img {
  transform: scale(1.055);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 18, 0.78), rgba(10, 22, 18, 0.1) 58%, transparent);
}

.photo-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: #fff;
}

.photo-day {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.photo-caption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.photo-caption p {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.attribution-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.attribution-panel strong {
  display: block;
  margin-bottom: 12px;
}

.attribution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.attribution-list a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.guide-highlights {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  margin-top: 28px;
}

.guide-intro,
.highlight-card {
  border-radius: var(--radius-lg);
}

.guide-intro {
  padding: 32px;
  background:
    linear-gradient(150deg, rgba(35, 49, 43, 0.94), rgba(31, 111, 91, 0.9)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 18rem);
  color: #fff;
}

.guide-intro .eyebrow {
  color: #f2c99c;
}

.guide-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  padding: 24px;
  background: rgba(255, 252, 247, 0.84);
}

.highlight-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--tea);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.highlight-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.highlight-card p,
.route-stop p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.route-overview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(220, 239, 232, 0.7)),
    radial-gradient(circle at bottom left, rgba(183, 120, 63, 0.14), transparent 22rem);
}

.route-overview::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(31, 111, 91, 0.12);
  border-radius: 999px;
}

.route-overview .section-heading {
  position: relative;
  z-index: 1;
}

.route-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-stop {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.day-mark {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
}

.route-stop h3 {
  margin-bottom: 8px;
}

.map-section {
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.94), rgba(220, 239, 232, 0.72)),
    radial-gradient(circle at top left, rgba(183, 120, 63, 0.12), transparent 20rem);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.map-card {
  display: flex;
  flex-direction: column;
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 38px rgba(35, 49, 43, 0.1);
}

.map-day {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.map-card h3 {
  margin-bottom: 8px;
}

.map-card p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.68;
}

.map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.primary-map {
  color: #fff;
  background: var(--brand);
}

.secondary-map {
  color: var(--brand-dark);
  border: 1px solid rgba(31, 111, 91, 0.2);
  background: rgba(255, 255, 255, 0.74);
}

.map-hint {
  margin: 18px 0 0;
  border-left: 4px solid var(--tea);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.day-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.day-tab[aria-selected="true"] {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.day-summary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 24px;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.summary-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 13px;
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.time {
  color: var(--brand);
  font-weight: 900;
}

.timeline-card h3 {
  margin-bottom: 6px;
}

.timeline-card p:last-child {
  margin-bottom: 0;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.clean-list strong {
  color: var(--ink);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.info-panel {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.accent-panel {
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.92), rgba(220, 239, 232, 0.86));
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.food-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.budget-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.budget-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.budget-row:last-child {
  border-bottom: 0;
}

.budget-row.header,
.budget-row.total {
  color: var(--ink);
  font-weight: 900;
  background: rgba(220, 239, 232, 0.66);
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 36px;
  color: var(--muted);
  text-align: center;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  max-width: min(320px, calc(100vw - 40px));
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: var(--brand-dark);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero {
    padding: 16px 16px 44px;
  }

  main,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar,
  .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    border-radius: 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 46px;
  }

  .overview,
  .day-summary,
  .split-grid,
  .food-grid,
  .guide-highlights {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-photo {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .wide-photo {
    grid-column: 1 / -1;
  }

  .route-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-shell,
  .info-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .budget-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  body::before {
    background-size: 32px 32px;
  }

  .hero {
    padding: 12px 12px 34px;
  }

  main,
  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  main {
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }

  .topbar {
    position: sticky;
    top: 10px;
    z-index: 10;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 252, 247, 0.88);
  }

  .brand {
    font-size: 15px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    font-size: 13px;
  }

  .nav-links a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.62);
    text-align: center;
  }

  .hero-content {
    margin-top: 38px;
  }

  .hero-visual {
    border-radius: 22px;
    padding: 20px;
  }

  .hero-visual h2 {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .mini-route {
    gap: 14px;
  }

  .mini-route-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .mini-route::before {
    left: 19px;
  }

  .route-index {
    width: 38px;
    height: 38px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.12;
  }

  h3 {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    padding: 13px 18px;
  }

  .overview {
    gap: 12px;
    margin-top: -8px;
  }

  .guide-highlights {
    gap: 12px;
    margin-top: 18px;
  }

  .guide-intro,
  .highlight-card,
  .route-stop {
    border-radius: 20px;
    padding: 18px;
  }

  .highlight-grid,
  .route-rail,
  .map-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-card {
    min-height: auto;
    padding: 16px;
  }

  .map-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-link {
    min-height: 44px;
  }

  .day-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .stat-card {
    padding: 18px;
  }

  .stat-card strong {
    font-size: 20px;
  }

  .section-shell,
  .info-panel {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .day-tabs {
    position: sticky;
    top: 92px;
    z-index: 8;
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 6px 18px 10px;
    overflow-x: auto;
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(255, 248, 239, 0.78));
    backdrop-filter: blur(14px);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .day-tabs::-webkit-scrollbar {
    display: none;
  }

  .day-tab {
    flex: 0 0 auto;
    min-width: 86px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .day-summary {
    gap: 12px;
    margin-bottom: 16px;
  }

  .summary-card,
  .timeline-card,
  .food-grid article {
    padding: 16px;
    border-radius: 16px;
  }

  .badge-row {
    gap: 6px;
    margin-top: 12px;
  }

  .badge {
    min-height: 28px;
    font-size: 12px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline-card {
    gap: 10px;
  }

  .time {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--brand-soft);
    font-size: 13px;
  }

  .clean-list {
    gap: 10px;
    padding-left: 0;
    list-style: none;
  }

  .clean-list li {
    position: relative;
    padding-left: 16px;
  }

  .clean-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand);
  }

  .split-grid,
  .food-grid {
    gap: 12px;
  }

  .photo-grid,
  .attribution-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-grid {
    grid-auto-rows: auto;
  }

  .photo-card,
  .feature-photo,
  .wide-photo {
    min-height: 280px;
  }

  .photo-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .photo-caption strong {
    font-size: 21px;
  }

  .attribution-panel {
    padding: 16px;
  }

  .budget-table {
    border-radius: 16px;
  }

  .budget-row.header {
    display: none;
  }

  .budget-row {
    gap: 9px;
    padding: 16px;
  }

  .budget-row span {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 10px;
    align-items: start;
  }

  .budget-row span::before {
    content: attr(data-label);
    color: var(--ink);
    font-weight: 900;
  }

  .footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .toast {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
    border-radius: 16px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero,
  main,
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .section-shell,
  .info-panel,
  .stat-card {
    padding: 15px;
  }

  .nav-links {
    font-size: 12px;
  }

  .budget-row span {
    grid-template-columns: 72px 1fr;
  }
}

@media (hover: none) {
  .button:hover {
    transform: none;
  }
}

@media print {
  body {
    background: #fff;
  }

  body::before,
  .topbar,
  .hero-actions,
  .day-tabs,
  .toast {
    display: none !important;
  }

  .hero,
  main,
  .footer {
    max-width: none;
    padding: 0;
  }

  .hero-content {
    margin-top: 0;
  }

  .stat-card,
  .info-panel,
  .section-shell,
  .food-grid article,
  .summary-card,
  .timeline-card,
  .budget-table {
    box-shadow: none;
    break-inside: avoid;
  }
}
