:root {
  --wish-forest: #155327;
  --wish-leaf: #2f7a48;
  --wish-mint: #f4faf5;
  --wish-paper: #ffffff;
  --wish-amber: #d79a2b;
  --wish-ink: #17231d;
  --wish-muted: #52655b;
  --wish-line: #d7e1d8;
}

* {
  box-sizing: border-box;
}

body.city-wish-page {
  margin: 0;
  color: var(--wish-ink);
  background: var(--wish-mint);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

a {
  color: inherit;
}

:where(a, button):focus-visible {
  outline: 3px solid #f1b853;
  outline-offset: 3px;
}

.wish-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: var(--wish-forest);
}

.wish-topbar-inner {
  width: min(1120px, calc(100% - 28px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.wish-brand,
.wish-nav {
  display: flex;
  align-items: center;
}

.wish-brand {
  min-width: 0;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.wish-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.wish-nav {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wish-nav a,
.wish-nav button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.wish-hero {
  color: #fff;
  background: linear-gradient(115deg, rgba(10, 47, 23, 0.96), rgba(21, 83, 39, 0.9) 52%, rgba(80, 111, 47, 0.84));
}

.wish-hero-inner {
  width: min(1120px, calc(100% - 28px));
  min-height: min(58dvh, 560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(48px, 8vw, 90px) 0;
}

.wish-kicker {
  margin: 0 0 10px;
  color: #f6d18a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wish-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.wish-lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.75;
}

.wish-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.wish-primary,
.wish-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.wish-primary {
  color: #1d321e;
  background: #f1b853;
}

.wish-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.wish-tag-stack {
  display: grid;
  gap: 14px;
}

.wish-tag {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 22px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 8px solid var(--wish-amber);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(8, 35, 18, 0.22);
}

.wish-tag span {
  color: #f6d18a;
  font-size: 0.8rem;
  font-weight: 900;
}

.wish-tag strong {
  font-size: 1.16rem;
}

.wish-tag p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.wish-band {
  padding: 46px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--wish-line);
  background: #fff;
}

.wish-band:nth-of-type(even) {
  background: var(--wish-mint);
}

.wish-band-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.wish-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.wish-section-head h2 {
  margin: 0 0 9px;
  color: #143f22;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  letter-spacing: 0;
}

.wish-section-head p {
  margin: 0;
  color: var(--wish-muted);
  line-height: 1.75;
}

.wish-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--wish-line);
  border-bottom: 1px solid var(--wish-line);
}

.wish-fact {
  min-width: 0;
  padding: 20px 22px 22px 0;
}

.wish-fact + .wish-fact {
  padding-left: 22px;
  border-left: 1px solid var(--wish-line);
}

.wish-fact span {
  color: var(--wish-muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.wish-fact strong {
  display: block;
  margin-top: 5px;
  color: #143f22;
  font-size: 1.45rem;
}

.wish-tree-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wish-tree-card {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--wish-line);
  border-top: 5px solid var(--wish-amber);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.wish-tree-card:hover {
  border-color: #d79a2b;
  box-shadow: 0 10px 28px rgba(20, 72, 33, 0.12);
}

.wish-tree-card span {
  color: var(--wish-leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.wish-tree-card strong {
  color: #143f22;
  font-size: 1.18rem;
}

.wish-tree-card p {
  margin: 0;
  color: var(--wish-muted);
  line-height: 1.6;
}

.wish-tree-card small {
  color: #143f22;
  font-weight: 900;
}

.wish-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wish-city-links a,
.wish-city-links span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--wish-line);
  border-radius: 8px;
  color: #143f22;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.wish-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--wish-muted);
  background: #eef5ef;
}

.wish-footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.wish-footer p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .wish-topbar-inner {
    min-height: auto;
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .wish-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .wish-nav a,
  .wish-nav button {
    flex: 1 1 auto;
  }

  .wish-hero-inner,
  .wish-facts,
  .wish-tree-grid {
    grid-template-columns: 1fr;
  }

  .wish-hero-inner {
    min-height: auto;
    padding: 44px 0 34px;
  }

  .wish-tag-stack {
    grid-template-columns: 1fr;
  }

  .wish-tag {
    min-height: 112px;
  }

  .wish-fact,
  .wish-fact + .wish-fact {
    padding: 16px 0;
    border-left: 0;
  }

  .wish-fact + .wish-fact {
    border-top: 1px solid var(--wish-line);
  }
}
