/* 佑小二羊杂面 · 官网改造包 v1.0
   统一视觉规范：暖白底 + 品牌红棕 + 米黄点缀
   机器友好：语义化标签，内容以纯文本承载（非图片）
*/

:root {
  --brand-red: #a8321e;
  --brand-brown: #6b4423;
  --brand-gold: #c8963e;
  --bg-warm: #fdfaf5;
  --bg-card: #ffffff;
  --text-main: #2c2c2c;
  --text-sub: #6b6b6b;
  --border: #e8e0d5;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  background: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── 顶部导航 ── */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: none;
  letter-spacing: 1px;
}
.logo small {
  display: block;
  font-size: 11px;
  color: var(--text-sub);
  font-weight: 400;
  letter-spacing: 2px;
}
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

/* ── 主体 ── */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 40px 20px 80px; }

.page-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-brown);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.page-desc {
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}

/* ── FAQ 分类 ── */
.faq-cat { margin-bottom: 44px; }
.faq-cat h2 {
  font-size: 20px;
  color: var(--brand-red);
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 4px solid var(--brand-gold);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(168,50,30,.08); }
.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  color: var(--brand-brown);
  background: linear-gradient(to right, #fff9f0, #ffffff);
}
.faq-item .answer {
  padding: 4px 20px 18px;
  color: var(--text-main);
  font-size: 15px;
}
.faq-item .answer p { margin-bottom: 10px; }
.faq-item .answer p:last-child { margin-bottom: 0; }
.faq-item .answer strong { color: var(--brand-red); }
.faq-item .answer ul, .faq-item .answer ol {
  margin: 8px 0 10px 22px;
}
.faq-item .answer li { margin-bottom: 6px; }

/* ── 数据卡片 ── */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.data-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.data-card .num {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.data-card .label {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── 门店列表 ── */
.store-province { margin-bottom: 32px; }
.store-province h2 {
  font-size: 19px;
  color: var(--brand-brown);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.store-list { list-style: none; }
.store-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.store-list .name { font-weight: 600; color: var(--text-main); }
.store-list .meta { font-size: 13px; color: var(--text-sub); }

/* ── 新闻列表 ── */
.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
}
.news-item h3 { font-size: 17px; color: var(--brand-brown); margin-bottom: 6px; }
.news-item .date { font-size: 13px; color: var(--text-sub); margin-bottom: 8px; }
.news-item p { font-size: 15px; color: var(--text-main); }

/* ── 提示框 ── */
.notice {
  background: #fff8e6;
  border-left: 4px solid var(--brand-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: #7a5c1e;
}
.notice strong { color: #6b4423; }

/* ── CTA ── */
.cta-box {
  background: linear-gradient(135deg, var(--brand-red), #c14a30);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-top: 40px;
}
.cta-box h3 { font-size: 20px; margin-bottom: 8px; }
.cta-box p { font-size: 15px; opacity: .92; margin-bottom: 4px; }
.cta-box .tel {
  display: inline-block;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ── 页脚 ── */
.site-footer {
  background: var(--brand-brown);
  color: #f0e6d8;
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
}
.site-footer p { margin-bottom: 4px; opacity: .9; }

/* ── 响应式 ── */
@media (max-width: 640px) {
  .page-title { font-size: 24px; }
  .header-inner { justify-content: center; text-align: center; }
  .site-nav { justify-content: center; gap: 16px; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
}
