/* 京都集团官网首页 · 色彩继承自 style.css 全局 token */
:root {
  --kyoto-red: var(--brand);
  --kyoto-red-dark: var(--brand-dark);
  --kyoto-gold: var(--gold);
  --kyoto-gold-soft: var(--gold-soft);
  /* 深红 Hero 上专用：比全局 --gold 更亮，保证可读（不改动浅色页上的 --gold） */
  --hero-gold-text: #fff0d4;
  --hero-gold-glow: rgba(255, 236, 200, 0.35);
  --hero-gold-border: rgba(255, 224, 168, 0.92);
  --kyoto-ink: var(--text);
  --kyoto-body: var(--muted);
  --kyoto-bg: var(--bg-alt);
  --kyoto-white: var(--card);
  --hero-text: #fffaf6;
  --hero-text-soft: rgba(255, 252, 248, 0.94);
  /* 首屏酒红：整体提亮，底部不再压到近黑 */
  --hero-red-top: #c41e28;
  --hero-red-mid: #a01822;
  --hero-red-deep: #821a22;
  --hero-red-bottom: #651820;
  --home-header-h: 4.25rem;
  --home-radius: var(--radius-lg);
  --home-shadow: var(--shadow-card);
  --home-max: 1180px;
}

/* ========== 全局平滑滚动 ========== */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ========== 滚动入场动画 ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* 首页字体：使用系统中文栈，避免引用 Google Fonts（国内网络易阻塞） */

.home-page {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--kyoto-body);
  padding-top: var(--home-header-h);
}

/* ========== 顶栏：首页固定为浅色实底（避免透明叠在红 Hero 上导致红标「融进」底色；滚动时不再变色跳变） ========== */
.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(44, 31, 26, 0.08);
  box-shadow: 0 1px 0 rgba(44, 31, 26, 0.04);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(10px);
}
.home-page .site-header .logo-mark {
  background: transparent;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: content-box;
  object-fit: contain;
  height: 40px;
  width: auto;
  max-width: min(210px, 68vw);
  filter: none;
}
@media (max-width: 400px) {
  .home-page .site-header .logo-mark {
    height: 34px;
    max-width: min(190px, 75vw);
  }
}
/* 向下滚动时略加强阴影，底色不变 */
.home-page .site-header.is-solid {
  box-shadow: 0 4px 20px rgba(44, 31, 26, 0.08);
  border-bottom-color: rgba(44, 31, 26, 0.06);
}
.home-page .site-header .logo-company {
  color: var(--kyoto-red);
  text-shadow: none;
}
.home-page .site-header .site-nav a {
  color: var(--kyoto-ink);
}
.home-page .site-header .site-nav a:hover,
.home-page .site-header .site-nav a:focus {
  color: var(--kyoto-red);
}
.home-page .nav-toggle {
  border-color: rgba(44, 31, 26, 0.2);
  color: var(--kyoto-ink);
}
@media (max-width: 768px) {
  .home-page .site-nav {
    background: rgba(255, 255, 255, 0.98);
  }
  .home-page .site-nav a {
    color: var(--kyoto-ink) !important;
  }
}

/* ========== Hero：深红竖向渐变（中国红/酒红氛围）+ 幻灯叠图 ========== */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(100vh, 56rem);
  margin-top: calc(-1 * var(--home-header-h));
  padding-top: calc(var(--home-header-h) + 3rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* 无图时：与参考图一致的深红自上而下略加深 */
  background: linear-gradient(
    180deg,
    var(--hero-red-top) 0%,
    var(--hero-red-mid) 38%,
    var(--hero-red-deep) 68%,
    var(--hero-red-bottom) 100%
  );
}

.home-hero__slides {
  position: absolute;
  inset: 0;
}
.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  background-color: var(--hero-red-mid);
  background-size: cover;
  background-position: center;
}
.home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__slide {
    transition: none;
  }
}

.home-hero__dots {
  position: absolute;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.25rem;
  padding: 0 0.5rem;
}
/* 触控热区 ≥44px，视觉仍为圆点 */
.home-hero__dots button {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: none;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.home-hero__dots button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s, background 0.2s;
}
.home-hero__dots button.is-active::before {
  background: #ffd88a;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 210, 140, 0.45);
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 46rem;
  padding: 0 1.25rem;
}

/* 首屏品牌：无通栏底色，「京」标 + 两行标题成组在 Hero 上居中 */
.home-hero__brand-bar {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.home-hero__brand-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 2.8vw, 1.15rem);
  max-width: 100%;
  padding: 0;
}
.home-hero__jing-mark {
  flex-shrink: 0;
  width: clamp(48px, 12vw, 64px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}
.home-hero__brand-copy {
  flex: 0 1 auto;
  min-width: 0;
  text-align: left;
}
.home-hero__brand-bar .home-hero__title {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: 1.28;
  letter-spacing: inherit;
  color: var(--hero-text);
  text-shadow: 0 2px 18px rgba(45, 32, 28, 0.42);
}
.home-hero__brand-bar .home-hero__h1-primary {
  display: block;
  font-size: clamp(1.02rem, 2.65vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.32;
  color: var(--hero-text);
  font-feature-settings: "kern" 1;
}
.home-hero__brand-bar .home-hero__h1-sub {
  display: block;
  margin-top: 0.38rem;
  font-size: clamp(0.76rem, 1.9vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: rgba(253, 247, 242, 0.88);
  text-shadow: 0 1px 12px rgba(45, 32, 28, 0.35);
}
@media (max-width: 420px) {
  .home-hero__brand-bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }
  .home-hero__brand-copy {
    text-align: center;
  }
}

.home-hero__tagline {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--hero-gold-text);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 0 28px var(--hero-gold-glow);
}

.home-hero__sub {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--hero-text-soft);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.home-hero__sub a {
  color: #ffe8a8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.home-hero__sub a:hover {
  color: #fff;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 50px;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.home-btn:active {
  transform: scale(0.97);
}
.home-btn--primary {
  background: var(--kyoto-red);
  color: #fff;
  box-shadow: 0 8px 28px rgba(201, 38, 30, 0.45);
}
.home-btn--primary:hover {
  background: var(--kyoto-red-dark);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(201, 38, 30, 0.5);
}
.home-btn--gold {
  background: transparent;
  color: var(--kyoto-gold);
  border-color: var(--kyoto-gold);
}
/* 首屏深红底：描边/字色过暗，单独提亮（仅首页 Hero 使用） */
.home-hero .home-btn--gold {
  color: var(--hero-gold-text);
  border-color: var(--hero-gold-border);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 245, 220, 0.12) inset;
}
.home-hero .home-btn--gold:hover {
  background: rgba(255, 240, 210, 0.16);
  color: #fffef8;
  border-color: rgba(255, 236, 200, 0.98);
  box-shadow: 0 0 32px rgba(255, 220, 160, 0.2);
}
.home-hero .home-btn--gold:focus-visible {
  outline: 2px solid rgba(255, 236, 200, 0.95);
  outline-offset: 3px;
}
.home-btn--gold:hover {
  background: var(--kyoto-gold-soft);
  color: #fff;
  border-color: var(--kyoto-gold);
}

/* ========== 通用区块 ========== */
.home-section {
  padding: 3.5rem 1.25rem;
}
/* 数字实力：与首屏 Hero 同系的暖红砖红底（横向中心略亮），非白底；白卡片浮于其上 */
.home-section--stats {
  position: relative;
  color: var(--hero-text-soft);
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 70% at 50% 42%, rgba(255, 150, 120, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 42%),
    linear-gradient(
      90deg,
      #4a0f14 0%,
      #6e151a 22%,
      #b02830 50%,
      #6e151a 78%,
      #4a0f14 100%
    );
  border-block: 1px solid rgba(0, 0, 0, 0.12);
}
.home-section--stats::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 210, 150, 0.45) 50%,
    transparent 100%
  );
  opacity: 0.9;
  pointer-events: none;
}
.home-section--stats > .home-wrap {
  position: relative;
  z-index: 2;
}

.home-wrap {
  max-width: var(--home-max);
  margin: 0 auto;
}

.home-section__h {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 900;
  color: var(--kyoto-ink);
  text-align: center;
}
.home-section--stats .home-section__h {
  color: var(--hero-text);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.home-section__lead {
  margin: 0 auto 2rem;
  max-width: 40rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--kyoto-body);
}
.home-section--stats .home-section__lead {
  color: rgba(255, 252, 248, 0.88);
}
.home-section--stats .home-section__lead a {
  color: #ffe8b8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.home-section--stats .home-section__lead a:hover {
  color: #fff;
}

/* ========== 集团要点（SEO / 可引用） ========== */
.home-section--facts {
  position: relative;
  background: linear-gradient(180deg, #fffdfb 0%, var(--kyoto-white) 40%, #faf8f6 100%);
  border-block: 1px solid rgba(201, 38, 30, 0.08);
}
.home-section--facts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 38, 30, 0.35) 20%,
    var(--kyoto-gold) 50%,
    rgba(201, 38, 30, 0.35) 80%,
    transparent 100%
  );
  opacity: 0.85;
  pointer-events: none;
}
.home-section--facts .home-section__lead a {
  color: var(--kyoto-red);
  font-weight: 600;
}
.home-entity-dl {
  margin: 0 auto;
  max-width: 40rem;
  display: grid;
  grid-template-columns: minmax(6rem, 8.5rem) 1fr;
  gap: 0.65rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
@media (max-width: 520px) {
  .home-entity-dl {
    grid-template-columns: 1fr;
  }
  .home-entity-dl dt {
    margin-top: 0.5rem;
    color: var(--kyoto-red);
    font-weight: 800;
  }
  .home-entity-dl dt:first-child {
    margin-top: 0;
  }
}
.home-entity-dl dt {
  margin: 0;
  font-weight: 800;
  color: var(--kyoto-ink);
}
.home-entity-dl dd {
  margin: 0;
  color: var(--kyoto-body);
}
.home-entity-dl a {
  color: var(--kyoto-red);
  font-weight: 600;
}

.home-stat--text .home-stat__num--static {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--kyoto-red);
}

/* ========== 首页 FAQ 摘录 ========== */
.home-section--faq {
  background: linear-gradient(180deg, #f5f2ef 0%, var(--kyoto-bg) 100%);
  border-top: 1px solid rgba(44, 31, 26, 0.04);
}
.home-faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.home-faq-list article {
  background: var(--kyoto-white);
  border-radius: var(--home-radius);
  padding: 1.1rem 1.2rem 1.1rem 1.45rem;
  border: 1px solid rgba(44, 31, 26, 0.06);
  box-shadow: 0 2px 12px rgba(44, 31, 26, 0.03);
  border-left: 3.5px solid var(--kyoto-red);
  position: relative;
}
.home-faq-list h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--kyoto-ink);
  line-height: 1.4;
}
.home-faq-list h3::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.45rem;
  font-size: 0.68rem;
  font-weight: 900;
  color: #fff;
  background: var(--kyoto-red);
  border-radius: 50%;
  vertical-align: -0.12em;
  flex-shrink: 0;
}
.home-faq-list p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--kyoto-body);
}
.home-section--faq .home-section__lead a {
  color: var(--kyoto-red);
  font-weight: 600;
}

/* ========== 数字卡片 ========== */
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) {
  .home-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-section--stats .home-stat {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 0 rgba(255, 255, 255, 0.06) inset;
}
.home-stat {
  padding: 1.35rem 1rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(201, 38, 30, 0.12);
  border-radius: var(--home-radius);
  box-shadow: 0 4px 22px rgba(44, 31, 26, 0.07);
}
.home-stat__num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  color: var(--kyoto-red);
  line-height: 1.1;
}
.home-stat__suffix {
  font-size: 1.1rem;
  font-weight: 700;
}
.home-stat__label {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--kyoto-body);
}

/* ========== 荣誉墙 · 暖米白展厅 ========== */
.home-section--honors {
  background: linear-gradient(180deg, #f9f4ed 0%, #f5efe6 55%, #f7f2ea 100%);
  padding: 3.5rem 0 2.75rem;
  position: relative;
}
.home-section--honors::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 8%, var(--kyoto-gold) 35%, var(--kyoto-red) 50%, var(--kyoto-gold) 65%, transparent 92%);
  opacity: 0.35;
}
.home-section--honors .home-section__h {
  color: var(--kyoto-ink);
}
.home-section--honors .home-section__h::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0.55rem auto 0;
  background: var(--kyoto-gold);
  border-radius: 1px;
  opacity: 0.6;
}
.home-section--honors .home-section__lead {
  color: var(--kyoto-body);
}
.home-section--honors .home-section__lead strong {
  color: var(--kyoto-ink);
}

/* ---------- Hero（国家级）居中竖排 ---------- */
.home-honors__hero {
  max-width: 420px;
  margin: 0 auto 2.25rem;
  background: #fff;
  border-radius: var(--home-radius);
  border: 1px solid rgba(193,163,104,0.2);
  box-shadow:
    0 2px 6px rgba(193,163,104,0.08),
    0 12px 40px rgba(44,31,26,0.06);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-honors__hero:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(193,163,104,0.12),
    0 20px 52px rgba(44,31,26,0.08);
}
.home-honors__hero-img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3f3a36 0%, #2f2b28 100%);
  overflow: hidden;
}
.home-honors__hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem;
  transition: transform 0.45s ease;
}
.home-honors__hero:hover .home-honors__hero-img img {
  transform: scale(1.04);
}
.home-honors__hero-body {
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid rgba(193,163,104,0.12);
}
.home-honors__hero-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--kyoto-ink);
  margin: 0.45rem 0 0.2rem;
  line-height: 1.35;
}
.home-honors__hero-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(193,163,104,0.7);
  margin-bottom: 0.55rem;
}
.home-honors__hero-meta {
  display: block;
  font-size: 0.76rem;
  color: var(--kyoto-body);
  line-height: 1.65;
}
@media (min-width: 560px) {
  .home-honors__hero {
    max-width: 440px;
  }
}
@media (min-width: 900px) {
  .home-honors__hero {
    max-width: 460px;
  }
}

/* ---------- 六格均衡网格 ---------- */
.home-honors__grid {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: var(--home-max);
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .home-honors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .home-honors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 普通奖牌卡片 ---------- */
.home-honors__tile {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: calc(var(--home-radius) - 2px);
  border: 1px solid rgba(44,31,26,0.06);
  box-shadow: 0 4px 18px rgba(44,31,26,0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-honors__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(44,31,26,0.07);
  border-color: rgba(193,163,104,0.22);
}
.home-honors__imgwrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3f3a36 0%, #2f2b28 100%);
  overflow: hidden;
  box-sizing: border-box;
}
.home-honors__imgwrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.6rem;
  transition: transform 0.4s ease;
}
.home-honors__tile:hover .home-honors__imgwrap img {
  transform: scale(1.05);
}

/* ---------- 标题栏 ---------- */
.home-honors__cap {
  margin: 0;
  padding: 0.7rem 0.85rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--kyoto-ink);
  text-align: center;
  border-top: 1px solid rgba(44,31,26,0.05);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ---------- 层级 badge ---------- */
.home-honors__tier {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 4px;
  vertical-align: 0.06em;
  flex-shrink: 0;
  border: 1px solid transparent;
}
.home-honors__tier--national {
  color: #a07d2e;
  background: rgba(193,163,104,0.14);
  border-color: rgba(193,163,104,0.3);
}
.home-honors__tier--provincial {
  color: var(--kyoto-red);
  background: rgba(201,38,30,0.08);
  border-color: rgba(201,38,30,0.18);
}
.home-honors__tier--city {
  color: #b07a40;
  background: rgba(176,122,64,0.1);
  border-color: rgba(176,122,64,0.18);
}
.home-honors__tier--charity {
  color: #4a8a4a;
  background: rgba(74,138,74,0.08);
  border-color: rgba(74,138,74,0.16);
}
.home-honors__tier--cert {
  color: var(--muted-light);
  background: rgba(158,149,144,0.08);
  border-color: rgba(158,149,144,0.14);
}

/* ---------- 底部补充荣誉 ---------- */
.home-honors__extras {
  list-style: none;
  margin: 0 auto;
  padding: 1.15rem 0 0;
  max-width: var(--home-max);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0;
  border-top: 1px solid rgba(44,31,26,0.06);
}
.home-honors__extras li {
  font-size: 0.76rem;
  color: var(--kyoto-body);
  line-height: 1.65;
  white-space: nowrap;
}
.home-honors__extras li::after {
  content: "·";
  margin: 0 0.55rem;
  color: var(--kyoto-gold);
  opacity: 0.5;
}
.home-honors__extras li:last-child::after {
  display: none;
}

/* ========== 门店查询模块 ========== */
.home-section--finder {
  background: linear-gradient(180deg, #faf8f6 0%, var(--kyoto-bg) 18%);
  border-top: 1px solid rgba(201, 38, 30, 0.07);
}
.home-finder-panel {
  background: var(--kyoto-white);
  border-radius: calc(var(--home-radius) + 4px);
  padding: 1.75rem 1.25rem 2rem;
  box-shadow: var(--home-shadow);
  border: 1px solid rgba(44, 31, 26, 0.05);
}
@media (min-width: 768px) {
  .home-finder-panel {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.home-finder-step {
  margin-bottom: 1.5rem;
}
.home-finder-step:last-of-type {
  margin-bottom: 0;
}
.home-finder-step h3 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--kyoto-red);
  letter-spacing: 0.06em;
}
.home-finder-step h3 span {
  display: inline-block;
  margin-right: 0.35rem;
  width: 1.35rem;
  height: 1.35rem;
  line-height: 1.35rem;
  text-align: center;
  border-radius: 50%;
  background: var(--kyoto-red);
  color: #fff;
  font-size: 0.72rem;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.home-chip {
  padding: 0.45rem 0.85rem;
  min-height: var(--touch-min, 44px);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fafafa;
  color: var(--kyoto-ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.home-chip:hover {
  border-color: var(--kyoto-gold);
  color: var(--kyoto-red);
}
.home-chip.is-on {
  background: rgba(201, 38, 30, 0.08);
  border-color: var(--kyoto-red);
  color: var(--kyoto-red);
}

.home-finder-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
  min-height: 4rem;
}
@media (min-width: 640px) {
  .home-finder-results {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-finder-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s ease;
}
.home-finder-card:hover {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.home-finder-card[hidden] {
  display: none !important;
}
.home-finder-card__main {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.home-finder-card__main:hover .home-finder-card__hook {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.home-finder-card__img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(135deg, #f0e6dc, rgba(212, 160, 23, 0.2));
  flex-shrink: 0;
}
.home-finder-card__img.is-placeholder {
  display: block;
  object-fit: none;
}
/* 子品牌 LOGO：contain + 白底；无边框少内边距，与渔市等满幅标志视觉尺寸一致 */
.home-finder-card__img--logo {
  object-fit: contain;
  background: #fff;
  border: none;
  padding: 0;
  box-sizing: border-box;
}

.home-finder-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.home-finder-empty[hidden] {
  display: none !important;
}
.home-finder-card__body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--kyoto-ink);
}
.home-finder-card__tags {
  font-size: 0.72rem;
  color: var(--kyoto-body);
  margin-top: 0.25rem;
}
.home-finder-card__hook {
  font-size: 0.78rem;
  color: var(--kyoto-red);
  margin-top: 0.35rem;
  font-weight: 600;
}

.home-finder-card__note {
  margin: 0 0 0.15rem;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.4;
}
.home-finder-card__meta {
  border-top: 1px solid rgba(44, 31, 26, 0.08);
  padding-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  line-height: 1.45;
}
.home-finder-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.home-finder-card__label {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--kyoto-body);
  min-width: 2.25rem;
}
.home-finder-card__tel-row {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}
.home-finder-card__tel {
  color: var(--kyoto-red);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.home-finder-card__tel:hover {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.home-finder-card__tel--muted {
  color: var(--muted);
  font-weight: 500;
}
.home-finder-card__addr {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: var(--muted);
}
.home-finder-card__nav {
  align-self: flex-start;
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 38, 30, 0.35);
  background: rgba(201, 38, 30, 0.06);
  color: var(--kyoto-red);
  font-weight: 700;
  font-size: 0.74rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.home-finder-card__nav:hover {
  background: rgba(201, 38, 30, 0.12);
  border-color: rgba(201, 38, 30, 0.55);
}

.home-finder-map {
  margin-top: 1.5rem;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  min-height: 200px;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--kyoto-body);
}
.home-finder-map a {
  color: var(--kyoto-red);
  font-weight: 700;
}

.home-finder-footnote {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--kyoto-body);
  text-align: center;
}

/* ========== 品牌矩阵杂志风（与全站提亮一致：浅底 + 卡片色相渐变略抬明度） ========== */
.home-section--mag {
  background: linear-gradient(180deg, #fffdfb 0%, #f5efe8 55%, var(--bg) 100%);
  border-top: 1px solid rgba(201, 38, 30, 0.06);
}
.home-mag-grid {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 700px) {
  .home-mag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .home-mag-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-mag-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.home-mag-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 38, 30, 0.18);
}

/* -- 图片区公共 -- */
.home-mag-card__img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* -- 占位符卡：圆形毛玻璃底 + 品牌字标 -- */
.home-mag-card__img:not(img)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.home-mag-card__img:not(img)::after {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

/* -- LOGO 卡公共 -- */
.home-mag-card__img:is(img) {
  display: block;
  height: auto;
  object-fit: contain;
  padding: clamp(0.75rem, 5vw, 1.8rem);
  box-sizing: border-box;
}

/* ---- 品牌专属色：radial 提亮 + 145° 渐变（暗部略抬，避免压成「黑块」） ---- */
/* 渔民大院 · 深海蓝绿（无实拍时渐变底；有门脸图时同渔市 cover） */
.home-mag-card--yumin .home-mag-card__img:not(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.16) 0%, transparent 68%),
    linear-gradient(145deg, #2d8a9a 0%, #1a5c68 100%);
}
.home-mag-card--yumin .home-mag-card__img:is(img) {
  background: none;
  object-fit: cover;
  padding: 0;
}
/* 京都小肥羊 · 门店实拍（与渔市 magazine 区同为 cover 门头照） */
.home-mag-card--xiaofeiyang .home-mag-card__img:not(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.14) 0%, transparent 68%),
    linear-gradient(145deg, #3a7d4c 0%, #1f3d28 100%);
}
.home-mag-card--xiaofeiyang .home-mag-card__img:is(img) {
  background: none;
  object-fit: cover;
  padding: 0;
}
/* 京都宴禧酒店 · 酒红（无实拍时渐变底；门脸图 cover） */
.home-mag-card--yanxi .home-mag-card__img:not(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.14) 0%, transparent 68%),
    linear-gradient(145deg, #a84852 0%, #5c2834 100%);
}
.home-mag-card--yanxi .home-mag-card__img:is(img) {
  background: none;
  object-fit: cover;
  padding: 0;
}
/* 京都渔市 · 实拍照片 */
.home-mag-card--yushi .home-mag-card__img:is(img) {
  background: none;
  object-fit: cover;
  padding: 0;
}
/* 京都烤鸭酒店 · 门店实拍（与渔市 magazine 同为 cover） */
.home-mag-card--kaoya-jiudian .home-mag-card__img:not(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.14) 0%, transparent 68%),
    linear-gradient(145deg, #c86a4a 0%, #6a3428 100%);
}
.home-mag-card--kaoya-jiudian .home-mag-card__img:is(img) {
  background: none;
  object-fit: cover;
  padding: 0;
}
/* 京都易厨 · 清新绿 */
.home-mag-card--yichu .home-mag-card__img,
.home-mag-card--yichu .home-mag-card__img:is(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.15) 0%, transparent 68%),
    linear-gradient(145deg, #5eb868 0%, #2a5234 100%);
}
/* 京都粥店 · 暖金琥珀（无实拍时渐变底；门脸图同烤鸭/渔市 cover） */
.home-mag-card--zhoudian .home-mag-card__img:not(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.14) 0%, transparent 68%),
    linear-gradient(145deg, #d4b068 0%, #6a5030 100%);
}
.home-mag-card--zhoudian .home-mag-card__img:is(img) {
  background: none;
  object-fit: cover;
  padding: 0;
}
/* 京鲜丰超市 · 叶翠绿 */
.home-mag-card--jingxianfeng .home-mag-card__img,
.home-mag-card--jingxianfeng .home-mag-card__img:is(img) {
  background:
    radial-gradient(ellipse 58% 58% at 48% 32%, rgba(255,255,255,0.15) 0%, transparent 68%),
    linear-gradient(145deg, #4fa85e 0%, #234a2c 100%);
}

/* -- 卡片文字区 -- */
.home-mag-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-mag-card__logo {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--title-ink);
}
.home-mag-card__slogan {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}
.home-mag-card__btn {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--kyoto-red);
  border: 2px solid rgba(201, 38, 30, 0.45);
  border-radius: 999px;
  background: rgba(201, 38, 30, 0.04);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.home-mag-card:hover .home-mag-card__btn {
  background: var(--kyoto-red);
  color: #fff;
  border-color: var(--kyoto-red);
}

/* ========== 时间轴 ========== */
.home-section--timeline {
  background: linear-gradient(180deg, #f7f4f1 0%, #f0ebe6 50%, var(--kyoto-bg) 100%);
  border-top: 1px solid rgba(201, 38, 30, 0.05);
}
.home-timeline {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .home-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.home-timeline__col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--kyoto-red);
}
.home-timeline__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-timeline__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--kyoto-body);
}
.home-timeline__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kyoto-gold);
}
.home-timeline__year {
  display: block;
  font-weight: 800;
  color: var(--kyoto-ink);
  margin-bottom: 0.2rem;
}

.home-history-title {
  margin: 0.5rem 0 1.25rem;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--kyoto-red);
  text-align: center;
}

/* ---------- 竖向时间轴 ---------- */
.home-vtl {
  position: relative;
  list-style: none;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 0 0.5rem 2.5rem;
  max-width: 720px;
}
.home-vtl::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--kyoto-gold) 0%, rgba(193,163,104,0.18) 100%);
  border-radius: 1px;
}
.home-vtl__item {
  position: relative;
  margin-bottom: 1.1rem;
  padding-bottom: 0;
}
.home-vtl__item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--kyoto-gold);
  box-shadow: 0 0 0 3px rgba(193,163,104,0.12);
  z-index: 1;
}
.home-vtl__item--highlight::before {
  background: var(--kyoto-red);
  border-color: var(--kyoto-red);
  box-shadow: 0 0 0 4px rgba(201,38,30,0.15);
  width: 12px;
  height: 12px;
  left: -2.05rem;
  top: 0.3rem;
}
.home-vtl__year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--kyoto-gold);
  background: rgba(193,163,104,0.1);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.15rem;
  letter-spacing: 0.04em;
}
.home-vtl__body {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--kyoto-body);
}
.home-vtl__body a {
  color: var(--kyoto-red);
  font-weight: 700;
  text-decoration: none;
}
.home-vtl__body a:hover {
  text-decoration: underline;
}
.home-vtl__item--highlight .home-vtl__year {
  color: #fff;
  background: var(--kyoto-red);
}
.home-vtl__item--highlight .home-vtl__body {
  color: var(--kyoto-ink);
  font-weight: 600;
}
@media (min-width: 768px) {
  .home-vtl {
    padding-left: 3rem;
    max-width: 760px;
  }
  .home-vtl::before {
    left: 0.8rem;
  }
  .home-vtl__item::before {
    left: -2.35rem;
  }
  .home-vtl__item--highlight::before {
    left: -2.45rem;
  }
}

/* ========== 页脚扩展（与首屏/数字区同系酒红底，避免冷灰黑） ========== */
.home-footer-ext {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 3rem 1.25rem 2rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}
.home-footer-grid {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .home-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.home-footer-ext h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-on-dark, #f2d9a8);
  letter-spacing: 0.04em;
}
.home-footer-ext ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* 快速链接：两列排布，降低页脚高度 */
.home-footer-links-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 0;
  align-content: start;
}
@media (max-width: 380px) {
  .home-footer-links-2col {
    grid-template-columns: 1fr;
  }
}
.home-footer-ext a {
  color: var(--dark-link);
  text-decoration: none;
  line-height: 1.9;
}
.home-footer-ext a:hover {
  color: #fff;
}
.home-footer-legal {
  max-width: var(--home-max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: var(--dark-border-top);
  font-size: 0.75rem;
  color: rgba(253, 247, 242, 0.45);
  text-align: center;
  line-height: 1.6;
}
.home-footer-tech {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  opacity: 0.9;
  color: rgba(253, 247, 242, 0.42);
}
.home-footer-ext .home-footer-tech a {
  color: var(--dark-link);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.home-back-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--kyoto-red);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201, 38, 30, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.home-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.home-back-top:hover {
  transform: translateY(-2px);
}

/* Hero 幻灯：集团官网首屏不出现单个子品牌门头；实拍请用 home/hero-1.jpg（总部/宴禧级空间/多品牌合集等） */
/* 第 1 屏：偏正式的酒红 + 金点缀，与「多品牌集团」叙事一致；2/3 屏为另两种渐变节奏 */
.home-hero__slide--1 {
  background-image: linear-gradient(180deg, rgba(255, 252, 248, 0.12) 0%, transparent 34%),
    radial-gradient(ellipse 95% 65% at 50% 12%, rgba(255, 200, 120, 0.28) 0%, transparent 58%),
    linear-gradient(178deg, #c42828 0%, #9e1a20 38%, #721a20 72%, #521820 100%);
  background-position: center;
}
.home-hero__slide--2 {
  background-image: radial-gradient(ellipse 130% 90% at 72% 18%, rgba(255, 210, 140, 0.34) 0%, transparent 52%),
    linear-gradient(165deg, #bc2224 0%, #8c1818 48%, #621a1c 100%);
  background-position: center;
}
.home-hero__slide--3 {
  background-image: linear-gradient(125deg, rgba(42, 75, 124, 0.26) 0%, transparent 42%),
    linear-gradient(188deg, #ac1e22 0%, #781a1c 42%, #501820 100%);
  background-position: center;
}
