:root{--c-primary:#c8843c;}
/* =========================================================
   麦颂 MAISON BLÉ · 手工烘焙坊
   视觉：温暖乡村手作风 —— 焦糖 / 奶油底 / 墨绿 / 暖橘点缀
   字体：标题 Fraunces + Noto Serif SC；正文 Noto Sans SC
   ========================================================= */

:root {
  /* 品牌配色 */
  --caramel: #B5793B;        /* 焦糖（主色） */
  --caramel-dark: #975E28;   /* 焦糖深（hover） */
  --cream: #F3E9D8;          /* 奶油底 */
  --cream-soft: #EFE3CE;     /* 奶油稍深（色块） */
  --cream-card: #FBF4E8;     /* 卡片奶白 */
  --forest: #3E4A3C;         /* 墨绿（深色文字/面板） */
  --forest-dark: #2C3529;    /* 墨绿更深（footer） */
  --orange: #E08A3C;         /* 暖橘点缀（克制 10%） */

  /* 文本 */
  --ink: #2E2922;            /* 暖棕近黑（正文） */
  --muted: #6F655A;          /* 次要文字 */
  --on-dark: #F6EEDF;        /* 深底上的文字 */

  /* 线 / 阴影 / 圆角 */
  --line: rgba(62, 74, 60, 0.16);
  --line-soft: rgba(62, 74, 60, 0.09);
  --stitch: rgba(181, 121, 59, 0.55);
  --shadow: 0 16px 38px rgba(62, 74, 60, 0.12);
  --shadow-sm: 0 8px 20px rgba(62, 74, 60, 0.10);
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* 布局 */
  --header-height: 72px;
  --topbar-height: 44px;
  --max-width: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Noto Serif SC', 'Songti SC', serif;
  font-weight: 500;
  line-height: 1.28;
  margin: 0 0 0.6em;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.15em; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

a:hover { color: var(--caramel); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* 跳转链接（无障碍） */
.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 2000;
  background: var(--forest);
  color: var(--on-dark);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 12px; }

/* 通用区块 */
.section { padding: 110px 0; }
.section-compact { padding: 80px 0; }

.section-header { text-align: center; max-width: 740px; margin: 0 auto 60px; }

/* 手作标签（pill 小条） */
.tag {
  display: inline-block;
  font-family: 'Fraunces', 'Noto Serif SC', serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--caramel-dark);
  background: var(--cream-soft);
  border: 1.5px solid var(--stitch);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* 装饰：麦穗分隔小标 */
.wheat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--caramel);
  margin-bottom: 16px;
}
.wheat::before, .wheat::after {
  content: '';
  width: 34px;
  height: 1.5px;
  background: var(--caramel);
  opacity: 0.6;
}

/* 按钮：圆角药丸，温暖友好 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 34px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-primary {
  background-color: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}
.btn-primary:hover {
  background-color: var(--forest);
  border-color: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: var(--forest);
  border-color: var(--caramel);
}
.btn-outline:hover {
  background-color: var(--caramel);
  color: #fff;
}
.btn-ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(246, 238, 223, 0.55);
}
.btn-ghost:hover {
  background-color: #fff;
  color: var(--forest);
  border-color: #fff;
}

/* ============================ 顶部信息条 ============================ */
.topbar {
  background: var(--forest);
  color: var(--on-dark);
  font-size: 0.85rem;
  position: relative;
  z-index: 1100;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--topbar-height);
  flex-wrap: wrap;
}
.topbar .tb-slogan {
  font-family: 'Fraunces', 'Noto Serif SC', serif;
  letter-spacing: 0.04em;
  opacity: 0.92;
}
.topbar .tb-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  opacity: 0.85;
}
.topbar .tb-meta span { display: inline-flex; align-items: center; gap: 7px; }

/* ============================ 页头导航 ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: rgba(243, 233, 216, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: none;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
  background-color: rgba(243, 233, 216, 0.98);
  box-shadow: 0 6px 18px rgba(62, 74, 60, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Fraunces', 'Noto Serif SC', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
}
.brand-en {
  font-family: 'Fraunces', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--caramel);
}

.nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 8px 2px;
  color: var(--ink);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--caramel);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--caramel-dark); }

.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  padding: 0;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background-color: var(--forest);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9.5px; }
.menu-toggle span:nth-child(3) { top: 19px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ============================ 首页 Hero ============================ */
.hero-home {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 138, 60, 0.10), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(181, 121, 59, 0.12), transparent 40%),
    var(--cream);
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .tag { margin-bottom: 22px; }
.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.12;
  color: var(--forest);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--caramel);
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--cream-card);
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: var(--caramel);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  max-width: 200px;
}
.hero-badge .hb-num {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  line-height: 1;
  display: block;
}
.hero-badge .hb-text { font-size: 0.85rem; opacity: 0.92; }

/* ============================ 招牌手作 大圆角网格 ============================ */
.signature { background: var(--cream-card); }
.sign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sign-card {
  background: var(--cream);
  border: 2px dashed var(--stitch);
  border-radius: var(--radius-lg);
  padding: 16px 16px 26px;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.sign-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sign-card .sign-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.sign-card h3 { margin-bottom: 6px; }
.sign-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.sign-card .sign-sub {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--caramel);
  margin-top: 12px;
}

/* ============================ 暖色块面板（焦糖 / 墨绿） ============================ */
.panel { border-radius: var(--radius-lg); overflow: hidden; }
.panel-caramel {
  background: var(--caramel);
  color: #fff;
  padding: 76px clamp(28px, 5vw, 80px);
}
.panel-caramel h2, .panel-caramel h3 { color: #fff; }
.panel-caramel p { color: rgba(255, 255, 255, 0.9); }
.panel-forest {
  background: var(--forest);
  color: var(--on-dark);
  padding: 76px clamp(28px, 5vw, 80px);
}
.panel-forest h2, .panel-forest h3 { color: var(--on-dark); }
.panel-forest p { color: rgba(246, 238, 223, 0.85); }

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.panel-grid.reverse .panel-media { order: -1; }
.panel-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.panel-caramel .tag {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.panel-forest .tag {
  background: rgba(246, 238, 223, 0.12);
  border-color: rgba(246, 238, 223, 0.5);
  color: var(--on-dark);
}
.panel-list { margin-top: 22px; display: grid; gap: 14px; }
.panel-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
}
.panel-list li::before {
  content: '✦';
  color: var(--orange);
  flex-shrink: 0;
}

/* ============================ 服务总览 ============================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .sc-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-card .sc-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.service-card .sc-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--caramel);
  margin-bottom: 10px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 20px; flex: 1; }
.card-link {
  align-self: flex-start;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--caramel-dark);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.4s var(--ease);
}
.card-link:hover { border-bottom-color: var(--caramel); }

/* ============================ 数字统计 ============================ */
.stats { background: var(--forest); color: var(--on-dark); }
.stats .section-header .section-title,
.stats .section-header .wheat { color: var(--on-dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .stat-label { font-size: 0.95rem; color: rgba(246, 238, 223, 0.82); }

/* ============================ 评价 ============================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--caramel);
  opacity: 0.5;
}
.testimonial-card p { font-size: 0.98rem; color: var(--muted); line-height: 1.9; margin: 14px 0 18px; }
.testimonial-author { font-family: 'Noto Serif SC', serif; font-size: 0.95rem; color: var(--forest); }

/* ============================ 内页页头 ============================ */
.page-header {
  position: relative;
  background: var(--forest);
  color: var(--on-dark);
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 72px;
  text-align: center;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(224, 138, 60, 0.22), transparent 45%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--on-dark); margin-bottom: 12px; }
.page-header p { color: rgba(246, 238, 223, 0.82); max-width: 560px; margin: 0 auto; font-size: 1.02rem; }
.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(246, 238, 223, 0.7);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--orange); }

/* 通用两栏 */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--muted); margin-bottom: 18px; }
.split-content .tag { margin-bottom: 16px; }

/* ============================ 案例网格 ============================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.case-card .cc-photo { width: 100%; height: 230px; object-fit: cover; }
.case-card .cc-body { padding: 24px 26px 28px; }
.case-card .cc-tag {
  font-family: 'Fraunces', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--caramel);
  display: block;
  margin-bottom: 8px;
}
.case-card h3 { margin-bottom: 8px; }
.case-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ============================ 文章 / 资讯 ============================ */
.news-list { max-width: 880px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--ease);
}
.news-item:hover { border-bottom-color: var(--caramel); }
.news-date { font-family: 'Fraunces', serif; color: var(--caramel); text-align: center; }
.news-date .day { font-size: 2.4rem; line-height: 1; display: block; }
.news-date .month { font-size: 0.85rem; letter-spacing: 0.1em; color: var(--muted); }
.news-title { font-size: 1.25rem; margin-bottom: 8px; transition: color 0.35s var(--ease); }
.news-item:hover .news-title { color: var(--caramel-dark); }
.news-excerpt { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 0; }
.news-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--caramel-dark);
  background: var(--cream-soft);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  margin-bottom: 12px;
}

.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { margin-bottom: 1.7em; color: var(--ink); }
.article-body h2, .article-body h3 { margin-top: 1.6em; margin-bottom: 0.7em; }
.article-body img { width: 100%; border-radius: var(--radius); margin: 36px 0; }
.article-meta { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 44px; }
.article-body blockquote {
  border-left: 4px solid var(--caramel);
  padding-left: 24px;
  margin: 36px 0;
  color: var(--muted);
  font-style: italic;
}
.article-body ul { margin-bottom: 1.7em; padding-left: 1.4em; list-style: disc; color: var(--muted); }

/* ============================ 流程 / 时间线 ============================ */
.process-list { display: grid; gap: 28px; max-width: 820px; margin: 0 auto; }
.process-item { display: grid; grid-template-columns: 70px 1fr; gap: 28px; align-items: start; }
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--caramel);
  line-height: 1;
}
.process-content h4 { margin-bottom: 6px; }
.process-content p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ============================ 资质 / 团队 ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--line-soft);
}
.team-card .tc-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--cream-soft);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .tc-role { font-size: 0.85rem; color: var(--caramel); letter-spacing: 0.08em; margin-bottom: 12px; }
.team-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.qual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.qual-item {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid var(--line-soft);
}
.qual-item h4 { font-size: 1rem; margin-bottom: 6px; }
.qual-item p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ============================ FAQ ============================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.05rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--forest);
  transition: color 0.35s var(--ease);
}
.faq-question:hover { color: var(--caramel-dark); }
.faq-question .icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; margin-left: 20px; }
.faq-question .icon::before, .faq-question .icon::after {
  content: ''; position: absolute; background-color: currentColor; transition: transform 0.4s var(--ease);
}
.faq-question .icon::before { top: 8px; left: 0; width: 100%; height: 2px; }
.faq-question .icon::after { top: 0; left: 8px; width: 2px; height: 100%; }
.faq-item.open .faq-question .icon::after { transform: scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.4s var(--ease); }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { color: var(--muted); font-size: 0.96rem; line-height: 1.85; margin: 0; }

/* ============================ 联系 / 表单 ============================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info h3 { margin-bottom: 18px; }
.contact-info .intro { color: var(--muted); margin-bottom: 28px; }
.contact-info .btn { margin-top: 16px; }
.contact-info-item { margin-bottom: 20px; }
.contact-info-item .label { font-size: 0.82rem; letter-spacing: 0.1em; color: var(--caramel); margin-bottom: 4px; }
.contact-info-item .value { font-size: 1.05rem; color: var(--ink); }

.store-list { display: grid; gap: 18px; margin-top: 28px; }
.store-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.store-card h4 { margin-bottom: 4px; }
.store-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.store-card .store-hours { font-size: 0.85rem; color: var(--caramel); white-space: nowrap; }

.booking-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.35s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--caramel); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--caramel-dark); margin-top: 14px; }

/* ============================ 页脚 ============================ */
.footer { background: var(--forest-dark); color: rgba(246, 238, 223, 0.72); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 54px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(246, 238, 223, 0.12);
}
.footer-brand .brand-name { color: var(--on-dark); margin-bottom: 6px; }
.footer-brand .brand-en { color: var(--orange); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.85; max-width: 320px; }
.footer-col h4 { font-size: 0.9rem; letter-spacing: 0.1em; color: var(--on-dark); margin-bottom: 20px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.9rem; color: rgba(246, 238, 223, 0.72); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(246, 238, 223, 0.5);
}

/* ============================ Reveal 动效 ============================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  a, button, .btn, .sign-card, .service-card, .case-card, .news-item { transition: none; }
}

/* ============================ 响应式 1280px ============================ */
@media (max-width: 1280px) {
  .section { padding: 92px 0; }
  .hero-grid, .split-section, .panel-grid, .contact-grid { gap: 44px; }
  .nav-links { gap: 22px; }
}

/* ============================ 响应式 768px ============================ */
@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .topbar { display: none; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 42px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 36px;
    background-color: rgba(243, 233, 216, 0.98);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 999;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .hero-grid, .split-section, .panel-grid, .contact-grid { grid-template-columns: 1fr; }
  .panel-grid.reverse .panel-media { order: 0; }
  .sign-grid, .service-grid, .case-grid, .testimonial-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-grid, .qual-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .hero-badge { left: 12px; bottom: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================ 响应式 375px ============================ */
@media (max-width: 375px) {
  html { font-size: 15px; }
  .section { padding: 60px 0; }
  .sign-card, .service-card .sc-body, .case-card .cc-body, .testimonial-card, .booking-card { padding-left: 20px; padding-right: 20px; }
  .stats-grid, .qual-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .store-card { flex-direction: column; align-items: flex-start; }
  .store-card .store-hours { white-space: normal; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}


/* ===== CMS helpers ===== */
.form-alert{padding:12px 16px;border-radius:8px;margin:0 0 16px;font-size:.92rem;line-height:1.6}
.form-alert-ok{background:rgba(46,160,67,.08);border:1px solid rgba(46,160,67,.35);color:#2ea043}
.form-alert-err{background:rgba(220,53,69,.08);border:1px solid rgba(220,53,69,.35);color:#dc3545}
.form-alert ul{margin:0;padding-left:18px}
.cms-pager{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:44px 0 0}
.cms-pager a,.cms-pager span{min-width:38px;padding:8px 13px;border:1px solid rgba(128,128,128,.35);border-radius:6px;text-align:center;text-decoration:none;color:inherit}
.cms-pager .active{background:var(--c-primary);border-color:var(--c-primary);color:#fff}
.detail-page{max-width:1100px;margin:0 auto;padding:72px 24px}
.detail-media{width:100%;max-height:520px;object-fit:cover;border-radius:14px;margin-bottom:26px;display:block}
.detail-title{font-size:clamp(26px,3vw,38px);line-height:1.3;margin-bottom:12px}
.detail-meta{color:#777;font-size:.95rem;margin-bottom:20px}
.detail-body{line-height:1.9;color:#444}
.detail-body p{margin-bottom:1em}
.detail-body img{max-width:100%;height:auto;border-radius:10px}
.detail-back{display:inline-block;margin-top:28px;padding:11px 26px;border:1px solid rgba(128,128,128,.4);border-radius:999px;text-decoration:none;color:inherit}
/* ===== 深色 banner 标题白字（避免 h1 与背景同色不可读） ===== */
.banner--ink h1,.banner--purple h1,.banner--coral h1{color:#fff}
/* ===== 阅读全文按钮（硬边 neo-brutalist 风格） ===== */
.news-item .more{display:inline-block;margin-top:14px;padding:10px 20px;background:var(--c-ink);color:#fff;border:var(--border-2);box-shadow:var(--shadow-sm);font-family:var(--font-en);font-weight:800;font-size:.85rem;letter-spacing:.02em;text-decoration:none;transition:transform .12s ease,box-shadow .12s ease,background .12s ease}
.news-item .more:hover{background:var(--c-coral);transform:translate(-2px,-2px);box-shadow:var(--shadow)}
/* ===== 留言板一行一个 input（01 翰墨轩） ===== */
.form-grid{grid-template-columns:1fr}
