:root {
  --bg: #F7F2EA;
  --surface: #FFFFFF;
  --surface-soft: #FBF8F3;
  --primary: #6B4226;
  --primary-dark: #4E2E1A;
  --primary-light: #8B6247;
  --secondary: #3E5641;
  --secondary-dark: #2C3F2F;
  --secondary-light: #5C7A5F;
  --accent: #C68A3D;
  --accent-light: #F0DDB8;
  --border: #E4DACB;
  --text-main: #2B2620;
  --text-secondary: #7A6E5E;
  --text-light: #A39B8F;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(60,40,20,.04);
  --shadow-md: 0 8px 24px rgba(60,40,20,.06);
  --shadow-lg: 0 16px 40px rgba(60,40,20,.1);
  --container-w: 1140px;
  --space-section: 76px;
  --space-section-mobile: 48px;
  --font-serif: "Noto Serif SC","Songti SC","SimSun",serif;
  --font-sans: "Noto Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.75; color: var(--text-main); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.3; color: var(--text-main); }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-section) 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,242,234,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.brand-text { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--primary); letter-spacing: .02em; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 16px; border-radius: var(--radius-pill); font-size: 15px; font-weight: 500; color: var(--text-main); }
.nav-link:hover { background: rgba(107,66,38,.08); color: var(--primary); }
.nav-link.active { background: var(--primary); color: #fff; }
.header-right { display: flex; align-items: center; gap: 12px; }
.location-entry { position: relative; display: flex; align-items: center; gap: 7px; padding: 9px 17px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; color: var(--secondary); background: var(--surface); cursor: pointer; }
.location-entry:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.location-entry i { color: var(--accent); }
.location-popover { position: absolute; top: calc(100% + 10px); right: 0; width: 260px; padding: 18px 20px; background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(-7px); transition: all .25s ease; z-index: 50; }
.location-entry:hover .location-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.location-popover p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 4px; }
.location-popover .pop-title { font-weight: 600; color: var(--text-main); font-size: 14px; margin-bottom: 8px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); color: var(--primary); font-size: 18px; align-items: center; justify-content: center; }

/* Breadcrumb */
.breadcrumb { padding: 22px 0 10px; font-size: 14px; color: var(--text-secondary); }
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 9px; color: var(--text-light); }

/* Category Hero */
.cat-hero { padding: 28px 0 32px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--bg) 0%, var(--surface-soft) 100%); }
.cat-hero h1 { font-size: 34px; font-weight: 900; margin-bottom: 10px; letter-spacing: .01em; }
.cat-hero p { font-size: 16px; color: var(--text-secondary); max-width: 700px; line-height: 1.85; }
.cat-hero .hero-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }

/* Layout */
.category-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 40px 0 64px; align-items: start; }
.posts-list { display: flex; flex-direction: column; gap: 24px; }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s ease, transform .3s ease; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card.large { display: flex; }
.post-card.large .post-media { width: 45%; flex-shrink: 0; overflow: hidden; position: relative; }
.post-card.large .post-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .45s ease; }
.post-card.large:hover .post-media img { transform: scale(1.05); }
.post-card.large .post-body { flex: 1; padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; }
.post-card.small { display: flex; align-items: center; gap: 22px; padding: 18px 20px; }
.post-card.small .post-media { width: 130px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; }
.post-card.small .post-media img { width: 100%; height: 96px; object-fit: cover; transition: transform .4s ease; }
.post-card.small:hover .post-media img { transform: scale(1.07); }
.post-card.small .post-body { flex: 1; padding: 0; }
.post-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.tag { display: inline-block; padding: 4px 13px; background: var(--accent-light); border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; color: var(--primary-dark); }
.tag-green { background: rgba(62,86,65,.12); color: var(--secondary-dark); }
.post-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.post-title:hover { color: var(--primary); }
.post-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-light); }
.post-meta .read-more { font-size: 13px; font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 5px; }
.post-meta .read-more:hover { color: var(--primary); gap: 9px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 17px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud .tag { font-size: 13px; cursor: pointer; transition: background .25s ease, color .25s ease; }
.tag-cloud .tag:hover { background: var(--accent); color: #fff; }
.hot-list { display: flex; flex-direction: column; }
.hot-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.hot-item:last-child { border-bottom: none; }
.hot-num { font-family: var(--font-serif); font-weight: 700; color: var(--accent); width: 24px; flex-shrink: 0; text-align: center; }
.hot-item span:last-child { flex: 1; line-height: 1.5; }
.hot-item:hover span:last-child { color: var(--primary); }
.booking-mini { background: var(--secondary); color: #fff; border-radius: var(--radius-lg); padding: 24px; text-align: center; border: none; box-shadow: var(--shadow-md); }
.booking-mini h3 { color: #fff; border-bottom: none; font-size: 17px; margin-bottom: 8px; }
.booking-mini p { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.7; }
.booking-mini .btn-light { background: #fff; color: var(--primary); border: none; }
.booking-mini .btn-light:hover { background: var(--accent-light); }
.recommend-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); min-height: 220px; display: flex; align-items: flex-end; }
.recommend-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.recommend-overlay { position: relative; background: linear-gradient(180deg, transparent, rgba(43,38,32,.78)); padding: 20px 22px; width: 100%; }
.recommend-overlay h4 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.recommend-overlay p { color: rgba(255,255,255,.85); font-size: 13px; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 20px 0 50px; }
.page-link { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface); font-size: 14px; color: var(--text-main); transition: all .25s ease; }
.page-link:hover { border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-link.next { width: auto; padding: 0 20px; gap: 6px; }

/* Footer */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.85); padding: 0 0 30px; }
.footer-extended { border-bottom: 1px solid rgba(255,255,255,.12); padding: 36px 0 30px; }
.footer-extended h4 { color: #fff; font-size: 16px; margin-bottom: 16px; letter-spacing: .03em; }
.extended-links { display: flex; flex-wrap: wrap; gap: 10px 30px; }
.extended-links a { font-size: 14px; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 2px; transition: color .25s ease, border-color .25s ease; }
.extended-links a:hover { color: var(--accent); border-color: var(--accent); }
.footer-columns { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; padding: 38px 0 30px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .03em; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 10px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 9px; padding-left: 14px; position: relative; transition: color .25s ease, padding-left .25s ease; }
.footer-col a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.footer-col a:hover { color: var(--accent); padding-left: 19px; }
.footer-col i { margin-right: 8px; color: var(--accent); width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Responsive */
@media (max-width: 1024px) {
  .category-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1 1 calc(50% - 24px); min-width: 200px; }
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 24px; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .nav-link { display: block; padding: 11px 14px; border-radius: var(--radius-sm); }
  .nav-toggle { display: inline-flex; }
  .post-card.large { flex-direction: column; }
  .post-card.large .post-media { width: 100%; }
  .post-card.large .post-media img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .section { padding: var(--space-section-mobile) 0; }
  .cat-hero h1 { font-size: 26px; }
  .post-card.small { flex-direction: column; align-items: flex-start; gap: 12px; }
  .post-card.small .post-media { width: 100%; }
  .post-card.small .post-media img { height: auto; aspect-ratio: 16/7; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 28px; }
  .location-popover { display: none; }
}
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .brand-text { font-size: 17px; }
  .brand-icon { width: 34px; height: 34px; font-size: 14px; }
  .cat-hero h1 { font-size: 22px; }
  .sidebar { flex-direction: column; }
  .side-card { min-width: auto; }
  .footer-columns { grid-template-columns: 1fr; gap: 24px; }
  .post-title { font-size: 17px; }
  .post-excerpt { font-size: 13px; }
  .page-link { width: 38px; height: 38px; }
}

/* Small helpers */
@media (max-width: 1024px) {
  .sidebar { order: 2; }
}

:root {
  --paper: #F7F2EA;
  --card: #FFFFFF;
  --primary: #6B4226;
  --primary-dark: #54331C;
  --accent: #3E5641;
  --accent-light: #4A6B50;
  --gold: #C68A3D;
  --border: #E4DACB;
  --border-light: #EFE7DC;
  --text: #2B2620;
  --text-soft: #5C5246;
  --text-light: #8A7A6A;
  --shadow: 0 8px 24px rgba(60,40,20,.06);
  --shadow-hover: 0 14px 36px rgba(60,40,20,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-width: 1180px;
  --space-section: 80px;
  --font-title: "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: var(--text); background-color: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(60,40,20,.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.brand-text { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--primary); letter-spacing: 1px; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 16px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--text-soft); transition: background .25s, color .25s; }
.nav-link:hover { background: rgba(107,66,38,.08); color: var(--primary); }
.nav-link.active { background: var(--primary); color: #fff; }
.header-right { display: flex; align-items: center; gap: 16px; }
.location-entry { position: relative; display: flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid var(--border); background: #fff; border-radius: 999px; font-size: 14px; color: var(--text-soft); cursor: pointer; transition: border-color .25s, color .25s; }
.location-entry:hover { border-color: var(--primary); color: var(--primary); }
.location-popover { display: none; position: absolute; top: calc(100% + 12px); right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; width: 240px; box-shadow: var(--shadow-hover); z-index: 200; }
.location-entry:hover .location-popover { display: block; }
.pop-title { font-weight: 700; font-size: 14px; color: var(--primary); margin-bottom: 6px; font-family: var(--font-title); }
.location-popover p { font-size: 13px; color: var(--text-soft); line-height: 1.7; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--primary); cursor: pointer; padding: 6px; border-radius: 8px; }
.nav-toggle:hover { background: rgba(107,66,38,.08); }

/* ---------- Category hero ---------- */
.category-hero { padding: 56px 0 36px; position: relative; }
.category-hero::before { content: ""; position: absolute; inset: 0; background-image: url('/assets/images/backpic/back-1.webp'); background-size: cover; background-position: center; opacity: .07; z-index: 0; }
.category-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-light); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .5; }
.category-hero h1 { font-family: var(--font-title); font-size: 36px; line-height: 1.3; color: var(--primary); margin-bottom: 14px; font-weight: 800; letter-spacing: 1px; }
.category-hero .category-desc { max-width: 760px; font-size: 16px; color: var(--text-soft); line-height: 1.8; }
.category-meta { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(198,138,61,.15); color: #9A6A2F; font-size: 13px; font-weight: 600; padding: 4px 14px; border-radius: 999px; border: 1px solid rgba(198,138,61,.3); }
.badge.updates { background: rgba(62,86,65,.12); color: var(--accent); border-color: rgba(62,86,65,.25); }
.page-header-line { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 20px 0 0; }

/* ---------- Layout ---------- */
.content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; padding: 24px 24px 72px; align-items: start; }
.list-main { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 96px; }

/* ---------- Article cards ---------- */
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .4s, transform .4s; }
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-card .cover-wrap { position: relative; overflow: hidden; height: 340px; }
.feature-card .cover-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-card:hover .cover-wrap img { transform: scale(1.05); }
.feature-card .cover-mask { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(43,38,32,.88) 100%); }
.feature-card .feature-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 30px; }
.feature-card .feature-tags { display: flex; gap: 8px; margin-bottom: 10px; }
.feature-card .feature-title { font-family: var(--font-title); font-size: 24px; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.feature-card .feature-excerpt { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.feature-card .feature-meta { font-size: 13px; color: rgba(255,255,255,.85); display: flex; gap: 16px; align-items: center; }

.article-row { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; gap: 0; transition: box-shadow .3s, transform .3s; }
.article-row:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.article-row .row-thumb { width: 240px; min-height: 180px; flex-shrink: 0; overflow: hidden; position: relative; }
.article-row .row-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-row:hover .row-thumb img { transform: scale(1.06); }
.article-row .row-content { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.article-row .row-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.tag-pill { background: rgba(107,66,38,.08); color: var(--primary); font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: 999px; }
.tag-pill.green { background: rgba(62,86,65,.1); color: var(--accent); }
.tag-pill.gold { background: rgba(198,138,61,.12); color: #9A6A2F; }
.article-row .row-title { font-family: var(--font-title); font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 8px; transition: color .25s; }
.article-row:hover .row-title { color: var(--primary); }
.article-row .row-excerpt { font-size: 14px; color: var(--text-soft); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.article-row .row-meta { display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--text-light); }
.read-more { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); font-weight: 600; font-size: 14px; transition: color .25s, gap .25s; }
.read-more:hover { color: var(--gold); gap: 9px; }

.aside-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; }
.aside-title { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 18px; position: relative; padding-left: 14px; border-left: 3px solid var(--gold); line-height: 1.4; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { display: inline-block; background: var(--paper); border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px; font-size: 13px; color: var(--text-soft); transition: all .25s; }
.tag-cloud a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.hot-list { list-style: none; counter-reset: hot; display: flex; flex-direction: column; gap: 0; }
.hot-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--border-light); align-items: flex-start; counter-increment: hot; }
.hot-list li:last-child { border-bottom: none; }
.hot-list .num { font-family: var(--font-title); font-weight: 800; font-size: 20px; color: var(--gold); line-height: 1.2; min-width: 26px; }
.hot-list .hot-item { flex: 1; }
.hot-list .hot-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.5; margin-bottom: 2px; transition: color .2s; cursor: pointer; }
.hot-list .hot-title:hover { color: var(--primary); }
.hot-list .hot-sub { font-size: 12px; color: var(--text-light); }
.aside-cta { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.aside-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--gold)); }
.aside-cta h3 { font-family: var(--font-title); font-size: 20px; color: var(--primary); margin-bottom: 8px; }
.aside-cta p { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; line-height: 1.7; }
.aside-cta .cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; border-radius: 999px; padding: 10px 26px; font-size: 15px; font-weight: 600; border: none; cursor: pointer; transition: background .25s, transform .2s; }
.aside-cta .cta-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.aside-cta .cta-phone { display: block; margin-top: 14px; font-size: 18px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.aside-cta .open-tip { font-size: 13px; color: var(--text-light); margin-top: 6px; }
.aside-cta .divider { width: 40px; height: 1px; background: var(--border); margin: 14px auto; }
.recommend-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--card); }
.recommend-card a { display: block; position: relative; }
.recommend-card img { width: 100%; height: 200px; object-fit: cover; }
.recommend-card .rec-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 16px 14px; background: linear-gradient(transparent, rgba(0,0,0,.72)); color: #fff; font-size: 14px; font-weight: 600; line-height: 1.5; text-align: left; }

/* ---------- Pagination ---------- */
.pagination-wrap { padding: 8px 24px 72px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border); background: #fff; border-radius: 999px; font-size: 14px; color: var(--text-soft); transition: all .25s; }
.pagination a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination a.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
.pagination .page-dots { color: var(--text-light); padding: 0 4px; }

/* ---------- Footer ---------- */
.site-footer { background: #2B2620; color: #E8DED2; padding-top: 56px; margin-top: 0; }
.site-footer .container { padding-bottom: 32px; }
.footer-extended { padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 32px; }
.footer-extended h4 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.extended-links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.extended-links a { position: relative; padding-left: 14px; font-size: 14px; color: #CBB89F; transition: color .25s; }
.extended-links a::before { content: "›"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.extended-links a:hover { color: #fff; }
.footer-columns { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; margin-bottom: 32px; }
.footer-col h4 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col p { font-size: 14px; line-height: 1.8; color: #CBB89F; }
.footer-col a { display: block; font-size: 14px; color: #CBB89F; padding: 3px 0; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p i { color: var(--gold); margin-right: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; text-align: center; font-size: 13px; color: #9A8C7E; }
.footer-bottom p { font-size: 13px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); padding: 56px 0; margin-bottom: 0; color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-title); font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-band p { font-size: 15px; opacity: .9; max-width: 540px; }
.cta-band .btn-wrap { display: flex; gap: 16px; flex-shrink: 0; }
.btn-primary { display: inline-block; background: var(--gold); color: #3E2C1B; border: none; border-radius: 999px; padding: 12px 32px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .25s, transform .2s, color .25s; }
.btn-primary:hover { background: #D89C57; color: #3E2C1B; transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); border-radius: 999px; padding: 12px 32px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .25s, border-color .25s, color .25s; }
.btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

/* ---------- Mobile Menu ---------- */
@media (max-width: 992px) {
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; display: none; box-shadow: 0 16px 32px rgba(60,40,20,.1); z-index: 999; }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; border-radius: 8px; padding: 12px 16px; font-size: 16px; }
  .nav-toggle { display: block; }
  .content-wrap { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; order: 2; width: 100%; gap: 24px; }
  .list-main { order: 1; }
  .article-row { flex-direction: column; }
  .article-row .row-thumb { width: 100%; min-height: 200px; }
}
@media (max-width: 768px) {
  :root { --space-section: 56px; }
  .category-hero { padding: 36px 0 28px; }
  .category-hero h1 { font-size: 27px; }
  .category-hero .category-desc { font-size: 15px; }
  .feature-card .cover-wrap { height: 260px; }
  .feature-card .feature-body { padding: 20px; }
  .feature-card .feature-title { font-size: 19px; }
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .cta-band .container { flex-direction: column; text-align: center; align-items: center; }
  .cta-band .btn-wrap { align-items: center; justify-content: center; flex-wrap: wrap; }
  .pagination-wrap { padding-bottom: 56px; }
  .header-inner { height: 64px; }
  .brand-text { font-size: 17px; }
  .location-entry span { display: none; }
  .location-entry { padding: 8px 12px; }
  .aside-cta { text-align: center; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .content-wrap { padding: 16px 18px 56px; gap: 32px; }
  .feature-card .cover-wrap { height: 220px; }
  .article-row .row-thumb { min-height: 160px; }
  .article-row .row-content { padding: 18px; }
  .category-meta { gap: 10px; }
  .page-header-line { margin-top: 16px; }
  .footer-columns { gap: 22px; }
  .extended-links { flex-direction: column; gap: 10px; }
}
