:root {
  --bg: #f4efe4;
  --ink: #161410;
  --muted: #6a6258;
  --line: #ddd4c4;
  --accent: #b45309;
  --forest: #3f5d4a;
  --forest-dark: #2c241c;
  --card: #fffdf8;
  --gold: #d4a017;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang HK", "Hiragino Sans GB", sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
  object-fit: contain;
}
.brand strong {
  letter-spacing: 0.18em;
  font-size: 15px;
  display: block;
  font-family: "Noto Serif TC", "Songti TC", serif;
}
.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
}
.nav { display: flex; gap: 4px 16px; flex-wrap: wrap; font-size: 14px; align-items: center; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.on { color: var(--accent); border-bottom-color: var(--accent); }
.nav a.maps { color: var(--forest); }
.nav a.hktmap { color: #1d4ed8; }
.menu-btn {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 40px;
  padding: 0 12px;
  font: inherit;
  cursor: pointer;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 32px 20px 48px; width: 100%; }
.hero-band {
  background:
    radial-gradient(1200px 400px at 80% -20%, rgba(212, 160, 23, 0.22), transparent 50%),
    linear-gradient(160deg, #2c241c 0%, #3f5d4a 78%);
  color: #f8f4ec;
  padding: 52px 22px 46px;
}
.hero-band .wrap { padding-top: 0; padding-bottom: 0; }
.hero-band .kicker { color: #f5c16c; }
.hero-band h1 {
  color: #fff;
  margin: 8px 0 14px;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.hero-band p { max-width: 40rem; color: #e8e0d4; line-height: 1.7; margin: 0; font-size: 1.05rem; }
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7cbb8;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}
h1, h2 { font-family: "Noto Serif TC", "Songti TC", serif; }
h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25; margin: 8px 0 12px; }
.dek { color: var(--muted); font-size: 1.08rem; line-height: 1.55; }
.cats { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 22px; }
.cats a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  background: #fff;
}
.cats a.on { background: var(--forest); color: #fff; border-color: var(--forest); }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.lead {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-bottom: 22px;
}
.lead img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; background: #e8e2d6; }
.lead .pad { padding: 28px 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.lead h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 8px 0 10px; }
.lead p { margin: 0; color: var(--muted); line-height: 1.6; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(44, 36, 28, 0.08); }
.card img { width: 100%; height: 168px; object-fit: cover; background: #e8e2d6; }
.card .pad { padding: 14px 16px 18px; flex: 1; }
.card h2 { font-size: 1.08rem; margin: 0 0 6px; line-height: 1.35; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.cat-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 4px;
}
.date-chip { display: block; margin-top: 10px; font-size: 12px; color: #8a8276; }
.hero { width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; margin: 8px 0 18px; }
.post { max-width: 740px; margin: 0 auto; padding: 28px 20px 80px; }
.body { line-height: 1.8; font-size: 1.05rem; }
.body h2, .body h3 { margin: 1.6em 0 0.5em; }
.body p { margin: 0 0 1em; }
.body img { max-width: 100%; border-radius: 10px; margin: 1em 0; }
.body a { color: var(--forest); }
.preview-banner { background: #fef3c7; color: #92400e; padding: 10px 16px; font-weight: 700; margin: 0; }
.page { max-width: 720px; }
.page p { line-height: 1.75; color: #3a342c; }
.page h2 { font-size: 1.25rem; margin: 1.6em 0 0.5em; }
.empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  color: var(--muted);
}
.empty strong { color: var(--ink); display: block; margin-bottom: 6px; font-family: "Noto Serif TC", serif; font-size: 1.15rem; }
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 28px 0 8px; }
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px 22px;
  text-decoration: none;
  color: inherit;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile:hover { border-color: #c9bda8; }
.tile strong { display: block; font-family: "Noto Serif TC", serif; font-size: 1.12rem; }
.tile span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.tile em { font-style: normal; font-size: 11px; letter-spacing: 0.08em; color: var(--accent); font-weight: 700; }
.section-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 8px 0 14px;
  font-weight: 700;
}
.kps, .skus, .sources {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px 18px;
  margin: 22px 0;
}
.kps h2, .skus h2, .sources h2 { font-size: 1.05rem; margin: 0 0 10px; }
.kps ul { margin: 0; padding-left: 1.2em; line-height: 1.65; }
.sku-grid { display: grid; gap: 10px; }
.sku {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.sku:first-of-type { border-top: 0; }
.sku img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; background: #eee8dc; }
.sku .price { color: var(--accent); font-weight: 700; font-size: 14px; }
.sources a { color: var(--forest); }
.meta { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.foot {
  border-top: 1px solid var(--line);
  padding: 28px 22px 32px;
  font-size: 13px;
  color: var(--muted);
  background: #fff;
  margin-top: auto;
}
.foot-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.foot strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 0.08em;
}
.foot a { color: var(--forest); text-decoration: none; }
.foot a:hover { text-decoration: underline; }
.foot ul { list-style: none; margin: 0; padding: 0; line-height: 1.9; }
.foot-copy { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .lead { grid-template-columns: 1fr; }
  .lead img { min-height: 200px; max-height: 240px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .menu-btn { display: inline-flex; align-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 18px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav.open { display: flex; }
}
@media (max-width: 560px) {
  .foot-inner { grid-template-columns: 1fr; }
}
