:root{--c-primary:#00b4d8;}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans SC', 'Baloo 2', 'ZCOOL KuaiLe', sans-serif;
  background: #fff9ef;
  color: #2b2b2b;
  line-height: 1.8;
}

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;
}

.polka-bg {
  background-image: radial-gradient(rgba(0,180,216,0.14) 3px, transparent 3px), radial-gradient(rgba(255,109,0,0.12) 3px, transparent 3px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(255,249,239,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffd60a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 26px;
  color: #2b2b2b;
  border: 3px dashed #ff6d00;
}

.brand .name {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 26px;
  color: #2b2b2b;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-menu a {
  display: block;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  color: #2b2b2b;
  background: #fff;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
  transition: all 0.2s;
}

.nav-menu a:nth-child(1) { background: #ffd60a; }
.nav-menu a:nth-child(2) { background: #ff6d00; color: #fff; }
.nav-menu a:nth-child(3) { background: #00b4d8; color: #fff; }
.nav-menu a:nth-child(4) { background: #ff5d8f; color: #fff; }
.nav-menu a:nth-child(5) { background: #9d4edd; color: #fff; }

.nav-menu a:hover,
.nav-menu a.active {
  transform: translateY(-3px);
  box-shadow: 0 7px 0 rgba(0,0,0,0.2);
}

.nav-toggle {
  display: none;
  background: #ffd60a;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
  font-family: 'Noto Sans SC', sans-serif;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #ffd60a 0%, #ff6d00 40%, #ff5d8f 75%, #00b4d8 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 30px 90px;
  text-align: center;
}

.hero h1 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 72px;
  color: #fff;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.22);
  letter-spacing: 4px;
}

.hero p {
  margin-top: 18px;
  color: rgba(255,255,255,0.95);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
}

.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  padding: 12px 24px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.18);
  z-index: 3;
}

.sticker-1 {
  top: 22%;
  left: 12%;
  background: #fff;
  color: #ff6d00;
  transform: rotate(-12deg);
  font-size: 18px;
}

.sticker-2 {
  top: 30%;
  right: 12%;
  background: #00b4d8;
  color: #fff;
  transform: rotate(10deg);
  font-size: 18px;
}

.sticker-3 {
  bottom: 18%;
  left: 18%;
  background: #ff5d8f;
  color: #fff;
  transform: rotate(-6deg);
  font-size: 17px;
}

.sticker-4 {
  bottom: 26%;
  right: 16%;
  background: #9d4edd;
  color: #fff;
  transform: rotate(14deg);
  font-size: 17px;
}

.btn {
  display: inline-block;
  margin-top: 36px;
  background: #2b2b2b;
  color: #ffd60a;
  padding: 15px 46px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.4);
  transition: all 0.15s;
}

.btn:active { transform: translateY(4px); box-shadow: 0 2px 0 rgba(0,0,0,0.4); }

.btn-white {
  background: #fff;
  color: #ff6d00;
  box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}

.btn-white:active { box-shadow: 0 2px 0 rgba(0,0,0,0.25); }

.section { padding: 80px 0; }

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 42px;
  letter-spacing: 2px;
  color: #2b2b2b;
}

.section-title span { color: #ff6d00; }

.section-sub {
  color: #8a8a8a;
  margin-top: 8px;
  font-weight: 600;
  font-size: 15px;
}

.dashed-title {
  display: inline-block;
  border: 4px dashed #00b4d8;
  border-radius: 20px;
  padding: 10px 34px;
  background: #fff;
  transform: rotate(-1.5deg);
}

.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: 40px 40px 40px 8px;
  border: 6px solid #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  transform: rotate(-1deg);
}

.about-preview h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 34px;
  margin-bottom: 16px;
}

.about-preview p {
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.chip-card {
  text-align: center;
}

.chip-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 6px dashed #ffd60a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  transition: transform 0.3s;
}

.chip-card:nth-child(2) .chip-circle { border-color: #ff5d8f; }
.chip-card:nth-child(3) .chip-circle { border-color: #00b4d8; }

.chip-circle:hover { transform: rotate(-8deg) scale(1.05); }

.chip-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 26px;
  margin-bottom: 6px;
}

.chip-card p {
  color: #888;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.chip-price {
  display: inline-block;
  background: #ff6d00;
  color: #fff;
  font-weight: 800;
  padding: 4px 20px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 3px 0 #b34a00;
}

.yellow-band {
  background: #ffd60a;
}

.yellow-band .section-title { color: #2b2b2b; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.menu-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-bottom: 6px solid #ffd60a;
}

.menu-card:nth-child(even) { transform: rotate(1deg); border-bottom-color: #00b4d8; }
.menu-card:nth-child(3n) { border-bottom-color: #ff5d8f; }

.menu-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 24px;
}

.menu-card .d {
  color: #999;
  font-size: 13px;
  font-weight: 600;
}

.menu-card .price {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 26px;
  color: #ff6d00;
  background: #fff3e0;
  padding: 6px 16px;
  border-radius: 999px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: 28px 28px 28px 8px;
  padding: 30px 24px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.team-card:nth-child(1) { border-top: 8px solid #ff6d00; }
.team-card:nth-child(2) { border-top: 8px solid #00b4d8; }
.team-card:nth-child(3) { border-top: 8px solid #ff5d8f; }

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.team-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 24px;
}

.team-card p {
  color: #ff6d00;
  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: 28px 28px 28px 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-body { padding: 24px 26px 28px; }

.blog-date {
  display: inline-block;
  background: #ff5d8f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 999px;
}

.blog-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 24px;
  margin: 12px 0 8px;
}

.blog-card p {
  color: #777;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.read-more {
  color: #00b4d8;
  font-weight: 900;
  border-bottom: 3px solid #00b4d8;
  padding-bottom: 2px;
}

.cta-band {
  background: linear-gradient(120deg, #ffd60a, #ff6d00);
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 46px;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.cta-band p {
  color: #5a3a00;
  font-weight: 700;
  margin-bottom: 24px;
}

.page-banner {
  margin-top: 84px;
  background: linear-gradient(120deg, #ffd60a, #ff6d00, #ff5d8f);
  text-align: center;
  padding: 80px 0 90px;
}

.page-banner h1 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 54px;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.page-banner p {
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  letter-spacing: 4px;
  margin-top: 10px;
}

.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: 40px 40px 40px 8px;
  border: 6px solid #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  transform: rotate(1deg);
}

.about-intro h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 34px;
  margin-bottom: 16px;
}

.about-intro p {
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  border-radius: 28px 28px 28px 8px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-bottom: 8px solid #00b4d8;
}

.why-card:nth-child(2) { border-bottom-color: #ff5d8f; }
.why-card:nth-child(3) { border-bottom-color: #ff6d00; }

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffd60a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 18px;
  border: 4px dashed #fff;
}

.why-card h3 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 26px;
  margin-bottom: 8px;
}

.why-card p { color: #777; font-size: 14px; font-weight: 500; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.gallery-fig {
  background: #fff;
  border-radius: 32px 32px 32px 8px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-top: 8px solid #ffd60a;
}

.gallery-fig:nth-child(even) { border-top-color: #00b4d8; }

.gallery-fig img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px 24px 24px 6px;
}

.gallery-fig figcaption {
  text-align: center;
  padding: 14px 0 6px;
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 20px;
  color: #2b2b2b;
}

.article-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  background: #fff;
  border-radius: 32px 32px 32px 8px;
  overflow: hidden;
  margin-bottom: 34px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-left: 10px solid #ffd60a;
}

.article-row:nth-child(odd) { border-left-color: #ff5d8f; }

.article-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body { padding: 32px 34px; }

.article-body h2 {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 30px;
  margin: 12px 0 10px;
}

.article-body p {
  color: #666;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-item {
  background: #fff;
  border-radius: 24px 24px 24px 8px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-left: 10px solid #ff6d00;
}

.contact-item:nth-child(2) { border-left-color: #00b4d8; }
.contact-item:nth-child(3) { border-left-color: #ff5d8f; }
.contact-item:nth-child(4) { border-left-color: #9d4edd; }

.contact-item h3 {
  color: #ff6d00;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-weight: 800;
}

.contact-item p { color: #444; font-weight: 600; }

.form-group { margin-bottom: 20px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 3px dashed #ffd60a;
  border-radius: 20px;
  padding: 14px 20px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  color: #2b2b2b;
  outline: none;
  font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #00b4d8; }

.form-group textarea { height: 140px; resize: vertical; }

.map-place {
  margin-top: 50px;
  height: 300px;
  background: #fff;
  border-radius: 32px 32px 32px 8px;
  border: 4px dashed #ff5d8f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5d8f;
  letter-spacing: 4px;
  font-weight: 800;
}

.footer {
  background: #2b2b2b;
  color: #fff;
  text-align: center;
  padding: 60px 0 28px;
}

.footer-brand {
  font-family: 'ZCOOL KuaiLe', cursive;
  font-size: 32px;
  color: #ffd60a;
  margin-bottom: 8px;
}

.footer-info { color: #bdbdbd; font-size: 13px; margin-bottom: 20px; }

.footer-copy {
  color: #777;
  font-size: 12px;
  border-top: 1px solid #444;
  padding-top: 18px;
}

@media (max-width: 768px) {
  .nav-inner { flex-wrap: wrap; padding: 0 20px; }
  .brand .name { font-size: 22px; }
  .nav-toggle { display: block; }
  .nav-menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    display: none;
    margin-top: 12px;
  }
  .nav-open .nav-menu { display: flex; }
  .nav-menu a { text-align: center; }
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 46px; letter-spacing: 2px; }
  .hero p { font-size: 15px; }
  .sticker-1 { top: 12%; left: 6%; font-size: 14px; padding: 8px 16px; }
  .sticker-2 { top: 16%; right: 6%; font-size: 14px; padding: 8px 16px; }
  .sticker-3 { bottom: 12%; left: 8%; font-size: 13px; padding: 8px 16px; }
  .sticker-4 { bottom: 18%; right: 8%; font-size: 13px; padding: 8px 16px; }
  .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; }
  .chip-grid, .team-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .chip-circle { width: 180px; height: 180px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card, .menu-card:nth-child(even) { transform: none; }
  .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: 84px; padding: 60px 0 70px; }
  .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 导航深色底（源站 header 在 CMS 未渲染的兜底） */
.nav{background:#1a1a1a}

/* navbar fixed 导航避让首屏 */
main>section:first-of-type,.page-banner{margin-top:130px}
