:root {
  --ink: #1a1a1a;
  --ink2: #3d3d3d;
  --ink3: #6b6b6b;
  --accent: #c8956c;
  --accent2: #e8c79a;
  --bg: #faf8f5;
  --card: #fff;
  --border: #eae5de;
}
* { box-sizing: border-box; }
body { font-family: 'Noto Sans SC', -apple-system, 'Microsoft YaHei', sans-serif; color: var(--ink2); line-height: 1.8; background: var(--bg); -webkit-font-smoothing: antialiased; }

/* Hero */
.hero { background: #1a1a1a; padding: 5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(200,149,108,0.06) 0%, transparent 60%); }
.hero h1 { color: #fff; font-size: 3rem; font-weight: 900; line-height: 1.25; margin-bottom: 1rem; position: relative; letter-spacing: 1px; }
.hero h1 em { font-family: 'Noto Serif SC', serif; font-style: normal; color: var(--accent2); position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 6px; background: rgba(200,149,108,0.2); border-radius: 3px; }
.hero .lead { color: #999; font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; position: relative; }
.hero .btn-cta { display: inline-block; background: linear-gradient(135deg, var(--accent) 0%, #b87d5a 100%); color: #fff; font-weight: 700; font-size: 1rem; padding: 0.8rem 2.5rem; border-radius: 50px; text-decoration: none; letter-spacing: 0.5px; transition: all 0.3s; position: relative; }
.hero .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,149,108,0.3); color: #fff; text-decoration: none; }

/* Section */
.section { padding: 4.5rem 0; }
.section-hd { text-align: center; margin-bottom: 3rem; }
.section-hd .tag { display: inline-block; font-size: 0.75rem; letter-spacing: 3px; color: var(--accent); margin-bottom: 0.6rem; text-transform: uppercase; }
.section-hd h2 { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 900; color: var(--ink); margin-bottom: 0.5rem; }
.section-hd p { color: var(--ink3); font-size: 0.95rem; }

/* Rank Card */
.rank-list { max-width: 860px; margin: 0 auto; }
.rank-card { display: flex; gap: 1.8rem; background: var(--card); border-radius: 12px; padding: 2rem 2rem 1.8rem; margin-bottom: 1.2rem; border: 1px solid var(--border); transition: all 0.25s; position: relative; align-items: flex-start; }
.rank-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: #d5cec4; transform: translateY(-1px); }
.rank-card.featured { border: 2px solid var(--accent); }
.rank-card.featured::before { content: '✦ 口碑推荐 ✦'; position: absolute; top: -14px; right: 20px; background: #e85d3a; color: #fff; font-size: 0.82rem; font-weight: 700; padding: 0.35rem 1.4rem; border-radius: 20px; letter-spacing: 1px; box-shadow: 0 4px 14px rgba(232,93,58,0.35); }

/* Badge */
.rank-badge-wrap { flex-shrink: 0; }
.rank-badge { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.4rem; color: #fff; }
.rank-card:nth-child(1) .rank-badge { background: linear-gradient(135deg, #f0c060 0%, #d4942b 100%); font-size: 1.7rem; box-shadow: 0 6px 20px rgba(212,148,43,0.3); }
.rank-card:nth-child(2) .rank-badge { background: linear-gradient(135deg, #e85d3a 0%, #d43d1a 100%); font-size: 1.5rem; box-shadow: 0 6px 16px rgba(232,93,58,0.35); }
.rank-card:nth-child(3) .rank-badge { background: linear-gradient(135deg, #d4a574 0%, #b8763a 100%); font-size: 1.5rem; box-shadow: 0 6px 16px rgba(184,118,58,0.25); }
.rank-card:nth-child(4) .rank-badge { background: linear-gradient(135deg, #bcc6d0 0%, #7d8a97 100%); font-size: 1.5rem; box-shadow: 0 6px 16px rgba(125,138,151,0.25); }
.rank-card:nth-child(5) .rank-badge { background: linear-gradient(135deg, #5b7a9a 0%, #3d5568 100%); font-size: 1.3rem; box-shadow: 0 6px 14px rgba(61,85,104,0.25); }

.rank-body { flex: 1; min-width: 0; }
.rank-body .name { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.rank-body .stars { margin-bottom: 0.45rem; }
.rank-body .stars .star-icon { color: #e5a845; font-size: 0.95rem; letter-spacing: 2px; }
.rank-body .stars .score { display: inline-block; background: #fef5e7; color: #c8956c; font-weight: 700; font-size: 0.82rem; padding: 0.1rem 0.6rem; border-radius: 4px; margin-left: 0.5rem; vertical-align: middle; }
.rank-body .bio { font-size: 0.95rem; color: var(--ink3); line-height: 1.8; margin-bottom: 0.7rem; }
.rank-body .meta { display: flex; gap: 0.6rem 1.6rem; flex-wrap: wrap; font-size: 0.88rem; color: #999; padding-top: 0.6rem; border-top: 1px solid var(--border); }
.rank-body .meta a { color: var(--accent); text-decoration: none; font-weight: 500; }
.rank-body .meta a:hover { text-decoration: underline; }
.rank-body .tags { margin-top: 0.45rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.rank-body .tags span { font-size: 0.75rem; background: #f5f2ed; color: #9b8c7c; padding: 0.15rem 0.7rem; border-radius: 3px; }

/* Note */
.note-card { max-width: 860px; margin: 2.5rem auto 0; background: #fffefb; border: 1px solid #e5dbcc; border-radius: 10px; padding: 1.3rem 1.8rem; font-size: 0.88rem; color: #8b7a64; text-align: center; }

/* About */
.about-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { max-width: 700px; margin: 0 auto; text-align: center; }
.about-grid h2 { font-family: 'Noto Serif SC', serif; font-size: 1.6rem; font-weight: 900; color: var(--ink); margin-bottom: 1rem; }
.about-grid p { font-size: 0.95rem; color: var(--ink3); line-height: 1.9; }
.about-cta { margin-top: 1.8rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.about-cta .tel { font-size: 1.5rem; font-weight: 900; color: var(--accent); text-decoration: none; letter-spacing: 1px; }
.about-cta .tel:hover { color: #b87d5a; }
.about-cta .web { font-size: 0.95rem; color: var(--ink3); }
.about-cta .web a { color: var(--accent); text-decoration: none; }

/* Footer */
.footer { background: #1a1a1a; color: #777; padding: 2rem 0; font-size: 0.82rem; text-align: center; }
.footer a { color: #999; }
.footer a:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 767px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero .lead { font-size: 0.92rem; }
  .rank-card { flex-direction: column; gap: 1rem; padding: 1.5rem 1.2rem; }
  .rank-badge { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 10px; }
  .rank-body .name { font-size: 1.05rem; }
  .rank-body .bio { font-size: 0.9rem; }
  .section { padding: 3rem 0; }
  .section-hd h2 { font-size: 1.5rem; }
  .rank-body .meta { font-size: 0.8rem; gap: 0.4rem 1rem; }
}
