:root {
  --red: #b23827;
  --red-dark: #8f281f;
  --red-deep: #6d1f18;
  --brown: #4b2e1f;
  --brown-soft: #7a563b;
  --cream: #f4ead6;
  --cream-deep: #ead5ac;
  --paper: #fff7e8;
  --ink: #2c1b13;
  --muted: #785f4b;
  --gold: #c6a06a;
  --gold-light: #e8d2a5;
  --shadow: 0 18px 45px rgba(75, 46, 31, 0.16);
  --shadow-deep: 0 24px 60px rgba(44, 27, 19, 0.22);
  --frame: rgba(198, 160, 106, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at 18% 10%, rgba(178, 56, 39, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(122, 86, 59, 0.08) 0 2px, transparent 2px 18px),
    var(--cream);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(180deg, rgba(75, 46, 31, 0.98), rgba(75, 46, 31, 0.94));
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(44, 27, 19, 0.28);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--red);
}

.nav-wrap {
  width: min(1200px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  letter-spacing: 0.08em;
}

.brand-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--cream-deep);
  border: 2px solid var(--cream-deep);
  border-radius: 50%;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 28px;
  line-height: 1;
}

.brand-mark strong {
  display: block;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 26px;
  line-height: 1.1;
}

.brand-mark small {
  display: block;
  color: var(--cream-deep);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(244, 234, 214, 0.16);
  color: var(--cream-deep);
}

.site-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--red);
}

.site-nav .nav-phone {
  margin-left: 8px;
  background: var(--red);
  color: #fff8e8;
  box-shadow: inset 0 -3px 0 rgba(75, 46, 31, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(244, 234, 214, 0.45);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--paper);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-warm {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(178, 56, 39, 0.13), rgba(234, 213, 172, 0.78)),
    var(--cream);
}

.section-warm::before,
.section-paper::before,
.stores-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(75, 46, 31, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(75, 46, 31, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.38;
}

.hero,
.page-banner {
  padding: 96px 0 100px;
}

.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 520px);
  height: 180px;
  background:
    radial-gradient(circle at 70% 50%, rgba(178, 56, 39, 0.18), transparent 70%);
  pointer-events: none;
}

.page-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(178, 56, 39, 0.18), rgba(234, 213, 172, 0.82)),
    var(--cream);
}

.page-banner--photo {
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 110px 0 96px;
}

.page-banner--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 27, 19, 0.82) 0%, rgba(75, 46, 31, 0.55) 45%, rgba(75, 46, 31, 0.35) 100%);
}

.page-banner--photo .container {
  position: relative;
  z-index: 1;
}

.page-banner--photo .breadcrumb,
.page-banner--photo .breadcrumb a {
  color: rgba(255, 247, 232, 0.82);
}

.page-banner--photo .breadcrumb a {
  color: var(--gold-light);
}

.page-banner--photo h1 {
  color: var(--paper);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.page-banner--photo .hero-lead {
  color: rgba(255, 247, 232, 0.9);
  max-width: 680px;
}

.page-banner h1 {
  margin: 0;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", "SimSun", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
}

.section-head--center {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head--center .section-kicker {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(198, 160, 106, 0.45);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.72);
}

.section-head--center h2::before,
.section-head--center h2::after {
  content: "◆";
  display: inline-block;
  margin: 0 14px;
  color: var(--gold);
  font-size: 0.42em;
  vertical-align: middle;
}

.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding: 0 0 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--brown);
  border: 2px solid var(--gold);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  color: var(--paper);
  border-right: 1px solid rgba(198, 160, 106, 0.28);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  color: var(--gold-light);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 247, 232, 0.82);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.trust-strip {
  padding: 34px 0;
  background:
    linear-gradient(90deg, rgba(178, 56, 39, 0.08), rgba(234, 213, 172, 0.45), rgba(178, 56, 39, 0.08));
  border-top: 1px solid rgba(198, 160, 106, 0.35);
  border-bottom: 1px solid rgba(198, 160, 106, 0.35);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-badge {
  padding: 22px 18px;
  text-align: center;
  background: rgba(255, 247, 232, 0.88);
  border: 1px solid rgba(198, 160, 106, 0.42);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(75, 46, 31, 0.08);
}

.trust-badge strong {
  display: block;
  color: var(--red-dark);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 22px;
}

.trust-badge span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.scene-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.scene-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 2px solid rgba(198, 160, 106, 0.38);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.scene-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.scene-card:hover img {
  transform: scale(1.04);
}

.scene-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(44, 27, 19, 0.88));
}

.scene-card strong {
  display: block;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 24px;
}

.scene-card span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 247, 232, 0.82);
}

.scene-card--large {
  grid-row: span 1;
  min-height: 360px;
}

.scene-card--large img {
  min-height: 360px;
}

.cta-band {
  padding: 72px 0;
  background:
    linear-gradient(135deg, var(--red-deep), var(--red) 45%, var(--brown) 100%);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  color: var(--paper);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 247, 232, 0.86);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-light {
  color: var(--brown);
  background: var(--gold-light);
  border: 2px solid var(--paper);
}

.section-rich {
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 160, 106, 0.18), transparent 28rem),
    rgba(255, 247, 232, 0.55);
}

.section-divider {
  height: 28px;
  background:
    linear-gradient(90deg, transparent, var(--gold) 20%, var(--red) 50%, var(--gold) 80%, transparent);
  opacity: 0.45;
}

.page-banner .hero-lead {
  max-width: 760px;
}

.breadcrumb {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--red-dark);
  font-weight: 700;
}

.hero-grid,
.split-layout,
.banquet-grid,
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", "SimSun", serif;
  font-weight: 900;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  text-shadow: 0 3px 0 rgba(198, 160, 106, 0.24);
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.hero-lead,
.section-head p,
.split-layout p,
.banquet-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.btn-primary {
  color: #fff8e8;
  background: var(--red);
  border: 2px solid var(--red-dark);
  box-shadow: 0 8px 0 rgba(143, 40, 31, 0.18);
}

.btn-secondary {
  color: var(--brown);
  background: rgba(255, 247, 232, 0.88);
  border: 2px solid var(--brown-soft);
}

.hero-tags,
.scene-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.scene-list span {
  color: var(--brown);
  background: rgba(255, 247, 232, 0.72);
  border: 1px solid rgba(122, 86, 59, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}

.hero-visual,
.image-card,
.banquet-panel {
  position: relative;
  padding: 16px;
  background: var(--paper);
  border: 2px solid var(--frame);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
}

.hero-visual::after,
.image-card::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(178, 56, 39, 0.22);
  border-radius: 16px;
  pointer-events: none;
}

.hero-visual::before,
.image-card::before,
.banquet-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(178, 56, 39, 0.26);
  border-radius: 16px;
  pointer-events: none;
}

.hero-visual img,
.image-card img,
.banquet-panel img,
.wide-visual img,
.visual-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.stamp-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 230px;
  padding: 16px 18px;
  color: var(--paper);
  background: rgba(143, 40, 31, 0.94);
  border: 2px solid var(--cream-deep);
  border-radius: 16px;
}

.stamp-card strong {
  display: block;
  font-size: 22px;
}

.stamp-card span {
  display: block;
  font-size: 13px;
}

.section-paper {
  background: rgba(255, 247, 232, 0.58);
}

.section-head {
  position: relative;
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-row {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-row article,
.dish-card,
.store-card,
.contact-card {
  background: rgba(255, 247, 232, 0.88);
  border: 1px solid rgba(75, 46, 31, 0.22);
  border-left: 6px solid var(--red);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(75, 46, 31, 0.08);
}

.feature-row article {
  padding: 18px 20px;
}

.feature-row strong {
  display: block;
  color: var(--red-dark);
  font-size: 18px;
}

.feature-row span {
  color: var(--muted);
}

.dish-grid,
.store-grid,
.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dish-card {
  position: relative;
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.dish-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
  z-index: 2;
}

.dish-card .dish-media {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dish-card .dish-body {
  padding: 22px 24px 24px;
}

.dish-card--text .dish-body {
  padding: 30px 24px 24px;
}

.dish-card::after {
  content: "大风歌";
  position: absolute;
  right: -16px;
  bottom: -10px;
  color: rgba(178, 56, 39, 0.08);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 58px;
  transform: rotate(-8deg);
}

.dish-label {
  display: inline-block;
  padding: 5px 12px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.dish-card h3,
.store-card h3 {
  margin: 16px 0 10px;
  color: var(--brown);
  font-size: 26px;
  font-family: "STKaiti", "KaiTi", serif;
}

.dish-card p,
.store-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.wide-visual {
  margin: 34px 0 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(75, 46, 31, 0.22);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stores-section {
  background:
    linear-gradient(rgba(75, 46, 31, 0.88), rgba(75, 46, 31, 0.88)),
    var(--brown);
  color: var(--paper);
}

.stores-section .section-kicker,
.stores-section h2 {
  color: var(--cream-deep);
}

.stores-section .section-head p {
  color: rgba(255, 247, 232, 0.78);
}

.stores-section .text-link {
  color: var(--gold-light);
}

.stores-section .section-head--center .section-kicker {
  color: var(--cream-deep);
  background: rgba(75, 46, 31, 0.55);
  border-color: rgba(198, 160, 106, 0.35);
}

.store-grid {
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.store-card {
  padding: 0;
  color: var(--ink);
  border-left-color: var(--cream-deep);
  overflow: hidden;
}

.store-card .store-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.store-card .store-body {
  padding: 22px 26px 26px;
}

.store-card .store-body p + p {
  margin-top: 10px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.preview-card {
  padding: 0;
  background: rgba(255, 247, 232, 0.92);
  border: 1px solid rgba(198, 160, 106, 0.38);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.preview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.preview-card .preview-body {
  padding: 22px 24px 26px;
  border-top: 3px solid var(--red);
}

.preview-card h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", serif;
}

.preview-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(75, 46, 31, 0.2);
  box-shadow: 0 10px 24px rgba(75, 46, 31, 0.08);
  background: var(--paper);
}

.gallery-grid figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.gallery-item {
  margin: 0;
}

.text-link {
  color: var(--red-dark);
  font-weight: 800;
}

.store-card p + p {
  margin-top: 10px;
}

.store-card .store-body strong {
  color: var(--brown);
}

.store-card a:not(.store-link) {
  color: var(--red-dark);
  font-weight: 800;
}

.store-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 16px;
  color: var(--paper);
  background: var(--red);
  border-radius: 999px;
  font-weight: 800;
}

.banquet-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(198, 160, 106, 0.32), transparent 26rem),
    var(--cream);
}

.banquet-panel .panel-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 9px 14px;
  color: var(--paper);
  background: rgba(75, 46, 31, 0.88);
  border-radius: 999px;
  font-size: 14px;
}

.visual-grid img {
  height: 260px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid rgba(75, 46, 31, 0.2);
  box-shadow: 0 10px 24px rgba(75, 46, 31, 0.08);
}

.news-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.72), rgba(244, 234, 214, 0.92)),
    var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}

.news-panel,
.faq-panel {
  padding: 28px;
  background: rgba(255, 247, 232, 0.92);
  border: 1px solid rgba(75, 46, 31, 0.22);
  border-top: 5px solid var(--red);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.news-panel h3,
.faq-panel h3 {
  margin: 0 0 22px;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 30px;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  padding: 18px 0;
  border-bottom: 1px dashed rgba(122, 86, 59, 0.35);
}

.news-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-list time {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: var(--paper);
  background: var(--brown-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.news-list strong {
  display: block;
  color: var(--red-dark);
  font-size: 18px;
  line-height: 1.5;
}

.news-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.news-placeholder time {
  background: rgba(178, 56, 39, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 247, 232, 0.88);
  border: 1px solid rgba(75, 46, 31, 0.18);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 18px;
  color: var(--brown);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(110deg, rgba(178, 56, 39, 0.12), rgba(234, 213, 172, 0.5)),
    var(--cream);
}

.contact-card {
  padding: 30px;
}

.contact-card strong {
  display: block;
  color: var(--red-dark);
  margin-top: 12px;
}

.contact-card strong:first-child {
  margin-top: 0;
}

.contact-card p {
  margin: 4px 0 0;
}

.site-footer {
  padding: 0 0 44px;
  color: rgba(255, 247, 232, 0.86);
  background: var(--brown);
  border-top: 4px solid var(--gold);
}

.footer-top {
  padding: 34px 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(178, 56, 39, 0.22), rgba(75, 46, 31, 0.4));
  border-bottom: 1px solid rgba(198, 160, 106, 0.28);
}

.footer-slogan {
  margin: 0;
  color: var(--gold-light);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.12em;
}

.footer-top p {
  margin: 10px 0 0;
  color: rgba(255, 247, 232, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-top: 36px;
}

.footer-logo {
  color: var(--cream-deep);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 32px;
  font-weight: 900;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer strong {
  color: var(--cream-deep);
}

.brand-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(198, 160, 106, 0.24), transparent 26rem),
    linear-gradient(135deg, rgba(75, 46, 31, 0.96), rgba(109, 31, 24, 0.96));
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}

.story-card,
.story-quote {
  border: 1px solid rgba(198, 160, 106, 0.45);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
}

.story-card {
  padding: 42px;
  color: rgba(255, 247, 232, 0.88);
  background: rgba(44, 27, 19, 0.38);
}

.story-card .section-kicker {
  color: var(--gold-light);
}

.story-card h2 {
  color: var(--paper);
}

.story-card p {
  color: rgba(255, 247, 232, 0.82);
}

.story-quote {
  display: grid;
  place-content: center;
  min-height: 320px;
  padding: 36px;
  text-align: center;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(178, 56, 39, 0.82), rgba(75, 46, 31, 0.92));
}

.story-quote span {
  color: var(--gold-light);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(30px, 4vw, 46px);
}

.story-quote strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  letter-spacing: 0.12em;
}

.story-quote p {
  margin: 10px 0 0;
  color: rgba(255, 247, 232, 0.78);
}

.signature-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(178, 56, 39, 0.16), transparent 24rem),
    var(--cream);
}

.signature-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
}

.signature-main {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 2px solid var(--frame);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
  background: var(--brown);
}

.signature-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.86;
}

.signature-main > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(44, 27, 19, 0.92));
}

.signature-main h3 {
  margin: 16px 0 10px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(36px, 5vw, 58px);
}

.signature-main p {
  max-width: 560px;
  color: rgba(255, 247, 232, 0.86);
}

.signature-side {
  display: grid;
  gap: 18px;
}

.signature-side article {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  border-radius: 18px;
  border: 1px solid rgba(198, 160, 106, 0.45);
  box-shadow: var(--shadow);
}

.signature-side img {
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
}

.signature-side strong {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 12px;
  color: var(--paper);
  background: rgba(143, 40, 31, 0.88);
  border-radius: 999px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 20px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  position: relative;
  min-height: 240px;
  padding: 28px 24px;
  overflow: hidden;
  background: rgba(255, 247, 232, 0.9);
  border: 1px solid rgba(198, 160, 106, 0.42);
  border-top: 5px solid var(--red);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.reason-card span {
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--paper);
  background: var(--brown);
  border-radius: 999px;
  font-weight: 900;
}

.reason-card h3 {
  margin: 18px 0 10px;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 28px;
}

.reason-card p,
.store-note {
  color: var(--muted);
}

.store-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(234, 213, 172, 0.32);
  border-left: 4px solid var(--red);
  border-radius: 10px;
}

.store-guide-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(178, 56, 39, 0.12), transparent 24rem),
    var(--cream);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 42px;
}

.article-card {
  position: relative;
  min-height: 230px;
  padding: 26px 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.96), rgba(244, 223, 181, 0.78));
  border: 1px solid rgba(198, 160, 106, 0.5);
  border-top: 5px solid var(--red);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.article-card::after {
  content: "食客资讯";
  position: absolute;
  right: -18px;
  bottom: -8px;
  color: rgba(178, 56, 39, 0.08);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 48px;
  transform: rotate(-8deg);
}

.article-card span {
  display: inline-flex;
  padding: 5px 12px;
  color: var(--paper);
  background: var(--brown);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.article-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 25px;
}

.article-card h3 a {
  color: inherit;
}

.article-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.article-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(198, 160, 106, 0.2), transparent 24rem),
    var(--cream);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.article-main,
.article-aside {
  background: rgba(255, 247, 232, 0.94);
  border: 1px solid rgba(198, 160, 106, 0.48);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.article-main {
  padding: clamp(28px, 4vw, 48px);
  border-top: 6px solid var(--red);
}

.article-main h2 {
  margin-top: 34px;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(28px, 3vw, 36px);
}

.article-main p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.95;
}

.article-meta {
  margin-top: 0;
  padding: 12px 16px;
  color: var(--muted) !important;
  background: rgba(234, 213, 172, 0.34);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  font-size: 14px !important;
}

.article-cta {
  margin-top: 36px;
  padding: 24px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(143, 40, 31, 0.96), rgba(75, 46, 31, 0.94));
  border: 1px solid rgba(198, 160, 106, 0.45);
  border-radius: 18px;
}

.article-cta strong {
  display: block;
  color: var(--gold-light);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 28px;
}

.article-cta p {
  margin: 8px 0 18px;
  color: rgba(255, 247, 232, 0.82);
  font-size: 16px;
}

.article-aside {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.article-aside h3 {
  margin: 0 0 16px;
  color: var(--brown);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 28px;
}

.article-aside a {
  display: block;
  padding: 14px 0;
  color: var(--red-dark);
  border-top: 1px solid rgba(75, 46, 31, 0.14);
  font-weight: 800;
}

.mobile-quickbar {
  display: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 28px;
    background: rgba(75, 46, 31, 0.98);
    border-bottom: 4px solid var(--red);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .site-nav .nav-phone {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .split-layout,
  .story-grid,
  .signature-layout,
  .banquet-grid,
  .contact-grid,
  .news-grid,
  .article-layout,
  .cta-band .container,
  .stats-grid,
  .trust-grid,
  .scene-showcase {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(198, 160, 106, 0.28);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .dish-grid,
  .visual-grid,
  .preview-grid,
  .gallery-grid,
  .article-card-grid,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  .container,
  .nav-wrap {
    width: min(100% - 28px, 1200px);
  }

  .nav-wrap {
    height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand-mark strong {
    font-size: 22px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .section,
  .hero {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead,
  .section-head p,
  .split-layout p,
  .banquet-grid p,
  .contact-grid p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-tags,
  .scene-list {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-tags span,
  .scene-list span {
    width: 100%;
    text-align: center;
  }

  .dish-grid,
  .store-grid,
  .visual-grid,
  .preview-grid,
  .gallery-grid,
  .article-card-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-quote {
    padding: 26px;
  }

  .signature-main,
  .signature-main img {
    min-height: 420px;
  }

  .signature-main > div {
    padding: 24px;
  }

  .store-card,
  .dish-card,
  .contact-card,
  .news-panel,
  .faq-panel {
    padding: 22px;
  }

  .visual-grid img {
    height: auto;
  }

  .stamp-card,
  .banquet-panel .panel-note {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .mobile-quickbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(75, 46, 31, 0.94);
    border: 1px solid rgba(198, 160, 106, 0.62);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(44, 27, 19, 0.35);
    backdrop-filter: blur(8px);
  }

  .mobile-quickbar a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    background: var(--red);
    border-radius: 999px;
    font-weight: 900;
  }

  .mobile-quickbar a:last-child {
    color: var(--brown);
    background: var(--gold-light);
  }
}
