/* 京都集团官网 · 全局色彩系统（围绕「京都餐饮」PNG 标识：主红 #b30d16） */
:root {
  color-scheme: light;
  /* ── 背景：提亮一档，整体更通透（仍保持暖白系） ── */
  --bg: #fdfcfa;
  --bg-alt: #f7f3ef;
  --card: #fff;

  /* ── 文字：略提亮，减轻沉闷感 ── */
  --text: #2e2624;
  --title-ink: #1c1412;
  --muted: #5f5854;
  --muted-light: #8f8782;

  /* ── 品牌色：主红不变；金色略提亮，浅色区标题/点缀更清晰 ── */
  --brand: #b30d16;
  --brand-dark: #8c0a11;
  --gold: #a67a3a;
  --gold-soft: rgba(179, 13, 22, 0.08);
  --gold-text: #f7efe4;
  /* 深色底上的金色字/边（页脚、首屏等） */
  --gold-on-dark: #f2d9a8;

  /* ── 线条与阴影 ── */
  --line: #e6ddd4;
  --shadow-card: 0 4px 24px rgba(44, 31, 26, 0.07);
  --shadow-hover: 0 12px 36px rgba(44, 31, 26, 0.12);

  /* ── 圆角 ── */
  --radius-md: 10px;
  --radius-lg: 14px;

  /* ── 布局 ── */
  --max: 1100px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --touch-min: 44px;

  /* ── 深色区：略提亮，避免「近黑」压抑（仍保持酒红暖调） ── */
  --dark-bg: linear-gradient(180deg, #3a2220 0%, #261816 100%);
  --dark-text: rgba(255, 250, 246, 0.9);
  --dark-link: rgba(255, 228, 180, 0.95);
  --dark-border-top: 1px solid rgba(212, 175, 120, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* 页内锚点（#toc、目录）不被 sticky 顶栏挡住 */
  scroll-padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}
img, video, svg {
  max-width: 100%;
  height: auto;
}
a {
  -webkit-tap-highlight-color: rgba(201, 38, 30, 0.12);
}

/* 键盘导航可见焦点（不影响鼠标点击外观） */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
  outline-offset: 1px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  /* 微信内置浏览器下增强顶栏可读性 */
  box-shadow: 0 1px 0 rgba(44, 31, 26, 0.04);
}
.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  padding-top: calc(0.75rem + var(--safe-top));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
/* LOGO：横向「京都餐饮」PNG；字标与法人名对读屏保留、视觉隐藏 */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
  max-width: min(100%, 42rem);
  min-width: 0;
}
.logo-mark {
  width: auto;
  height: 44px;
  max-width: min(220px, 72vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  vertical-align: middle;
}
.logo .logo-wordmark {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.logo-company {
  font-size: clamp(0.95rem, 2.85vw, 1.28rem);
  line-height: 1.22;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}
@media (max-width: 400px) {
  .logo-mark {
    height: 38px;
    max-width: min(200px, 78vw);
  }
  .logo-company {
    font-size: clamp(0.82rem, 3.6vw, 1rem);
  }
}
.nav-toggle {
  display: none;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  flex-shrink: 0;
  touch-action: manipulation;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--brand); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    width: 100%;
    display: none;
    padding-bottom: 0.75rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    min-height: var(--touch-min);
    line-height: calc(var(--touch-min) - 1.7rem);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav li:last-child a { border-bottom: none; }
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem;
}
.inner.narrow { max-width: 720px; }

.hero {
  background: linear-gradient(135deg, #f5f0eb 0%, #fff 50%);
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.25;
}
.lead { color: var(--muted); margin: 0 0 1.25rem; max-width: 40em; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  min-height: var(--touch-min);
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--card);
  font-size: 0.95rem;
  line-height: 1.3;
  text-align: center;
  touch-action: manipulation;
}
.btn.primary {
  background: var(--brand);
  border-color: var(--brand-dark);
  color: #fff;
}
.btn:hover, .btn:active { opacity: 0.92; }

.section { padding: 0.5rem 0 2rem; }
.section.muted { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section h2 { margin-top: 0; font-size: 1.35rem; }

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.card-grid a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 1rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card-grid a:hover {
  border-color: rgba(201, 38, 30, 0.25);
  box-shadow: 0 6px 24px rgba(44, 31, 26, 0.08);
}
.card-grid strong { display: block; color: var(--brand); margin-bottom: 0.35rem; }
.card-grid span { font-size: 0.9rem; color: var(--muted); }

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0;
  padding-bottom: calc(2rem + var(--safe-bottom));
  background: var(--dark-bg);
  color: var(--dark-text);
  font-size: 0.9rem;
  border-top: var(--dark-border-top);
}
.site-footer a { color: var(--dark-link); }
.site-footer .inner { padding-top: 1rem; padding-bottom: 1rem; }
.site-footer .small { font-size: 0.8rem; opacity: 0.85; }
.site-footer-tech {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.72;
  color: var(--dark-text);
}
.site-footer-tech a {
  color: var(--dark-link);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (max-width: 768px) {
  .inner { padding-left: max(1rem, var(--safe-left)); padding-right: max(1rem, var(--safe-right)); }
  .page-title { font-size: 1.45rem; }
  .section h2 { font-size: 1.2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .store-facts { padding: 0.9rem 1rem; }
}

/* 文章 / 门店通用 */
.page-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  word-break: break-word;
  color: var(--title-ink);
  letter-spacing: 0.02em;
}
.meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.prose {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.prose h2 { font-size: 1.2rem; margin-top: 1.75rem; }
.prose h3 {
  font-size: 1.05rem;
  margin-top: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--title-ink);
  font-weight: 700;
}
.prose ul { padding-left: 1.25rem; }
.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-left: 0.65rem;
  border-left: 3px solid var(--gold);
}
.breadcrumb a { color: var(--brand); font-weight: 500; }

/* 门店详情页首图：与品牌页/首页共用门头时可复用，强调横图裁切一致 */
.store-hero-photo {
  margin: 0 0 1.15rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.store-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 28%;
}

/* 门店详情页：多图环境（大厅/包间） */
.store-env-section {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.store-env-section > h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--title-ink);
}
.store-env-section > .meta {
  margin-bottom: 1rem;
}
.store-env-sub {
  margin: 1.15rem 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--title-ink);
}
.store-env-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.store-env-grid figure {
  margin: 0;
}
.store-env-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.store-env-grid figcaption {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  text-align: center;
}
.store-hero-photo--secondary {
  margin-top: 0.75rem;
}
.store-hero-photo--secondary img {
  aspect-ratio: 16 / 9;
}

.store-profile-lead {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: -0.25rem 0 1rem;
}
.store-section-h2 {
  margin: 1.5rem 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--title-ink);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}
.store-top5 {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}
.store-top5 li {
  margin-bottom: 0.65rem;
}
.store-top5 strong {
  color: var(--brand);
  font-weight: 700;
}
.store-bullet-list {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.65;
}
.store-bullet-list li {
  margin-bottom: 0.4rem;
}
.store-note {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(201, 38, 30, 0.06);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.inner.narrow .prose {
  max-width: 42rem;
}

.store-figure {
  margin: 0 0 1.35rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
.store-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.store-figure-cap {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.store-facts {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1rem;
  row-gap: 0.45rem;
  align-items: baseline;
  margin: 0.75rem 0 1.25rem;
  padding: 0.65rem 0.85rem 0.7rem 0.95rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
  font-size: 0.9rem;
  line-height: 1.45;
}
.store-facts dt {
  margin: 0;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
}
.store-facts dd {
  margin: 0;
  color: var(--text);
  word-break: break-word;
}
.store-facts dd:last-of-type {
  padding-bottom: 0;
}
.store-detail-rich .store-facts {
  box-shadow: 0 6px 28px rgba(44, 31, 26, 0.06);
  border-radius: 12px;
}
.store-facts a[href^="tel:"] {
  display: inline-block;
  padding: 0.15rem 0;
  min-width: var(--touch-min);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand);
  text-decoration: none;
}
.store-facts a[href^="tel:"]:hover {
  text-decoration: underline;
}

/* 门店「联系与地址」标题略收紧 */
main .inner.narrow section:has(.store-facts) > h2 {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 480px) {
  .store-facts {
    grid-template-columns: 1fr;
    row-gap: 0.2rem;
    padding: 0.6rem 0.75rem;
  }
  .store-facts dt {
    margin-top: 0.5rem;
    white-space: normal;
  }
  .store-facts dt:first-child {
    margin-top: 0;
  }
  .store-facts dd {
    margin-bottom: 0.45rem;
    color: var(--muted);
  }
  .store-facts dd:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
}

.faq-list h2 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.faq-list p { margin: 0 0 1rem; color: var(--muted); }

.article-list { list-style: none; padding: 0; margin: 0; }
.article-list li {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.article-list a { font-weight: 600; color: var(--brand); text-decoration: none; }
.article-list a:hover { text-decoration: underline; }
.article-list .excerpt { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 0.35rem; }

.articles-index__subh {
  margin: 1.75rem 0 0.35rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--title-ink);
  letter-spacing: 0.02em;
}
.articles-index__subh:first-of-type {
  margin-top: 1.25rem;
}
.articles-index__sublead {
  margin-top: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.86rem;
  line-height: 1.55;
}

/* 门店查询页 · 卡片网格 */
.stores-directory .stores-directory-lead {
  max-width: 40rem;
}
.stores-directory {
  padding-top: 1.75rem;
  padding-bottom: 2.25rem;
}

.store-series-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}
.store-series-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.store-series-jump a:hover {
  border-color: var(--brand);
  background: #fffdfd;
}
.store-series-jump .count {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  background: rgba(201, 38, 30, 0.09);
  border-radius: 999px;
  opacity: 0.9;
}

.store-series {
  margin-bottom: 2.25rem;
}
.store-series-head {
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(201, 38, 30, 0.18);
}
.stores-directory .store-series-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.22rem;
  color: var(--text);
}
.store-series-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.store-series-desc a {
  color: var(--brand);
  font-weight: 600;
}

#jingdu-series,
#yichu-series {
  scroll-margin-top: calc(4.75rem + var(--safe-top));
}

.store-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.25rem), 1fr));
  gap: 1rem;
}
.store-card-list > li {
  margin: 0;
}

.store-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.05rem 0.9rem;
  padding-top: calc(1rem + 3px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
  opacity: 0.95;
}
/* 门店卡顶条：与首页「多元业态」品牌色基因一致（左深右浅，易扫辨品牌） */
.store-card--yanxi::before {
  background: linear-gradient(90deg, #8a3038 0%, #c06060 100%);
}
.store-card--yushi::before {
  background: linear-gradient(90deg, var(--brand) 0%, #c45a4a 100%);
}
.store-card--kaoya::before {
  background: linear-gradient(90deg, #b05438 0%, #d89070 100%);
}
.store-card--zhoudian::before {
  background: linear-gradient(90deg, #c09850 0%, #e8c078 100%);
}
.store-card--yumin::before {
  background: linear-gradient(90deg, #1b7080 0%, #42a8b8 100%);
}
.store-card--xiaofeiyang::before {
  background: linear-gradient(90deg, #2a6038 0%, #4a9858 100%);
}
.store-card--jingxianfeng::before {
  background: linear-gradient(90deg, #3d8b4a 0%, #6bc078 100%);
}
.store-card--yichu::before {
  background: linear-gradient(90deg, #4a9e52 0%, #7bc868 100%);
}
.store-card:hover {
  border-color: rgba(201, 38, 30, 0.22);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
/* 汇总卡「查看全部」：不用电话样式 */
.store-card--summary .store-card-tel {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  border: 1px solid rgba(201, 38, 30, 0.28);
  border-radius: 8px;
  padding: 0.25rem 0.6rem;
  background: var(--bg);
}
.store-card--summary .store-card-tel:hover {
  border-color: var(--brand);
  background: var(--card);
}

.store-card-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.35;
  word-break: break-word;
}
.store-card-name:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.store-card-addr {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.store-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 0.15rem;
  border-top: 1px solid var(--line);
}

.store-card-tel {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}
.store-card-tel:hover {
  text-decoration: underline;
}

.store-card-tel-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.store-card-tel-stack .store-card-tel {
  min-height: auto;
}

.store-card-detail {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  min-height: var(--touch-min);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.store-card-detail:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
}

@media (max-width: 380px) {
  .store-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .store-card-detail {
    text-align: center;
    justify-content: center;
  }
}

.note-box {
  padding: 1rem 1.25rem;
  background: #fff9e6;
  border: 1px solid #e8d9a8;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}
.note-box p {
  margin: 0 0 0.65rem;
}
.note-box p:last-child {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0 1.5rem;
}
.spec-table th,
.spec-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  vertical-align: top;
  text-align: left;
}
.spec-table thead th {
  background: var(--card);
  font-weight: 600;
}
.spec-table tbody th {
  font-weight: 600;
  background: var(--bg);
  width: 7.5rem;
}
@media (max-width: 560px) {
  .spec-table { font-size: 0.82rem; }
  .spec-table th,
  .spec-table td { padding: 0.5rem 0.55rem; }
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
}
.about-tags .tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--bg-alt);
  color: var(--brand);
  font-size: 0.88rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
}

/* ========== 门店详情增强（京都渔市·超级平价大排档等长图文页） ========== */
.store-rich-crumb {
  padding: 0.45rem 0 0.65rem;
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
}
.store-rich-hero img {
  box-shadow: 0 16px 48px rgba(44, 31, 26, 0.1);
}

.store-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.65rem 0 1rem;
  align-items: center;
}
.store-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  touch-action: manipulation;
}
.store-cta--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(201, 38, 30, 0.3);
}
.store-cta--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.store-cta--ghost {
  background: var(--card);
  color: var(--brand);
  border-color: var(--brand);
}
.store-cta--ghost:hover {
  background: rgba(201, 38, 30, 0.06);
}
.store-cta--soft {
  background: var(--bg);
  color: var(--muted);
  border-color: var(--line);
  font-weight: 600;
}
.store-cta--soft:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.store-toc-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.store-toc-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}
.store-toc-wrap .store-toc {
  margin: 0;
}

.store-section-h2--first {
  margin-top: 0.25rem;
}

.store-detail-rich .page-title {
  margin-bottom: 0.35rem;
}

.store-detail-lead {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, #fff 0%, #faf6f3 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  border-left: 4px solid var(--brand);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.store-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.store-toc li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.store-toc a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.store-toc a:hover {
  border-color: var(--brand);
  background: #fffdfd;
}
@media (max-width: 768px) {
  .store-toc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }
}

.store-detail-rich .prose > h2 {
  font-size: 1.12rem;
  margin-top: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.store-detail-rich .prose > h2:first-of-type {
  margin-top: 0.5rem;
}

.store-section-note {
  margin-top: -0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.store-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin: 0.75rem 0 1rem;
}
@media (max-width: 640px) {
  .store-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 360px) {
  .store-kpi-row {
    grid-template-columns: 1fr;
  }
  .store-kpi-val {
    font-size: 1.05rem;
  }
}
.store-kpi {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(44, 31, 26, 0.04);
}
.store-kpi-val {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
}
.store-kpi-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-room-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.store-room-table th,
.store-room-table td {
  padding: 0.55rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.store-room-table thead th {
  background: rgba(201, 38, 30, 0.08);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.78rem;
}
.store-room-table tbody tr:last-child td {
  border-bottom: none;
}
.store-room-table tbody tr:nth-child(even) {
  background: var(--bg);
}

.store-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.65rem 0 0.75rem;
}
.store-brand-tags span {
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(201, 38, 30, 0.07);
  border-radius: 6px;
  border: 1px solid rgba(201, 38, 30, 0.12);
}

.store-dish-grid {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .store-dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.store-dish-card {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  padding-left: 2.6rem;
  min-height: 4.5rem;
  box-shadow: 0 2px 8px rgba(44, 31, 26, 0.04);
}
.store-dish-card::before {
  content: attr(data-rank);
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
}
.store-dish-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.store-dish-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.store-split-2 {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}
@media (min-width: 560px) {
  .store-split-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.store-info-card {
  padding: 1rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(44, 31, 26, 0.04);
}
.store-info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
}
.store-info-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.store-zone-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
@media (min-width: 700px) {
  .store-zone-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.store-zone-card {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.store-zone-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.store-zone-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
.store-zone-card .floor-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: rgba(201, 38, 30, 0.1);
  border-radius: 4px;
}

.store-open-kitchen {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: rgba(201, 38, 30, 0.06);
  border-radius: 8px;
  border: 1px dashed rgba(201, 38, 30, 0.25);
}

/* ========== 关于集团页（SEO / 可读性 / 版式） ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== 关于集团（精简版） ========== */
.about-page .about-body {
  padding-top: 2.2rem;
  padding-bottom: 2.5rem;
}

.about-section-title {
  position: relative;
  margin: 2.2rem 0 0.8rem;
  padding-left: 0.85rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--title-ink);
  letter-spacing: 0.02em;
}
.about-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.1em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--gold) 100%);
}
.about-intro + .about-values .about-section-title,
.about-body > :first-child .about-section-title {
  margin-top: 0;
}

.about-intro__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 0 0 0.5rem;
  padding: 0;
}
@media (min-width: 560px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.about-stats__item {
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.about-stats__item dt {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-stats__item dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--title-ink);
  line-height: 1.3;
}

.about-values-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 560px) {
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-value-card {
  padding: 1.1rem 1.15rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.about-value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.about-value-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand);
}
.about-value-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text);
}

.about-brands__lead {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.about-brands-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .about-brands-grid { grid-template-columns: repeat(4, 1fr); }
}
.about-brand-card a {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.18s, box-shadow 0.18s;
  height: 100%;
}
.about-brand-card a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.about-brand-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--title-ink);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.about-brand-card span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.about-brand-card--featured a {
  border-color: var(--brand);
  background: linear-gradient(160deg, rgba(201,38,30,0.04) 0%, var(--card) 100%);
}

.about-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.5rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid var(--line);
  color: var(--title-ink);
  background: var(--card);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.about-cta:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.about-cta--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.about-cta--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

/* 关于集团页：自首页迁入的荣誉与时间线（复用 home.css） */
.about-page--from-home .about-embed-section.home-section--honors {
  margin-top: 0;
}

