:root{--c-primary:#8a5a2b;}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'ZCOOL XiaoWei', serif;
  background: #f4f1e8;
  color: #2b2b2b;
  line-height: 2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 230px;
  background: #3d4a38;
  color: #e8e2d4;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
}

.sidebar .tea-mark {
  position: absolute;
  top: 0;
  right: 10px;
  writing-mode: vertical-rl;
  font-size: 54px;
  color: rgba(232,226,212,0.14);
  letter-spacing: 10px;
  user-select: none;
}

.sidebar-brand {
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.sidebar-brand .logo-cn {
  font-size: 28px;
  letter-spacing: 10px;
  color: #f4f1e8;
  margin-bottom: 8px;
}

.sidebar-brand .logo-en {
  font-size: 11px;
  letter-spacing: 5px;
  color: #7a9b76;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-menu a {
  position: relative;
  padding: 14px 6px 14px 26px;
  font-size: 17px;
  letter-spacing: 6px;
  color: #c9c4b4;
  border-left: 1px solid transparent;
  transition: all 0.3s;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #7a9b76;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f4f1e8;
  border-left: 1px solid #7a9b76;
}

.nav-menu a.active::before {
  background: #7a9b76;
}

.sidebar-foot {
  margin-top: auto;
  font-size: 12px;
  color: #7a9b76;
  letter-spacing: 3px;
  text-align: center;
  line-height: 2;
}

.nav-toggle {
  display: none;
  background: #3d4a38;
  color: #f4f1e8;
  border: 1px solid #7a9b76;
  padding: 8px 22px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'ZCOOL XiaoWei', serif;
}

.main {
  margin-left: 230px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 30px;
}

.hero-script {
  writing-mode: vertical-rl;
  position: absolute;
  right: -40px;
  top: 20px;
  font-size: 120px;
  color: rgba(122,155,118,0.25);
  letter-spacing: 20px;
}

.hero-eyebrow {
  color: #7a9b76;
  letter-spacing: 8px;
  font-size: 14px;
  margin-bottom: 26px;
}

.hero h1 {
  font-weight: 400;
  font-size: 52px;
  letter-spacing: 12px;
  color: #2b2b2b;
}

.hero h1 em {
  font-style: normal;
  color: #7a9b76;
}

.hero-slogan {
  margin-top: 28px;
  color: #6b6558;
  font-size: 16px;
  letter-spacing: 4px;
}

.btn {
  display: inline-block;
  margin-top: 40px;
  border: 1px solid #7a9b76;
  color: #3d4a38;
  padding: 12px 44px;
  letter-spacing: 6px;
  font-size: 15px;
  transition: all 0.3s;
}

.btn:hover {
  background: #7a9b76;
  color: #f4f1e8;
}

.section { padding: 90px 0; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.circle-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.circle-motif i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7a9b76;
}

.circle-motif::before,
.circle-motif::after {
  content: "";
  width: 50px;
  border-top: 1px solid #b8b2a2;
}

.section-title {
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 10px;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.section-sub {
  color: #8a8474;
  letter-spacing: 3px;
  font-size: 14px;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid #c9c4b4;
  padding: 8px;
}

.about-preview .text h2 {
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 8px;
  margin-bottom: 22px;
}

.about-preview .text p {
  color: #6b6558;
  margin-bottom: 18px;
  font-size: 15px;
}

.tea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.tea-card {
  background: #efece0;
  border: 1px solid #d6d2c2;
  padding: 20px;
}

.tea-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid #d6d2c2;
}

.tea-card h3 {
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 6px;
}

.tea-card .price {
  text-align: center;
  color: #7a9b76;
  font-size: 15px;
  letter-spacing: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.team-card {
  text-align: center;
  background: #efece0;
  border: 1px solid #d6d2c2;
  padding: 20px;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #d6d2c2;
  margin-bottom: 18px;
}

.team-card h3 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 5px;
}

.team-card p {
  color: #7a9b76;
  font-size: 14px;
  letter-spacing: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.blog-card {
  border: 1px solid #d6d2c2;
  background: #efece0;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-body { padding: 24px 26px 30px; }

.blog-date {
  color: #7a9b76;
  font-size: 13px;
  letter-spacing: 2px;
}

.blog-card h3 {
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 3px;
  margin: 8px 0 10px;
}

.blog-card p {
  color: #6b6558;
  font-size: 14px;
  margin-bottom: 14px;
}

.read-more {
  color: #3d4a38;
  border-bottom: 1px solid #7a9b76;
  padding-bottom: 3px;
  font-size: 14px;
  letter-spacing: 2px;
}

.cta-band {
  background: #3d4a38;
  color: #f4f1e8;
  text-align: center;
  padding: 90px 0;
}

.cta-band h2 {
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 10px;
  margin-bottom: 16px;
}

.cta-band p {
  color: #b8b2a2;
  letter-spacing: 3px;
  margin-bottom: 36px;
  font-size: 14px;
}

.cta-band .btn {
  border-color: #f4f1e8;
  color: #f4f1e8;
}

.cta-band .btn:hover {
  background: #f4f1e8;
  color: #3d4a38;
}

.page-banner {
  text-align: center;
  padding: 80px 0 30px;
}

.page-banner h1 {
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 12px;
}

.page-banner .sub {
  color: #7a9b76;
  letter-spacing: 8px;
  font-size: 13px;
  margin-top: 12px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 1px solid #c9c4b4;
  padding: 8px;
}

.about-intro h2 {
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.about-intro p {
  color: #6b6558;
  margin-bottom: 16px;
}

.values-list {
  max-width: 760px;
  margin: 0 auto;
}

.value-row {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #d6d2c2;
}

.value-row:first-child { border-top: 1px solid #d6d2c2; }

.value-num {
  color: #7a9b76;
  font-size: 18px;
  letter-spacing: 3px;
  white-space: nowrap;
}

.value-row h3 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.value-row p { color: #6b6558; font-size: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-fig img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid #c9c4b4;
  padding: 8px;
}

.gallery-fig figcaption {
  text-align: center;
  margin-top: 12px;
  letter-spacing: 3px;
  color: #6b6558;
  font-size: 14px;
}

.article-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #d6d2c2;
}

.article-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid #c9c4b4;
  padding: 6px;
}

.article-row h2 {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 4px;
  margin: 10px 0 12px;
}

.article-row p {
  color: #6b6558;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-item {
  border-bottom: 1px solid #d6d2c2;
  padding: 24px 0;
}

.contact-item h3 {
  font-weight: 400;
  color: #7a9b76;
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.contact-item p { color: #4a453a; }

.form-group { margin-bottom: 24px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #b8b2a2;
  padding: 12px 4px;
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 16px;
  color: #2b2b2b;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #7a9b76; }

.form-group textarea { height: 140px; resize: vertical; }

.map-place {
  margin-top: 60px;
  height: 300px;
  background: #efece0;
  border: 1px solid #d6d2c2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6558;
  letter-spacing: 6px;
}

.footer {
  margin-left: 230px;
  background: #efece0;
  border-top: 1px solid #d6d2c2;
  padding: 60px 0 28px;
  text-align: center;
  color: #6b6558;
}

.footer-brand {
  font-size: 22px;
  letter-spacing: 10px;
  color: #3d4a38;
  margin-bottom: 8px;
}

.footer-info { font-size: 13px; margin-bottom: 20px; }

.footer-copy {
  font-size: 12px;
  color: #a09a8a;
  border-top: 1px solid #d6d2c2;
  padding-top: 18px;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: sticky;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }
  .sidebar .tea-mark { display: none; }
  .sidebar-brand { margin-bottom: 0; }
  .sidebar-brand .logo-cn { font-size: 22px; letter-spacing: 6px; }
  .sidebar-brand .logo-en { display: none; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #3d4a38;
    flex-direction: column;
    display: none;
    padding: 10px 20px;
  }
  .nav-open .nav-menu { display: flex; }
  .nav-menu a { border-left: none; padding: 12px 6px; border-bottom: 1px solid rgba(244,241,232,0.1); }
  .nav-menu a::before { display: none; }
  .nav-toggle { display: block; }
  .sidebar-foot { display: none; }
  .main, .footer { margin-left: 0; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 36px; letter-spacing: 6px; }
  .hero-script { display: none; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; letter-spacing: 6px; }
  .about-preview, .about-intro, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-preview img, .about-intro img { height: 300px; }
  .tea-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-fig img { height: 300px; }
  .article-row { grid-template-columns: 1fr; gap: 20px; }
  .article-row img { height: 220px; }
  .value-row { flex-direction: column; gap: 8px; }
  .cta-band { padding: 60px 0; }
}


/* ===== 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}
