/* 皇厨酒店集团官网 */
:root {
  --ink: #1f1f1f;
  --muted: #626262;
  --cream: #fbf3e6;
  --paper: #ffffff;
  --gold: #df2027;
  --gold-bright: #ee3037;
  --gold-soft: #fde8e9;
  --gold-muted: #d71920;
  --warm: #fff8ef;
  --deep-red: #8c1116;
  --accent: var(--gold);
  --accent-dark: var(--gold-muted);
  --line: rgba(31, 31, 31, 0.11);
  --shadow: 0 14px 34px rgba(31, 31, 31, 0.08);
  --radius: 6px;
  --max: 1160px;
  --edge-x: clamp(1rem, 5vw, 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-muted);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: min(var(--max), 100% - 2rem);
  margin-inline: auto;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid #eeeeee;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  isolation: isolate;
  overflow: visible;
}

.site-header--solid {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.site-header--hero {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-header--hero.site-header--solid {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  border-bottom-color: color-mix(in srgb, var(--gold) 15%, var(--line));
  box-shadow: 0 8px 24px rgba(42, 35, 25, 0.06);
}

.site-header--hero:not(.site-header--solid) .brand-name {
  color: #fff;
}

.site-header .inner,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  width: min(1280px, 100% - 2rem);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 0;
  position: relative;
  z-index: 15;
  box-sizing: border-box;
  overflow: visible;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-name {
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.nav-toggle {
  display: none;
  border: 1px solid #dcdcdc;
  background: var(--paper);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: auto;
}

.site-header--hero:not(.site-header--solid) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* 主导航：腾讯式悬停下拉 */
.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.15vw, 1.15rem);
  flex-wrap: nowrap;
  margin-left: auto;
  overflow: visible;
  position: relative;
  z-index: 12;
}

.nav-item {
  position: relative;
}

.nav-item > .nav-top,
.nav-main > .nav-top {
  display: flex;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.site-header--hero:not(.site-header--solid) .nav-item > .nav-top {
  color: rgba(255, 255, 255, 0.92);
}

.nav-item > .nav-top[aria-current="page"],
.nav-main > .nav-top[aria-current="page"] {
  color: var(--gold-muted);
  border-bottom-color: transparent;
}

.nav-item:hover > .nav-top,
.nav-item:focus-within > .nav-top,
.nav-main > .nav-top:hover,
.nav-main > .nav-top:focus-visible {
  color: var(--gold-muted);
  border-bottom-color: transparent;
}

.site-header--hero:not(.site-header--solid) .nav-item > .nav-top[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--gold-bright);
}

.site-header--hero:not(.site-header--solid) .nav-item:hover > .nav-top,
.site-header--hero:not(.site-header--solid) .nav-item:focus-within > .nav-top {
  color: #fff;
  border-bottom-color: var(--gold-bright);
}

/* 腾讯式：大块背景从顶栏铺到视窗中段 + 子链对齐在各主项正下方 */

.nav-mega-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  margin-top: -1px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 28px 64px rgba(42, 35, 25, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.site-header--hero:not(.site-header--solid) .nav-mega-backdrop {
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

/* 悬停带下拉的「主栏目」或在其子链上时展开大块背景（背景不抢点击，避免空白区卡死） */
.site-header:has(.nav-item.has-dropdown:hover) .nav-mega-backdrop,
.site-header:has(.nav-item.has-dropdown:focus-within) .nav-mega-backdrop {
  max-height: min(52vh, 520px);
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

/* 子菜单：仅在对应「简介 / 业务…」正下方，左缘与主项对齐 */
.nav-dropdown {
  position: absolute;
  left: 0;
  right: auto;
  top: 100%;
  width: max-content;
  min-width: 8rem;
  max-width: min(18rem, 85vw);
  margin: 0;
  padding: 0.85rem 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 14;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 主项与首条子链之间的「热区」，避免移鼠时菜单闪断 */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
  z-index: 13;
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.15rem 0.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--gold-muted);
  border-bottom-color: var(--gold-soft);
}

.nav-dropdown a[aria-current="page"] {
  color: var(--gold-muted);
  border-bottom-color: var(--gold-soft);
}

/* 语言切换（参考门户站右上角 简|繁|EN） */
.nav-lang {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  gap: 0.2rem;
  margin-left: 0.35rem;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.nav-lang__btn {
  margin: 0;
  padding: 0.3rem 0.45rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-lang__btn:hover {
  color: var(--gold-muted);
  background: color-mix(in srgb, var(--gold-soft) 22%, transparent);
}

.nav-lang__btn.is-active {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.nav-lang__sep {
  color: var(--line);
  font-weight: 500;
  user-select: none;
  pointer-events: none;
  opacity: 0.65;
}

.site-header--hero:not(.site-header--solid) .nav-lang__btn {
  color: rgba(255, 255, 255, 0.82);
}

.site-header--hero:not(.site-header--solid) .nav-lang__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header--hero:not(.site-header--solid) .nav-lang__btn.is-active {
  color: #fff;
  text-decoration-color: var(--gold-bright);
}

.site-header--hero:not(.site-header--solid) .nav-lang__sep {
  color: rgba(255, 255, 255, 0.28);
}

.nav-lang__btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.site-header--hero:not(.site-header--solid) .nav-lang__btn:focus-visible {
  outline-color: #fff;
}

.nav-contact {
  align-self: center;
  margin-left: 0.25rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-contact:hover {
  border-color: var(--gold-bright);
  background: color-mix(in srgb, var(--gold-soft) 25%, transparent);
  color: var(--gold-muted);
}

.site-header--hero:not(.site-header--solid) .nav-contact {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header--hero:not(.site-header--solid) .nav-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-bright);
  color: #fff;
}

.store-rongji-page .site-header.site-header--solid {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(16, 10, 7, 0.42), rgba(16, 10, 7, 0));
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: none;
}

.store-rongji-page .brand-name,
.store-rongji-page .nav-item > .nav-top,
.store-rongji-page .nav-main > .nav-top {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.store-rongji-page .nav-item > .nav-top[aria-current="page"],
.store-rongji-page .nav-main > .nav-top[aria-current="page"],
.store-rongji-page .nav-item:hover > .nav-top,
.store-rongji-page .nav-main > .nav-top:hover {
  color: #fff;
}

.store-rongji-page .nav-lang,
.store-rongji-page .nav-lang__btn {
  color: rgba(255, 255, 255, 0.9);
}

.store-rongji-page .nav-contact {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.store-rongji-page .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.store-rongji-page .header-inner {
  width: min(1200px, 100% - 2rem);
  padding: 0.72rem 0;
  gap: 0.9rem;
}

.store-rongji-page .brand-logo {
  width: 44px;
  height: 44px;
}

.store-rongji-page .brand-name {
  font-size: 1.28rem;
}

.store-rongji-page .nav-main {
  gap: clamp(0.5rem, 0.9vw, 0.9rem);
}

.store-rongji-page .nav-item > .nav-top,
.store-rongji-page .nav-main > .nav-top {
  font-size: 0.9rem;
}

.store-rongji-page .nav-lang {
  font-size: 0.88rem;
}

.store-rongji-page .nav-contact {
  padding: 0.38rem 0.78rem;
  font-size: 0.88rem;
}

.nav-contact[aria-current="page"] {
  border-color: var(--gold-bright);
  background: color-mix(in srgb, var(--gold-soft) 35%, var(--paper));
  color: var(--gold-muted);
}

@media (max-width: 900px) {
  .nav-main {
    gap: 0.75rem;
  }

  .nav-item > .nav-top,
  .nav-main > .nav-top {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .nav-mega-backdrop {
    display: none !important;
  }

  .nav-toggle {
    display: block;
  }

  .nav-main {
    margin-left: 0;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(42, 35, 25, 0.08);
    gap: 0;
  }

  .nav-main.is-open {
    display: flex;
  }

  .nav-item.has-dropdown::after {
    display: none;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-item:last-of-type {
    border-bottom: none;
  }

  .nav-item > .nav-top,
  .nav-main > .nav-top {
    padding: 0.85rem 0.25rem;
    margin-bottom: 0;
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0 0 0.5rem 0.75rem;
    min-width: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-main.is-open .nav-dropdown {
    display: flex;
  }

  .nav-dropdown a {
    padding: 0.45rem 0.5rem;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--muted);
    border-bottom: none;
  }

  .nav-lang {
    margin-left: 0;
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    justify-content: center;
    align-self: stretch;
    font-size: 1.08rem;
  }

  .site-header--hero:not(.site-header--solid) .nav-lang {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .nav-contact {
    margin: 0.75rem 0 0;
    text-align: center;
    align-self: stretch;
  }

  .site-header--hero:not(.site-header--solid) .nav-main {
    background: #1f1a14;
  }

  .site-header--hero:not(.site-header--solid) .nav-item > .nav-top {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-header--hero:not(.site-header--solid) .nav-dropdown a {
    color: rgba(255, 255, 255, 0.75);
  }

  .site-header--hero:not(.site-header--solid) .nav-contact {
    border-color: rgba(255, 255, 255, 0.3);
  }
}

/* 首页首屏 + 大图 */
.hero-stack {
  position: relative;
}

.hero-fullbleed {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 6.5rem 0 4rem;
  background-color: #1f1a14;
  background-image: url("../images/articles/master-studio-hakka-canon/02.jpg");
  background-size: cover;
  background-position: center;
}

.hero-fullbleed__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 17, 14, 0.88) 0%,
    rgba(42, 35, 25, 0.55) 45%,
    rgba(30, 25, 20, 0.35) 100%
  );
  pointer-events: none;
}

.hero-fullbleed__content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(var(--edge-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--edge-x), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.hero-fullbleed__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-fullbleed__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
  line-height: 1.6;
}

.header-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}

/* Amyuan-inspired homepage */
.home-page .site-header {
  position: sticky;
}

.home-hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  background-color: #fff8ef;
  background-image: linear-gradient(
      92deg,
      rgba(255, 248, 239, 0.98) 0%,
      rgba(255, 248, 239, 0.92) 36%,
      rgba(255, 248, 239, 0.62) 58%,
      rgba(255, 248, 239, 0.24) 100%
    ),
    url("../images/home-national-art.png");
  background-position: center, right clamp(1rem, 5vw, 5rem) center;
  background-repeat: no-repeat;
  background-size: cover, clamp(520px, 47vw, 760px) auto;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 3.8rem 0;
}

.home-hero__content {
  width: min(42rem, 100%);
  padding: 0;
}

.home-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 800;
  color: var(--gold-muted);
  letter-spacing: 0.08em;
}

.home-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.1vw, 3.7rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

body[data-lang="en"] .home-hero h1 {
  max-width: 42rem;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.home-hero__lead {
  max-width: 36rem;
  margin: 0 0 1.55rem;
  color: #333;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.8;
}

.home-hero__meta {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.home-hero__meta div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.home-hero__meta dt {
  color: var(--gold-muted);
  font-weight: 800;
}

.home-hero__meta dd {
  margin: 0;
  color: #333;
}

.home-hero__meta a {
  color: #111;
  font-weight: 900;
  text-decoration: none;
}

.home-hero__media {
  border: 1px solid var(--line);
  background: #f7f7f5;
  box-shadow: var(--shadow);
}

.home-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed color-mix(in srgb, var(--gold) 55%, #bbb);
  background: repeating-linear-gradient(
      135deg,
      rgba(215, 25, 32, 0.04) 0,
      rgba(215, 25, 32, 0.04) 12px,
      rgba(255, 255, 255, 0.78) 12px,
      rgba(255, 255, 255, 0.78) 24px
    ),
    #fafafa;
  width: 100%;
  color: #7a4a4a;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.image-placeholder--hero {
  min-height: min(52vw, 430px);
  aspect-ratio: 16 / 9;
}

.home-hero__media p {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.2rem;
  padding: 0.72rem 1.25rem;
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.home-hero__btn:hover {
  transform: translateY(-2px);
}

.home-hero__btn--primary {
  background: var(--gold-muted);
  color: #fff;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.22);
}

.home-hero__btn--primary:hover {
  background: var(--deep-red);
  color: #fff;
}

.home-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--deep-red);
}

.home-hero__btn--ghost:hover {
  background: #fff;
  color: var(--gold-muted);
}

.home-hero__card {
  margin-bottom: 4rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 54px rgba(70, 22, 16, 0.22);
  backdrop-filter: blur(12px);
}

.home-hero__card span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.home-hero__card a {
  display: inline-block;
  color: var(--deep-red);
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 1.05;
  font-weight: 950;
  text-decoration: none;
}

.home-hero__card p {
  margin: 0.85rem 0 0;
  color: #3d2a24;
  line-height: 1.75;
}

.home-tabs {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.home-tabs__inner {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  min-height: 88px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(77, 30, 20, 0.12);
}

.home-tabs__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.6rem;
  background: var(--gold-muted);
  color: #fff;
  text-decoration: none;
}

.home-tabs__title strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

.home-tabs__title span {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-tabs__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: 0 1.6rem;
}

.home-tabs__links a {
  color: #555;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.home-tabs__links a:hover,
.home-tabs__links a.is-active {
  color: var(--gold-muted);
}

.wrap--narrow {
  max-width: 860px;
}

.company-intro {
  position: relative;
  padding: 4.6rem 0 3.2rem;
  overflow: hidden;
  background: #fff7ee;
  text-align: center;
}

.company-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 248, 239, 0.9) 46%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    url("../images/home-national-art.png");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover, min(78vw, 920px) auto;
  opacity: 0.9;
  pointer-events: none;
}

.company-intro > .wrap {
  position: relative;
  z-index: 1;
}

.company-intro .section-heading {
  margin-bottom: 1.35rem;
}

.company-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 900;
}

.company-intro__lead {
  margin: 0 auto;
  max-width: 50rem;
  color: #2d2928;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.85;
  text-align: center;
}

.home-strengths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.home-strengths article {
  padding: 1.05rem 0.9rem;
  background: var(--warm);
  border: 1px solid rgba(215, 25, 32, 0.12);
  text-align: center;
}

.home-strengths strong {
  display: block;
  color: var(--deep-red);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.2;
  font-weight: 950;
}

.home-strengths span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-gallery {
  padding: 4rem 0 3.6rem;
  background: #fff;
}

.feature-gallery .section-heading {
  margin-bottom: 1.8rem;
}

.feature-gallery .section-heading p,
.home-section .section-heading p {
  max-width: 42rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-gallery .section-heading--center p {
  margin-inline: auto;
}

.feature-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.feature-tile {
  position: relative;
  margin: 0;
  background: #2d1713;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(54, 25, 18, 0.12);
}

.feature-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-tile:hover img {
  transform: scale(1.04);
}

.feature-tile h3 {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  padding: 0.58rem 0.9rem 0.68rem;
  text-align: center;
  font-family: "STSong", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(1.35rem, 2.45vw, 1.85rem);
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, rgba(140, 17, 22, 0.92), rgba(215, 25, 32, 0.78));
  letter-spacing: 0;
}

.home-section {
  padding: 4rem 0;
  background: #f7f7f5;
}

.home-section--warm {
  background: #f7f7f5;
  border-block: 1px solid var(--line);
}

.home-section--compact {
  background: #fff;
}

.section-heading {
  margin-bottom: 1.6rem;
  text-align: left;
}

.section-heading--center {
  text-align: center;
}

.section-heading span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.55vw, 1.95rem);
  line-height: 1.25;
  font-weight: 900;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.business-list a {
  display: flex;
  min-height: 10.5rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.35rem;
  border: 1px solid rgba(215, 25, 32, 0.12);
  color: inherit;
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(77, 30, 20, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.business-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.34);
  background: #fff;
  box-shadow: 0 24px 56px rgba(77, 30, 20, 0.14);
}

.business-list strong {
  color: var(--deep-red);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.25;
}

.business-list span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.scene-grid article {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-muted);
  box-shadow: var(--shadow);
}

.scene-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #111;
  font-size: 1.1rem;
}

.scene-grid span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.scene-photos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.scene-photos figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.scene-photos img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.scene-photos figure:hover img {
  transform: scale(1.05);
}

.scene-photos figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.52));
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.brand-panel {
  padding: 3.5rem 0;
  background: #fff;
}

.brand-panel__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.2rem;
  align-items: center;
  padding: 2.35rem;
  background: #111;
  border-left: 8px solid var(--gold-muted);
  color: #fff;
  box-shadow: var(--shadow);
}

.brand-panel__label {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffd7ad;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-panel h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
  font-weight: 900;
}

.brand-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.8;
}

.home-brands {
  padding: 4rem 0;
  background: #fff;
}

.home-brands .section-heading p {
  max-width: 44rem;
  margin: 0.65rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.home-brands__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.home-brand-card {
  position: relative;
  min-height: 15.5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #2d1713;
  box-shadow: 0 18px 42px rgba(54, 25, 18, 0.12);
}

.home-brand-card--large {
  grid-row: span 2;
}

.home-brand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.home-brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 8, 6, 0.04), rgba(20, 8, 6, 0.78));
}

.home-brand-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.home-brand-card div {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
}

.home-brand-card span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.55rem;
  background: rgba(215, 25, 32, 0.9);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.home-brand-card strong {
  display: block;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.home-brand-card p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.65;
}

.home-process {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--warm) 100%);
}

.home-process .section-heading p {
  max-width: 44rem;
  margin: 0.65rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.home-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.home-process__grid article {
  padding: 1.3rem;
  background: #fff;
  border: 1px solid rgba(215, 25, 32, 0.12);
  box-shadow: 0 14px 34px rgba(77, 30, 20, 0.06);
}

.home-process__grid span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold-muted);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-process__grid h3 {
  margin: 0 0 0.5rem;
  color: #160c0a;
  font-size: 1.14rem;
}

.home-process__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-cta {
  padding: 0 0 3.8rem;
  background: #fff;
}

.home-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--warm);
  border: 1px solid rgba(215, 25, 32, 0.14);
}

.home-cta span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cta h2 {
  margin: 0;
  color: #160c0a;
  font-size: clamp(1.35rem, 2.45vw, 1.9rem);
  line-height: 1.25;
}

.home-cta p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.home-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.2rem;
  padding: 0.72rem 1.3rem;
  background: var(--gold-muted);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.home-cta a:hover {
  background: var(--deep-red);
  color: #fff;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e1e1e1;
}

.faq-list li {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid #e1e1e1;
}

.faq-list strong {
  color: #111;
}

.faq-list span {
  color: var(--muted);
}

@media (max-width: 900px) {
  .home-hero {
    min-height: 560px;
  }

  .home-hero__image {
    background-image: linear-gradient(
        90deg,
        rgba(255, 248, 239, 0.98) 0%,
        rgba(255, 248, 239, 0.88) 46%,
        rgba(255, 248, 239, 0.58) 100%
      ),
      url("../images/home-national-art.png");
    background-position: center, right 1rem center;
    background-size: cover, min(76vw, 520px) auto;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
  }

  .home-tabs {
    margin-top: 0;
  }

  .home-tabs__inner {
    grid-template-columns: 1fr;
  }

  .home-tabs__links {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 1rem;
  }

  .home-strengths,
  .business-list,
  .scene-grid,
  .home-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scene-photos img {
    height: 180px;
  }

  .home-brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brand-card--large {
    grid-row: span 1;
  }

  .brand-panel__inner,
  .home-cta__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.6rem;
  }
}

@media (max-width: 700px) {
  .header-inner {
    width: calc(100% - 2rem);
    max-width: 1280px;
    padding: 0.85rem 0;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    flex-shrink: 0;
    margin-left: 0.75rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .home-hero {
    min-height: 510px;
  }

  .home-hero__content {
    padding: 1.8rem 0 2.6rem;
  }

  .home-hero h1 {
    max-width: 16rem;
  }

  body[data-lang="en"] .home-hero h1 {
    max-width: 22rem;
    font-size: 2rem;
  }

  .home-hero__card {
    width: min(100%, 26rem);
    margin: -2.5rem 0 2.4rem;
  }

  .home-tabs__title {
    padding: 1.25rem 1.4rem;
  }

  .home-tabs__links {
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    overflow: visible;
  }

  .company-intro {
    padding-top: 3rem;
  }

  .company-intro p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .home-strengths,
  .business-list,
  .feature-gallery__grid,
  .home-brands__grid,
  .scene-grid,
  .home-process__grid {
    grid-template-columns: 1fr;
  }

  .home-brand-card {
    min-height: 13.5rem;
  }

  .home-cta__inner {
    padding: 1.4rem;
  }

  .brand-panel__inner {
    padding: 1.4rem;
  }
}

/* hero */
.hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(
    165deg,
    var(--paper) 0%,
    color-mix(in srgb, var(--gold-soft) 42%, var(--paper)) 42%,
    var(--cream) 100%
  );
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero .lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ecc825 0%, var(--gold-bright) 100%);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-muted);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-muted);
  margin: 0 0 0.25rem;
}

.hero-meta dd {
  margin: 0;
  font-weight: 600;
}

/* sections */
section {
  padding: 3.25rem 0;
}

section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: var(--muted);
}

#about h3 {
  margin: 1.85rem 0 0.6rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold-muted);
}

#about h3:first-of-type {
  margin-top: 1.25rem;
}

#about ul:not(.facts) {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  max-width: 44rem;
  line-height: 1.7;
}

#about ul:not(.facts) li {
  margin-bottom: 0.35rem;
}

.coop-flow {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 42rem;
}

.coop-flow li {
  margin-bottom: 0.5rem;
}

.coop-subhead {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-muted);
}

.group-title {
  margin: 2.75rem 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  border-left: 4px solid var(--gold-bright);
  padding-left: 0.75rem;
}

.group-title:first-of-type {
  margin-top: 0;
}

/* 首页三大业态入口 */
.hub {
  padding: 2.5rem 0 3.5rem;
}

.hub-heading {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  text-align: center;
}

.hub-lead {
  margin: 0 auto 2rem;
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 2rem 1.5rem;
  min-height: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--gold-bright) 65%, var(--line));
  box-shadow: 0 16px 48px rgba(42, 35, 25, 0.1);
}

.pillar-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.pillar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-muted);
  text-transform: uppercase;
}

.pillar-title {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold-muted);
  letter-spacing: 0.04em;
}

.pillar-desc {
  display: block;
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.pillar-go {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-muted);
  margin-top: auto;
}

.pillar-card:hover .pillar-go {
  color: var(--gold-bright);
}

.hero-compact .lead {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.hero-compact {
  padding-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card h2,
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  flex: 1;
  font-size: 0.98rem;
}

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold-muted);
  background: color-mix(in srgb, var(--gold-soft) 55%, var(--paper));
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-link {
  font-weight: 600;
  align-self: flex-start;
}

.card-link::after {
  content: " >";
}

.card .card-notice {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  background: #fff2f2 !important;
  border: 1px solid #f5a3a3 !important;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700 !important;
  color: #c0392b !important;
  line-height: 1.4;
  flex: none !important;
}

.card .card-notice::before {
  content: "●";
  font-size: 0.55rem;
  flex-shrink: 0;
  color: #e74c3c;
}

.badge-note {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1rem;
  background: color-mix(in srgb, var(--gold-soft) 28%, var(--cream));
  border-radius: var(--radius);
  border: 1px dashed color-mix(in srgb, var(--gold) 45%, transparent);
  margin-top: 1.5rem;
}

.ai-answer-panel {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold-muted);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.ai-answer-panel h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.ai-answer-panel p {
  margin: 0;
  color: #333;
  line-height: 1.8;
}

/* corporate content pages */
.corp-tabs {
  position: sticky;
  top: 87px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.corp-tabs__inner {
  display: flex;
  gap: clamp(0.8rem, 3vw, 2.5rem);
  overflow-x: auto;
  padding: 0.85rem 0;
}

.corp-tabs a {
  color: #444;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.corp-tabs a:hover {
  color: var(--gold-muted);
}

.corp-section {
  padding: 4rem 0;
  scroll-margin-top: 150px;
}

.corp-section--light {
  background: #f7f7f5;
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: start;
}

.about-page .page-head {
  position: relative;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: #fff;
  background-color: #3a3a3a;
  background-image:
    linear-gradient(90deg, rgba(18, 18, 18, 0.74) 0%, rgba(18, 18, 18, 0.42) 48%, rgba(18, 18, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.12) 100%),
    url("../images/about-profile-bg.jpg");
  background-position: center 32%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 0;
}

.about-page .page-head h1,
.about-page .page-head p,
.about-page .page-head .corp-breadcrumb,
.about-page .page-head .corp-breadcrumb a {
  color: #fff;
}

.about-page .page-head p {
  color: rgba(255, 255, 255, 0.88);
}

.about-page .corp-tabs {
  background: rgba(28, 28, 28, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-page .corp-tabs a {
  color: rgba(255, 255, 255, 0.86);
}

.about-page .corp-tabs a:hover {
  color: var(--gold-bright);
}

.about-profile-cover {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 54vw, 660px);
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: #fff;
  background-color: #3a3a3a;
  background-image:
    linear-gradient(90deg, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.42) 38%, rgba(18, 18, 18, 0.12) 72%, rgba(18, 18, 18, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.16) 100%),
    url("../images/about-profile-bg.jpg");
  background-position: center 54%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.about-profile-cover .about-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.about-profile-cover .section-heading span {
  color: var(--gold-bright);
}

.about-profile-cover .section-heading h2 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.36);
}

.about-profile-cover .section-intro {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.9;
}

.about-profile-cover .facts {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-profile-cover .facts li {
  border-bottom-color: rgba(20, 20, 20, 0.12);
}

.about-profile-cover .facts strong {
  color: rgba(28, 28, 28, 0.62);
}

.about-profile-cover .facts span {
  color: #222;
  font-weight: 700;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--gold-muted);
  font-weight: 900;
}

.timeline span {
  color: #333;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-grid article {
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-muted);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.value-grid h3 {
  margin: 0 0 0.55rem;
  color: #111;
  font-size: 1.1rem;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
}

.brand-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-matrix a {
  display: block;
  min-height: 190px;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.brand-matrix a:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  background: #fff8f8;
}

.brand-matrix span {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.18rem 0.5rem;
  color: var(--gold-muted);
  background: color-mix(in srgb, var(--gold-soft) 55%, var(--paper));
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-matrix h3 {
  margin: 0 0 0.65rem;
  color: #111;
  font-size: 1.25rem;
  line-height: 1.3;
}

.brand-matrix p {
  margin: 0;
  color: var(--muted);
}

.corp-cta {
  padding-top: 1rem;
}

.corp-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: #f2f2f2;
  border-left: 8px solid var(--gold-muted);
}

.corp-cta h2 {
  margin: 0 0 0.3rem;
}

.corp-cta p {
  margin: 0;
}

@media (max-width: 900px) {
  .corp-tabs {
    top: 70px;
  }

  .about-profile-cover {
    min-height: auto;
    background-position: center 42%;
  }

  .about-grid,
  .value-grid,
  .brand-matrix,
  .corp-cta__inner {
    grid-template-columns: 1fr;
  }

  .corp-cta__inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  .about-profile-cover {
    padding: 3.25rem 0;
    background-image:
      linear-gradient(180deg, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.54) 100%),
      url("../images/about-profile-bg.jpg");
  }

  .about-profile-cover .facts li {
    grid-template-columns: 5.5rem 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* store detail pages */
.store-page {
  background: #fff;
}

.store-hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fff 0%, #f7f7f5 52%, #fceeee 100%);
  border-bottom: 1px solid var(--line);
}

.store-hero--rongji {
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, 38vw, 660px);
  display: flex;
  align-items: center;
  background-color: #1f140f;
  background-image: linear-gradient(
      90deg,
      rgba(20, 14, 10, 0.38) 0%,
      rgba(20, 14, 10, 0.24) 38%,
      rgba(20, 14, 10, 0.08) 72%,
      rgba(20, 14, 10, 0) 100%
    ),
    url("../images/rongji-hero-web.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5.7rem;
  padding-bottom: 2.4rem;
}

.store-hero--rongji .store-hero__grid {
  grid-template-columns: minmax(0, 36rem);
}

.store-hero--rongji .corp-breadcrumb,
.store-hero--rongji .corp-breadcrumb a,
.store-hero--rongji .store-lead {
  color: rgba(255, 255, 255, 0.86);
}

.store-hero--rongji .store-kicker {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.store-hero--rongji h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.store-rongji-page .corp-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.store-rongji-page .store-kicker {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
}

.store-rongji-page .store-hero h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.store-rongji-page .store-lead,
.store-rongji-page .store-copy {
  max-width: 34rem;
  font-size: 0.94rem;
  line-height: 1.72;
}

.store-rongji-page .store-actions {
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.store-rongji-page .btn {
  padding: 0.52rem 1.05rem;
  font-size: 0.88rem;
}

.store-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.store-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold-muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.store-hero h1 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  font-weight: 900;
}

.store-lead,
.store-copy {
  margin: 0;
  color: #333;
  font-size: 1.04rem;
  line-height: 1.85;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.store-hero__media {
  min-width: 0;
}

.store-image-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.store-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.store-image-card figcaption {
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.store-photo-slot {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed color-mix(in srgb, var(--gold) 55%, #bbb);
  border-radius: 6px;
  background: repeating-linear-gradient(
      135deg,
      rgba(215, 25, 32, 0.04) 0,
      rgba(215, 25, 32, 0.04) 12px,
      rgba(255, 255, 255, 0.72) 12px,
      rgba(255, 255, 255, 0.72) 24px
    ),
    #fafafa;
  color: #7a4a4a;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
}

.store-photo-slot--large {
  min-height: 360px;
}

.store-local-nav {
  position: sticky;
  top: 87px;
  z-index: 45;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.store-rongji-page .store-local-nav {
  top: 0;
  background: rgba(32, 20, 14, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.store-rongji-page .store-local-nav__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0.62rem 0;
}

.store-rongji-page .store-local-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 0.28rem 0.35rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.store-rongji-page .store-local-nav a:last-child {
  border-right: 0;
}

.store-rongji-page .store-local-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.store-local-nav__inner {
  display: flex;
  gap: clamp(0.75rem, 3vw, 2rem);
  overflow-x: auto;
  padding: 0.8rem 0;
}

.store-local-nav a {
  color: #444;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.store-local-nav a:hover {
  color: var(--gold-muted);
}

.store-section {
  padding: 3rem 0;
  scroll-margin-top: 150px;
}

.store-rongji-page .store-section {
  padding: 2.25rem 0;
  scroll-margin-top: 90px;
}

.store-rongji-page .store-section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.25;
}

.store-section--light {
  background: #f7f7f5;
  border-block: 1px solid var(--line);
}

.store-answer-box {
  margin-top: 1.2rem;
  padding: 1.2rem 1.35rem;
  background: #fffdf8;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  border-left: 5px solid var(--gold-muted);
  border-radius: 6px;
}

.store-answer-box h2,
.store-answer-box h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.store-answer-box p {
  margin: 0;
  color: #333;
  line-height: 1.8;
}

.store-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.store-stat-grid div {
  padding: 1.2rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-muted);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.store-rongji-page .store-stat-grid {
  gap: 0.78rem;
}

.store-rongji-page .store-stat-grid div {
  padding: 0.86rem 0.82rem;
  border-left-width: 3px;
  box-shadow: 0 8px 20px rgba(31, 31, 31, 0.06);
}

.store-rongji-page .store-stat-grid span {
  font-size: 0.78rem;
}

.store-rongji-page .store-stat-grid strong {
  font-size: 1rem;
}

.store-stat-grid span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.store-stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.store-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.store-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.store-proof-grid article {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.store-proof-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.store-proof-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
}

.store-tags span {
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  color: var(--gold-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.store-rongji-page .store-detail-grid {
  gap: clamp(1.1rem, 3vw, 2.2rem);
}

.store-rongji-page .store-tags {
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.store-rongji-page .store-tags span {
  padding: 0.28rem 0.54rem;
  font-size: 0.8rem;
}

.store-rongji-page .store-highlight-list {
  font-size: 0.94rem;
  line-height: 1.68;
}

.store-rongji-page .store-gallery {
  gap: 0.78rem;
}

.store-rongji-page .store-gallery img {
  box-shadow: 0 8px 20px rgba(31, 31, 31, 0.07);
}

.store-rongji-page .section-intro {
  margin-bottom: 1.25rem;
  font-size: 0.94rem;
}

.store-highlight-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #333;
  line-height: 1.85;
}

.store-highlight-list li {
  margin-bottom: 0.35rem;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.store-gallery--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(31, 31, 31, 0.08);
}

.store-faq {
  margin: 0;
}

.store-faq dt {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

.store-faq dd {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.store-rongji-page .store-faq {
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .store-hero__grid,
  .store-detail-grid {
    grid-template-columns: 1fr;
  }

  .store-stat-grid,
  .store-proof-grid,
  .store-gallery--four,
  .store-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .store-local-nav {
    top: 70px;
  }

  .store-rongji-page .store-local-nav {
    top: 0;
  }

  .store-rongji-page .store-local-nav__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0.45rem 0;
  }

  .store-rongji-page .store-local-nav a {
    border-right: 0;
    font-size: 0.82rem;
  }

  .store-stat-grid,
  .store-proof-grid,
  .store-gallery--four,
  .store-gallery {
    grid-template-columns: 1fr;
  }

  .store-photo-slot--large {
    min-height: 260px;
  }
}

/* lists / hotel */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.facts {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.facts li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.facts li:last-child {
  border-bottom: none;
}

.facts strong {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.store-rongji-page .facts li {
  padding: 0.68rem 0.82rem;
  font-size: 0.9rem;
}

.store-rongji-page .facts strong {
  font-size: 0.8rem;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-placeholder {
  min-height: 280px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--gold) 20%, var(--paper)),
    var(--cream)
  );
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 1.5rem;
}

/* footer */
.site-footer {
  padding: 2.75rem 0 2.5rem;
  border-top: 1px solid #d9d9d9;
  background: #e5e5e3;
  color: #2f2f2f;
  font-size: 0.92rem;
  text-align: center;
}

.site-footer a {
  color: #2f2f2f;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-muted);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  width: min(var(--max), 100% - 2rem);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer small {
  display: block;
  margin-top: 1rem;
  opacity: 0.75;
}

.site-footer__inner {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.site-footer__inner p {
  margin: 0;
}

.footer-hotline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  align-items: baseline;
  font-family: "STSong", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.2;
  font-weight: 900;
}

.footer-hotline a {
  color: #2c2928;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}

.site-footer--corp {
  text-align: left;
}

.footer-corp {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.footer-corp p {
  margin: 0 0 0.45rem;
}

.footer-corp__name {
  font-size: 1.12rem;
  color: #111;
}

.footer-corp__brand a {
  font-weight: 800;
}

.footer-corp__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.footer-corp__nav strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #111;
  font-size: 0.95rem;
}

.footer-corp__nav a {
  display: block;
  margin-bottom: 0.25rem;
  color: #444;
}

.footer-corp__legal {
  grid-column: 1 / -1;
  margin-top: 0.6rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(47, 47, 47, 0.14);
  color: #666;
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .site-footer--corp {
    text-align: center;
  }

  .footer-corp,
  .footer-corp__nav {
    grid-template-columns: 1fr;
  }
}

/* page title */
.page-head {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-head h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.page-head p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

/* util */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-bright);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* 新闻列表（门户式：日期 + 标题 + 摘要） */
.corp-breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: var(--max);
}

.corp-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.corp-breadcrumb a:hover {
  color: var(--gold-muted);
}

.corp-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-top: 0;
}

.corp-news-list__item {
  min-width: 0;
}

.corp-news-list__link {
  position: relative;
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  gap: 1.1rem;
  min-height: 100%;
  padding: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(253, 232, 233, 0.68), rgba(255, 255, 255, 0) 44%),
    #fff;
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.055);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.corp-news-list__link:hover {
  border-color: color-mix(in srgb, var(--gold) 34%, var(--line));
  box-shadow: 0 16px 34px rgba(31, 31, 31, 0.1);
  transform: translateY(-2px);
}

.corp-news-list__date {
  display: grid;
  min-height: 5.3rem;
  place-items: center;
  padding: 0.75rem 0.5rem;
  border-radius: 4px;
  background: var(--deep-red);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.corp-news-list__title {
  display: block;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  font-weight: 850;
  color: var(--ink);
  margin-bottom: 0.45rem;
  line-height: 1.42;
}

.corp-news-list__link:hover .corp-news-list__title {
  color: var(--gold-muted);
}

.corp-news-list__excerpt {
  display: block;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.65;
}

.corp-news-list__tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: var(--gold-muted);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  background: rgba(253, 232, 233, 0.46);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .corp-news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .corp-news-list__link {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .corp-news-list__date {
    min-height: auto;
    width: max-content;
    padding: 0.38rem 0.55rem;
  }
}

/* 文章内页（官网通稿排版） */
.article-page {
  padding-bottom: 3rem;
}

.article-page .wrap--article {
  max-width: 42rem;
  margin-inline: auto;
}

.article-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.article-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.article-prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
}

.article-prose > p {
  margin: 0 0 1.1rem;
}

.article-prose > h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.article-prose > h2:first-child {
  margin-top: 0;
}

.article-prose > ul,
.article-prose > ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
  color: var(--muted);
}

.article-prose > ul li,
.article-prose > ol li {
  margin-bottom: 0.4rem;
}

.article-prose .lead {
  font-size: 1.08rem;
  color: var(--muted);
  border-left: 4px solid var(--gold-bright);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.article-prose blockquote {
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--cream) 85%, var(--paper));
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-muted);
  color: var(--muted);
  font-style: normal;
}

.article-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-back a {
  font-weight: 600;
}

.article-figure {
  margin: 1.35rem 0 1.5rem;
  text-align: center;
}

.article-figure img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.article-figure figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* 2026 visual refresh */
:root {
  --surface: #fffdfa;
  --surface-warm: #fff7ec;
  --surface-soft: #f8f1e8;
  --hairline: rgba(68, 48, 34, 0.12);
  --shadow-soft: 0 18px 52px rgba(60, 36, 24, 0.09);
  --shadow-hover: 0 26px 70px rgba(60, 36, 24, 0.14);
}

body {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 42%, #fff 100%);
}

.site-header--solid {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(68, 48, 34, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(44, 30, 22, 0.06);
}

.site-header .inner,
.header-inner {
  padding: 0.95rem 0;
}

.nav-item > .nav-top,
.nav-main > .nav-top {
  padding: 0.48rem 0.12rem;
  font-size: 1rem;
}

.nav-contact {
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(30, 20, 15, 0.04);
}

.home-hero {
  height: clamp(480px, calc(100vh - 86px), 820px);
  height: clamp(480px, calc(100svh - 86px), 820px);
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  background: #fff;
}

.home-hero__image {
  background-color: #fff;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.84) 52%, rgba(255, 255, 255, 0.28) 76%, rgba(255, 255, 255, 0.1) 100%),
    url("../images/home-going-national.png");
  background-position: center, right clamp(0rem, 0.9vw, 1rem) bottom clamp(6.5rem, 12svh, 8rem);
  background-repeat: no-repeat;
  background-size: 100% 100%, min(49vw, 960px) auto;
}

.home-hero__inner {
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.5fr);
  align-items: start;
  padding: clamp(2.3rem, 4.8svh, 3.8rem) 0 clamp(6.2rem, 12svh, 8.4rem);
}

.home-hero__content {
  width: min(43rem, 100%);
}

.home-hero__eyebrow {
  color: var(--gold-muted);
}

.home-hero h1 {
  max-width: 43rem;
  font-size: clamp(2.2rem, 3.2vw, 3.05rem);
  color: #20140f;
  letter-spacing: 0;
  text-shadow: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-hero__lead,
.home-hero__meta dd {
  color: #31241d;
  overflow-wrap: anywhere;
}

.home-hero__meta {
  width: min(38rem, 100%);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(216, 180, 94, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-hero__meta dt {
  color: var(--gold-muted);
}

.home-hero__meta a {
  color: #20140f;
}

.home-hero__btn {
  border-radius: 8px;
}

.home-hero__btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-muted) 100%);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(215, 25, 32, 0.28);
}

.home-hero__btn--ghost {
  color: #20140f;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(32, 20, 15, 0.28);
}

.home-tabs {
  margin-top: -88px;
  background: transparent;
  box-shadow: none;
}

.company-intro,
.home-section,
.home-brands,
.feature-gallery,
.home-process,
.corp-section,
.store-section {
  padding-block: clamp(3.8rem, 7vw, 5.8rem);
}

.home-section--warm,
.corp-section--light,
.store-section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 247, 236, 0.9)),
    var(--surface-warm);
}

.section-heading span,
.store-kicker,
.pillar-label {
  letter-spacing: 0.1em;
}

.section-heading h2,
.page-head h1,
.store-hero h1 {
  letter-spacing: 0;
}

.section-heading p,
.section-intro,
.store-copy,
.store-lead {
  color: #51473f;
}

.home-strengths article,
.business-list a,
.card,
.value-grid article,
.brand-matrix a,
.ai-answer-panel,
.store-stat-grid div,
.store-proof-grid article,
.store-answer-box,
.facts {
  border-color: var(--hairline);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.home-strengths article,
.business-list a,
.card,
.value-grid article,
.brand-matrix a,
.store-stat-grid div,
.store-proof-grid article {
  background: rgba(255, 255, 255, 0.9);
}

.business-list a,
.card,
.brand-matrix a,
.home-brand-card,
.store-image-card,
.store-gallery img,
.scene-photos figure,
.feature-tile {
  border-radius: 8px;
  overflow: hidden;
}

.business-list a:hover,
.card:hover,
.brand-matrix a:hover,
.home-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card {
  padding: 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card-thumb {
  margin: -1.25rem -1.25rem 1.15rem;
  width: calc(100% + 2.5rem);
  max-width: none;
  border: 0;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 16 / 10;
}

.card .tag,
.brand-matrix span {
  border-radius: 999px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.card-link::after {
  content: "";
}

.home-brand-card::after {
  background: linear-gradient(180deg, rgba(20, 8, 6, 0.02), rgba(20, 8, 6, 0.72));
}

.scene-grid article {
  border-left: 0;
  border-top: 3px solid var(--gold-muted);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.brand-panel__inner {
  border-left: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(30, 24, 20, 0.94), rgba(113, 30, 24, 0.9)),
    #111;
}

.page-head {
  background:
    linear-gradient(90deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.88)),
    url("../images/brand-slogan.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--hairline);
}

.corp-tabs,
.store-local-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.store-hero {
  padding-block: clamp(3.5rem, 7vw, 5.8rem);
  background:
    radial-gradient(circle at 82% 16%, rgba(215, 25, 32, 0.12), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff8ef 54%, #f8f1e8 100%);
}

.store-image-card {
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
}

.store-stat-grid div {
  border-left: 0;
  border-top: 3px solid var(--gold-muted);
}

.store-gallery {
  gap: 1.15rem;
}

.store-gallery img {
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.site-footer--corp {
  background: linear-gradient(135deg, #2a201b 0%, #17120f 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer--corp a,
.footer-corp__name,
.footer-corp__nav strong {
  color: #fff;
}

@media (max-width: 900px) {
  .home-hero,
  .home-hero__inner {
    height: auto;
    min-height: auto;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding: 4.2rem 0;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .home-hero__lead {
    max-width: 100%;
  }

  .home-hero__image {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(255, 255, 255, 1) 100%),
      url("../images/home-going-national.png");
    background-position: center, center top 1rem;
    background-size: 100% 100%, min(150vw, 760px) auto;
  }

  .home-tabs {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(44, 30, 22, 0.06);
  }

  .business-list,
  .scene-grid,
  .home-brands__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-hero h1 {
    max-width: 8.6em;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    word-break: break-all;
  }

  .home-hero__content,
  .home-hero__lead,
  .home-hero__meta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .home-hero__meta dd {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .home-hero__lead {
    display: block;
    font-size: 0.98rem;
    line-break: anywhere;
    word-break: break-all;
  }

  .home-hero__meta div {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .home-hero__meta dd {
    line-break: anywhere;
    word-break: break-all;
  }
}
