/* 瑞程福面 - 极简轻奢居家风格 */

:root {
  --color-cloud: #fcfaf7;
  --color-beige: #f7f2eb;
  --color-beige-deep: #efe8de;
  --color-tea: #c9b59a;
  --color-warm: #c4a882;
  --color-warm-light: #e8d9c8;
  --color-warm-glow: rgba(212, 175, 130, 0.28);
  --color-jiangnan: #eef2f0;
  --color-text: #4a4540;
  --color-text-muted: #9a928a;
  --color-border: rgba(74, 69, 64, 0.09);
  --color-accent: #b8a890;
  --color-accent-deep: #6b6156;
  --font-sans: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-serif: 'Noto Serif SC', 'Songti SC', 'STSong', serif;
  --nav-height: 68px;
  --section-py: 6.5rem;
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.34, 0.9, 0.45, 1);
  --shadow-soft: 0 12px 40px rgba(74, 69, 64, 0.06);
  --shadow-warm: 0 16px 48px rgba(180, 140, 90, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-cloud);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(232, 217, 200, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(238, 242, 240, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-cloud) 0%, #f9f6f1 100%);
  background-attachment: fixed;
  line-height: 1.85;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- 导航栏 ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.nav-scrolled {
  background: rgba(252, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--color-border), 0 4px 24px rgba(74, 69, 64, 0.04);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text);
  flex-shrink: 0;
}

.navbar:not(.nav-scrolled) .nav-brand { color: #fff; }

.nav-brand img {
  height: 36px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  object-position: left center;
  border-radius: 3px;
  flex-shrink: 0;
}

.nav-brand-name {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  padding: 0.5rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.88;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity var(--transition), letter-spacing var(--transition);
}

.nav-menu a::before {
  content: '·';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  line-height: 1;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-menu a:hover::before,
.nav-menu a.is-active::before {
  opacity: 0.45;
}

.nav-menu a.is-active::before {
  opacity: 0.6;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  opacity: 0;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.35s ease, opacity 0.35s ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  width: 18px;
  opacity: 0.35;
}

.nav-menu a.is-active::after {
  opacity: 0.55;
  width: 22px;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  opacity: 1;
  letter-spacing: 0.1em;
}

.nav-menu a.is-active {
  font-weight: 400;
}

.navbar:not(.nav-scrolled) .nav-menu a { color: #fff; opacity: 0.92; }

.nav-menu a:hover { opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  position: relative;
  z-index: 1001;
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  opacity: 0.6;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  min-width: 44px;
  min-height: 36px;
  transition: opacity var(--transition), background var(--transition);
}

.navbar:not(.nav-scrolled) .lang-btn { color: #fff; }

.lang-btn:hover { opacity: 1; background: rgba(255,255,255,0.08); }
.navbar.nav-scrolled .lang-btn:hover { background: var(--color-beige); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar:not(.nav-scrolled) .nav-toggle { color: #fff; }

.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 首屏 Banner ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #1e1a17;
}

.hero-bg {
  position: absolute;
  inset: -12%;
  background-color: #2a2520;
  background-size: cover;
  background-position: center 42%;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform, filter;
  backface-visibility: hidden;
  animation: heroKenBurns 30s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  filter: saturate(1.12) contrast(1.02) brightness(0.92) sepia(0.08);
}

/* 由远及近放大 → 由近及远缩小，循环呼吸 */
@keyframes heroKenBurns {
  0%, 100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1.1) contrast(1.03) brightness(0.9);
  }
  50% {
    transform: scale(1.14) translate3d(0, -0.6%, 0);
    filter: saturate(1.18) contrast(1.06) brightness(0.97);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(28, 22, 18, 0.52) 0%,
    rgba(28, 22, 18, 0.12) 42%,
    rgba(36, 26, 18, 0.48) 100%
  );
  pointer-events: none;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 45%,
    rgba(212, 175, 130, 0.12) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 55% at 50% 88%,
    rgba(212, 180, 140, 0.22) 0%,
    rgba(212, 160, 120, 0.08) 42%,
    transparent 72%
  );
  animation: heroWarmGlow 30s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  pointer-events: none;
}

@keyframes heroWarmGlow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}

/* 首屏文字依次淡入 */
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content .hero-fade:nth-child(1) { animation-delay: 0.1s; }
.hero-content .hero-fade:nth-child(2) { animation-delay: 0.28s; }
.hero-content .hero-fade:nth-child(3) { animation-delay: 0.42s; }
.hero-content .hero-fade:nth-child(4) { animation-delay: 0.56s; }
.hero-content .hero-fade:nth-child(5) { animation-delay: 0.72s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.75rem;
  max-width: 720px;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: none;
  color: rgba(255, 248, 240, 0.92);
  margin-bottom: 1.1rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(255, 248, 240, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.08);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero-title-en {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.hero-intro {
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  font-weight: 300;
  line-height: 2;
  opacity: 0.96;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 148px;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: rgba(255, 252, 248, 0.96);
  color: var(--color-accent-deep);
  border-color: rgba(255, 248, 240, 0.6);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 175, 130, 0.25);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.btn-dark {
  background: linear-gradient(145deg, #6b6156 0%, #564e45 100%);
  color: #faf8f5;
  box-shadow: 0 4px 16px rgba(86, 78, 69, 0.22);
}

.btn-dark:hover {
  background: linear-gradient(145deg, #756a5e 0%, #5f564c 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(86, 78, 69, 0.28);
}

.btn-muted {
  background: var(--color-beige-deep);
  color: var(--color-text);
  border-color: rgba(201, 181, 154, 0.45);
}

.btn-muted:hover {
  background: var(--color-tea);
  color: #fff;
  border-color: var(--color-tea);
  transform: translateY(-1px);
}

.btn-soft {
  background: rgba(255, 252, 248, 0.95);
  color: var(--color-text);
  border: 1px solid rgba(201, 181, 154, 0.55);
}

.btn-soft:hover {
  background: var(--color-beige);
  border-color: var(--color-warm);
  color: var(--color-accent-deep);
  transform: translateY(-1px);
}

/* ---------- 通用板块 ---------- */
.section { padding: var(--section-py) 1.5rem; }

.section-inner { max-width: 1140px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--color-warm);
  margin: 0 0 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-header.revealed .section-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-warm), transparent);
  margin: 0.9rem auto 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-header.revealed .section-title::after {
  width: 52px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 580px;
  margin: 1rem auto 0;
  line-height: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.section-header.revealed .section-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background: linear-gradient(180deg, var(--color-beige) 0%, rgba(247, 242, 235, 0.6) 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-stagger.revealed:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.revealed:nth-child(4) { transition-delay: 0.3s; }

/* ---------- 品牌简介 ---------- */
.section-about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f9f4ed 0%, var(--color-beige) 45%, #f5efe6 100%);
  padding-top: calc(var(--section-py) + 1rem);
  padding-bottom: calc(var(--section-py) + 1rem);
}

.about-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-decor-item {
  position: absolute;
  color: var(--color-tea);
}

.about-decor--tl { top: 6%; left: 4%; width: 72px; }
.about-decor--tr { top: 10%; right: 6%; width: 52px; }
.about-decor--bl { bottom: 12%; left: 8%; width: 48px; transform: rotate(-18deg); }
.about-decor--br { bottom: 18%; right: 5%; width: 36px; }

.about-decor-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 196, 176, 0.35);
}

.about-decor-dot--1 { width: 6px; height: 6px; top: 22%; left: 18%; }
.about-decor-dot--2 { width: 4px; height: 4px; bottom: 28%; left: 42%; opacity: 0.7; }
.about-decor-dot--3 { width: 5px; height: 5px; top: 38%; right: 22%; opacity: 0.6; }

.section-about .section-inner {
  position: relative;
  z-index: 1;
}

.section-about .section-header {
  margin-bottom: 4.5rem;
}

.section-about .section-title {
  font-weight: 400;
  color: var(--color-text);
}

.section-about .section-title::after {
  background: var(--color-tea);
  height: 1px;
}

.section-about .section-header.revealed .section-title::after {
  width: 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: center;
}

.about-text {
  position: relative;
  padding: 2rem 0;
}

.about-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 240, 0.9) 0%, transparent 70%);
  pointer-events: none;
}

.about-copy {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.about-bowl-accent {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  margin-top: 0.35rem;
  color: var(--color-tea);
  opacity: 0.85;
}

.about-paragraphs {
  flex: 1;
  min-width: 0;
}

.about-para {
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 1.35rem;
}

.about-para:last-child {
  margin-bottom: 0;
}

.about-para.reveal.revealed:nth-child(1) { transition-delay: 0s; }
.about-para.reveal.revealed:nth-child(2) { transition-delay: 0.07s; }
.about-para.reveal.revealed:nth-child(3) { transition-delay: 0.14s; }
.about-para.reveal.revealed:nth-child(4) { transition-delay: 0.21s; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}

.about-tag {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-accent-deep);
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(201, 181, 154, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.about-tag:hover {
  background: #fff;
  border-color: var(--color-warm);
  transform: translateY(-1px);
}

.about-slogan {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-accent-deep);
  margin: 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 181, 154, 0.4);
  line-height: 1.9;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 252, 248, 0.6);
  box-shadow: var(--shadow-warm);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(212, 196, 176, 0.25);
  pointer-events: none;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 1605;
  object-fit: contain;
  object-position: center;
}

/* ---------- 菜品卡片 ---------- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.dish-card {
  background: rgba(255, 252, 248, 0.98);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dish-card:hover {
  border-color: rgba(196, 168, 130, 0.45);
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}

.dish-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-cloud) 0%, var(--color-beige) 100%);
}

.dish-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.dish-card:hover .dish-card-img-wrap img {
  transform: scale(1.04);
  opacity: 1;
}

.dish-card-body { padding: 1.35rem 1.25rem 1.5rem; }

.dish-card-title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 400;
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
  color: var(--color-accent-deep);
}

.dish-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.8;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dish-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-warm);
  background: rgba(232, 217, 200, 0.35);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* ---------- 环境画廊 ---------- */
.gallery-wrapper { position: relative; }

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 1rem;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 min(88%, 420px);
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-slide:hover {
  border-color: rgba(196, 168, 130, 0.4);
  box-shadow: var(--shadow-warm);
  transform: translateY(-2px);
}

.gallery-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slide:hover img {
  transform: scale(1.03);
}

.gallery-slide figcaption {
  padding: 1rem 1.15rem 1.15rem;
  text-align: left;
  background: rgba(255, 252, 248, 0.95);
}

.gallery-caption-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-accent-deep);
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.gallery-caption-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.gallery-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.gallery-btn:hover {
  background: var(--color-accent-deep);
  color: #fff;
  border-color: var(--color-accent-deep);
}

/* ---------- 文旅指南 ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.guide-panel {
  background: rgba(255, 252, 248, 0.98);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.guide-panel:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-2px);
}

.guide-panel-header {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-accent-deep);
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.8) 0%, rgba(255, 252, 248, 0.4) 100%);
  border-bottom: 1px solid var(--color-border);
}

.guide-panel-body { padding: 1.25rem; }

.spot-list { list-style: none; margin: 0; padding: 0; }

.spot-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
}

.spot-item:last-child { border-bottom: none; }

.spot-item strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
  color: var(--color-accent-deep);
}

.spot-item span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.spot-item p {
  font-size: 0.78rem;
  font-weight: 300;
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.guide-tip-block { margin-bottom: 1.35rem; }
.guide-tip-block:last-child { margin-bottom: 0; }

.guide-tip-block h4 {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  color: var(--color-text);
}

.guide-tip-block p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.85;
}

.faq-list { display: flex; flex-direction: column; gap: 1.15rem; }

.faq-item { padding-left: 0; }

.faq-item dt {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
  color: var(--color-accent-deep);
}

.faq-item dd {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.85;
}

/* ---------- 门店信息 ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-card {
  background: rgba(255, 252, 248, 0.98);
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card:hover {
  border-color: rgba(196, 168, 130, 0.4);
  box-shadow: 0 6px 20px rgba(74, 69, 64, 0.05);
  transform: translateY(-1px);
}

.info-card-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.info-card-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.7;
}

.info-card-note {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-text-muted, #7a7d82);
  font-weight: 300;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.info-actions .btn { flex: 1; min-width: 120px; font-size: 0.8rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 400px;
  box-shadow: var(--shadow-soft);
}

#map-container { width: 100%; height: 100%; min-height: 400px; }

.store-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--color-beige);
  z-index: 0;
}

.store-map-marker span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-accent-deep);
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(107, 97, 86, 0.35);
  border: 3px solid #fff;
}

.store-map-marker span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #fff;
}

.map-popup-address {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(42, 37, 32, 0.12);
}

.leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.map-placeholder {
  width: 100%; height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-jiangnan);
  padding: 2rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.map-coords {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* ---------- 温馨寄语 ---------- */
.welcome-strip {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(247, 242, 235, 0.5) 0%, var(--color-beige) 100%);
  position: relative;
  overflow: hidden;
}

.welcome-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--color-warm-glow) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-strip-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.welcome-icon {
  width: 36px;
  height: auto;
  margin: 0 auto 1.25rem;
  color: var(--color-warm);
  opacity: 0.75;
}

.welcome-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-accent-deep);
  margin: 0;
  padding: 0;
  border: none;
}

.welcome-sign {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin: 1.5rem 0 0;
}

/* ---------- 页脚 ---------- */
.footer {
  background: linear-gradient(180deg, var(--color-beige) 0%, #f0e9df 100%);
  color: var(--color-text-muted);
  padding: 3.5rem 1.5rem 2.5rem;
}

.footer-divider {
  max-width: 1140px;
  margin: 0 auto 2.5rem;
  height: 1px;
  background: var(--color-border);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-accent-deep);
  margin-bottom: 0.35rem;
}

.footer-welcome {
  font-family: var(--font-serif);
  font-size: 0.88rem !important;
  letter-spacing: 0.1em;
  color: var(--color-warm) !important;
  margin: 0.5rem 0 0.75rem !important;
}

.footer-info p {
  font-size: 0.82rem;
  font-weight: 300;
  margin: 0.3rem 0;
  line-height: 1.75;
}

.footer-meta {
  text-align: right;
  font-size: 0.78rem;
  font-weight: 300;
}

.footer-icp-link {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-icp-link:hover {
  color: var(--color-accent-deep);
}

.back-top-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.5rem 1.15rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(8px);
}

.back-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top-btn:hover {
  background: #fff;
  color: var(--color-text);
}

/* ---------- 悬浮导航按钮 ---------- */
.float-nav-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 999;
  background: linear-gradient(145deg, #6b6156 0%, #564e45 100%);
  color: #faf8f5;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 32px rgba(86, 78, 69, 0.28);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.float-nav-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(86, 78, 69, 0.34);
}

.float-nav-btn svg {
  width: 16px; height: 16px;
  fill: currentColor;
  opacity: 0.85;
}

/* ---------- 地图选择 / 电话提示面板 ---------- */
body.action-sheet-open { overflow: hidden; }

.action-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.action-overlay[hidden] { display: none !important; }

.action-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 47, 50, 0.42);
  backdrop-filter: blur(2px);
}

.action-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--color-cloud);
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 0.75rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 40px rgba(74, 69, 64, 0.1);
  animation: action-sheet-up 0.32s ease;
}

@keyframes action-sheet-up {
  from { transform: translateY(100%); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

.action-sheet-handle {
  width: 36px;
  height: 4px;
  margin: 0.25rem auto 0.85rem;
  border-radius: 999px;
  background: rgba(61, 64, 68, 0.15);
}

.action-sheet-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.action-sheet-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  text-align: center;
  color: var(--color-text-muted, #7a7d82);
  margin-bottom: 1rem;
}

.action-sheet-body { margin-bottom: 0.75rem; }

.action-sheet-cancel {
  width: 100%;
  margin-top: 0.25rem;
}

.map-picker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.map-picker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(61, 64, 68, 0.08);
  color: var(--color-text);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-height: 52px;
}

.map-picker-item:hover {
  background: var(--color-sand, #f3efe8);
  border-color: rgba(61, 64, 68, 0.14);
  transform: translateY(-1px);
}

.map-picker-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--color-sand, #f3efe8);
}

.map-picker-icon--amap { background: linear-gradient(135deg, #2d6bff 0%, #1a4fd6 100%); }
.map-picker-icon--apple { background: linear-gradient(135deg, #34c759 0%, #248a3d 100%); }
.map-picker-icon--baidu { background: linear-gradient(135deg, #3385ff 0%, #2459b8 100%); }
.map-picker-icon--tencent { background: linear-gradient(135deg, #00b4ff 0%, #0088cc 100%); }
.map-picker-icon--google { background: linear-gradient(135deg, #ea4335 25%, #fbbc05 50%, #34a853 75%); }

.map-picker-label { flex: 1; }

.map-picker-arrow {
  width: 18px;
  height: 18px;
  opacity: 0.35;
  flex-shrink: 0;
}

.phone-hint-number {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  padding: 0.5rem 0 0.25rem;
  user-select: all;
}

.email-hint-address {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.email-hint-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.email-hint-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.email-open-btn { display: flex; align-items: center; justify-content: center; }

@media (min-width: 769px) {
  .action-overlay {
    align-items: center;
    padding: 1.5rem;
  }

  .action-sheet {
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem 1.5rem;
    max-width: 400px;
    animation: action-sheet-fade 0.28s ease;
  }

  @keyframes action-sheet-fade {
    from { transform: translateY(12px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }

  .action-sheet-handle { display: none; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .guide-grid { grid-template-columns: 1fr; }

  .guide-panel-header {
    cursor: pointer;
    position: relative;
    padding-right: 2.5rem;
  }

  .guide-panel-header::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.4;
  }

  .guide-panel.open .guide-panel-header::after { content: '−'; }
  .guide-panel-body { display: none; }
  .guide-panel.open .guide-panel-body { display: block; }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; --nav-height: 60px; }

  .hero-bg { background-position: center 45%; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 0.75rem;
    color: var(--color-text) !important;
    opacity: 1 !important;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .nav-menu a::before {
    display: none;
  }

  .nav-menu a.is-active {
    border-left: 2px solid var(--color-tea);
    padding-left: calc(0.75rem - 2px);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-brand-name { font-size: 0.72rem; max-width: 120px; white-space: normal; line-height: 1.35; }
  .nav-brand img { height: 30px; max-width: 100px; }

  .about-grid, .info-grid, .footer-inner { grid-template-columns: 1fr; }
  .about-grid { gap: 2.5rem; }
  .about-copy { gap: 1rem; }
  .about-bowl-accent { width: 28px; }
  .about-image img { width: 100%; height: auto; }
  .about-decor--tl { width: 52px; top: 4%; left: 2%; }
  .about-decor--tr { width: 40px; right: 3%; }
  .about-decor--bl, .about-decor--br { display: none; }
  .footer-meta { text-align: left; }

  .float-nav-btn {
    bottom: 1rem; right: 1rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.72rem;
  }
}

@media (min-width: 769px) {
  .guide-panel-body { display: block !important; }
}

@media (min-width: 1025px) {
  .guide-panel-header::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none !important; transform: none !important; filter: saturate(1.1) contrast(1.03) brightness(0.9) !important; }
  .hero-overlay::after { animation: none !important; opacity: 0.6 !important; transform: none !important; }
  .hero-fade { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .float-nav-btn { opacity: 1; transform: none; pointer-events: auto; }
}

@media (min-width: 900px) {
  .nav-menu { display: flex; }
}

@media (max-width: 899px) {
  .nav-menu a { font-size: 0.82rem; }
}
