:root{--c-primary:#d62828;}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans SC', 'ZCOOL KuaiLe', sans-serif;
  background: #f6f2ec;
  color: #1d1d1d;
  line-height: 1.85;
  font-weight: 500;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #1d1d1d;
  border-bottom: 5px solid #fcbf49;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 30px;
  color: #fff;
  padding: 16px 0;
  letter-spacing: 2px;
}

.brand i {
  font-style: normal;
  color: #fcbf49;
  margin-right: 6px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  display: block;
  padding: 20px 22px;
  font-weight: 900;
  font-size: 16px;
  color: #d9d9d9;
  transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1d1d1d;
  background: #fcbf49;
}

.nav-toggle {
  display: none;
  background: #fcbf49;
  color: #1d1d1d;
  border: none;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1d1d1d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 30px 60px;
}

.hero-text .en {
  font-size: 15px;
  letter-spacing: 10px;
  color: #fcbf49;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 130px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 10px;
}

.hero-text h1 span {
  color: #d62828;
}

.hero-text p {
  margin-top: 24px;
  color: #e8e8e8;
  font-size: 19px;
  letter-spacing: 3px;
}

.btn {
  display: inline-block;
  background: #d62828;
  color: #fff;
  padding: 16px 50px;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 34px;
  box-shadow: 0 6px 0 #8f1717;
  transition: all 0.15s;
}

.btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #8f1717; }

.btn-yellow {
  background: #fcbf49;
  color: #1d1d1d;
  box-shadow: 0 6px 0 #b8862a;
}

.btn-yellow:active { box-shadow: 0 2px 0 #b8862a; }

.wave-divider {
  height: 40px;
  background: radial-gradient(circle at 14px 6px, #f6f2ec 14px, transparent 15px);
  background-size: 56px 40px;
  background-repeat: repeat-x;
  position: relative;
  z-index: 3;
  margin-top: -2px;
}

.wave-divider.dark {
  background: radial-gradient(circle at 14px 6px, #1d1d1d 14px, transparent 15px);
  background-size: 56px 40px;
  background-repeat: repeat-x;
}

.section { padding: 70px 0; }

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.kicker {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #d62828;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 44px;
  color: #1d1d1d;
  letter-spacing: 4px;
}

.section-sub {
  color: #8a8a8a;
  margin-top: 10px;
  font-size: 15px;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.about-preview h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-preview p {
  color: #666;
  margin-bottom: 16px;
}

.noodle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}

.noodle-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  position: relative;
}

.noodle-card.offset-1 { margin-top: 40px; }
.noodle-card.offset-2 { margin-top: 80px; }

.noodle-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.noodle-body { padding: 24px 26px 30px; }

.noodle-body h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.noodle-body .meta {
  color: #d62828;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.noodle-body p {
  color: #777;
  font-size: 14px;
  margin-bottom: 14px;
}

.noodle-price {
  display: inline-block;
  background: #1d1d1d;
  color: #fcbf49;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 15px;
}

.black-band {
  background: #1d1d1d;
  color: #fff;
}

.black-band .section-title { color: #fff; }
.black-band .section-sub { color: #9a9a9a; }
.black-band .kicker { color: #fcbf49; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 22px;
  margin-top: 16px;
}

.team-card p {
  color: #d62828;
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-body { padding: 24px 26px 28px; }

.blog-date {
  color: #fcbf49;
  font-weight: 700;
  font-size: 13px;
  background: #1d1d1d;
  display: inline-block;
  padding: 2px 14px;
  border-radius: 999px;
}

.blog-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 22px;
  margin: 12px 0 10px;
}

.blog-card p {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}

.read-more {
  color: #d62828;
  font-weight: 900;
  border-bottom: 3px solid #d62828;
  padding-bottom: 2px;
}

.cta-band {
  background: #fcbf49;
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 44px;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.cta-band p {
  color: #5a4a20;
  font-weight: 700;
  margin-bottom: 26px;
}

.page-banner {
  margin-top: 70px;
  background: #1d1d1d;
  text-align: center;
  padding: 70px 0 80px;
}

.page-banner h1 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 52px;
  color: #fff;
  letter-spacing: 4px;
}

.page-banner p {
  color: #fcbf49;
  letter-spacing: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.about-intro h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-intro p {
  color: #666;
  margin-bottom: 16px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.step-card .num {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 56px;
  color: #fcbf49;
  line-height: 1;
  text-shadow: 0 3px 0 #1d1d1d;
}

.step-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 24px;
  margin: 12px 0 8px;
}

.step-card p { color: #777; font-size: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.gallery-fig img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.gallery-fig figcaption {
  text-align: center;
  margin-top: 14px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
}

.article-row {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.article-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body { padding: 32px 36px; }

.article-body h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 28px;
  margin: 12px 0;
}

.article-body p {
  color: #666;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border-left: 8px solid #d62828;
}

.contact-item h3 {
  color: #d62828;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.contact-item p { color: #444; font-weight: 500; }

.form-group { margin-bottom: 20px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 3px solid #e5ded5;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: #1d1d1d;
  outline: none;
  font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #fcbf49; }

.form-group textarea { height: 140px; resize: vertical; }

.map-place {
  margin-top: 50px;
  height: 300px;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #e5ded5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d62828;
  letter-spacing: 4px;
  font-weight: 700;
}

.footer {
  background: #1d1d1d;
  text-align: center;
  padding: 60px 0 28px;
}

.footer-brand {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 30px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand span { color: #fcbf49; }

.footer-info { color: #9a9a9a; font-size: 13px; margin-bottom: 20px; }

.footer-copy {
  color: #5a5a5a;
  font-size: 12px;
  border-top: 1px solid #333;
  padding-top: 18px;
}

@media (max-width: 768px) {
  .nav-inner { flex-wrap: wrap; padding: 10px 20px; }
  .brand { font-size: 24px; padding: 12px 0; }
  .nav-toggle { display: block; }
  .nav-menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    display: none;
  }
  .nav-open .nav-menu { display: flex; }
  .nav-menu a { border-top: 1px solid #333; padding: 13px 22px; }
  .hero { min-height: 70vh; }
  .hero-text { padding: 100px 20px 50px; }
  .hero-text h1 { font-size: 72px; letter-spacing: 4px; }
  .hero-text p { font-size: 15px; letter-spacing: 1px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 32px; }
  .about-preview, .about-intro, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-preview img, .about-intro img { height: 300px; }
  .noodle-cards { grid-template-columns: 1fr; }
  .noodle-card.offset-1, .noodle-card.offset-2 { margin-top: 0; }
  .team-grid, .blog-grid, .step-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-fig img { height: 300px; }
  .article-row { grid-template-columns: 1fr; }
  .article-row img { height: 220px; }
  .page-banner { margin-top: 62px; padding: 50px 0 60px; }
  .page-banner h1 { font-size: 38px; }
  .cta-band { padding: 60px 0; }
  .cta-band h2 { font-size: 34px; }
}


/* ===== 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}

/* navbar fixed 导航避让首屏 */
main>section:first-of-type,.page-banner{margin-top:130px}
