:root{--c-primary:#e63946;}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: #1d2d2f;
  color: #f4ede6;
  line-height: 1.8;
  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 {
  background: #e63946;
  box-shadow: 0 4px 0 #b02a35;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  padding: 18px 0;
}

.brand i {
  font-style: normal;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #f77f00;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 22px;
  box-shadow: 0 3px 0 #b25d00;
}

.nav-menu {
  display: flex;
}

.nav-menu a {
  display: block;
  padding: 22px 26px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 15px;
  border-left: 2px solid rgba(255,255,255,0.18);
  transition: background 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #1d2d2f;
  color: #ffd166;
}

.nav-toggle {
  display: none;
  background: #1d2d2f;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #1d2d2f 0%, rgba(29,45,47,0.6) 55%, rgba(230,57,70,0.35) 100%);
}

.hero-slant {
  position: relative;
  z-index: 2;
  margin-left: 6%;
  padding: 70px 60px;
  background: #e63946;
  clip-path: polygon(0 0, 100% 12%, 94% 100%, 0 88%);
  max-width: 620px;
  box-shadow: 8px 8px 0 rgba(230,57,70,0.35);
}

.hero-slant .flame {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-slant h1 {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.2;
}

.hero-slant h1 span {
  color: #ffd166;
}

.hero-slant p {
  margin-top: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  background: #f77f00;
  color: #fff;
  padding: 15px 44px;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 15px;
  margin-top: 26px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: filter 0.3s;
}

.btn:hover { filter: brightness(1.15); }

.btn-red { background: #e63946; }
.btn-red:hover { filter: brightness(1.1); }
.btn-dark { background: #1d2d2f; }

.section { padding: 90px 0; }

.section-head {
  margin-bottom: 50px;
  text-align: center;
}

.kicker {
  display: inline-block;
  color: #f77f00;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #fff;
}

.section-sub {
  color: #9db3b6;
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 2px;
}

.angle-red {
  background: #e63946;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding-top: 130px;
  padding-bottom: 130px;
}

.angle-orange {
  background: #f77f00;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding-top: 130px;
  padding-bottom: 130px;
}

.angle-dark {
  background: #1d2d2f;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding-top: 130px;
  padding-bottom: 130px;
}

.angle-red .section-title { color: #fff; }
.angle-orange .section-title { color: #fff; }
.angle-red .section-sub { color: rgba(255,255,255,0.85); }
.angle-orange .section-sub { color: rgba(255,255,255,0.9); }

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.about-preview h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.about-preview p {
  color: #9db3b6;
  margin-bottom: 16px;
}

.pot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.pot-card {
  background: #1d2d2f;
  border: 3px solid rgba(255,255,255,0.15);
  padding: 34px;
  text-align: center;
  transform: rotate(-1.5deg);
}

.pot-card:nth-child(2) { transform: rotate(1.5deg) translateY(-10px); }
.pot-card:nth-child(3) { transform: rotate(-1deg); }

.pot-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63946, #f77f00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 0 30px rgba(247,127,0,0.4);
}

.pot-card h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.pot-card p {
  color: #9db3b6;
  font-size: 14px;
  margin-bottom: 14px;
}

.price-chip {
  display: inline-block;
  background: #f77f00;
  color: #fff;
  font-weight: 800;
  padding: 5px 20px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.team-card {
  background: #243638;
  border-top: 6px solid #e63946;
  padding-bottom: 26px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-top: 16px;
  letter-spacing: 3px;
}

.team-card p {
  color: #f77f00;
  font-size: 14px;
  letter-spacing: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-card {
  background: #243638;
  border-bottom: 6px solid #f77f00;
  padding-bottom: 28px;
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-body { padding: 22px 24px; }

.blog-date {
  color: #f77f00;
  font-size: 13px;
  letter-spacing: 2px;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 900;
  margin: 8px 0 10px;
}

.blog-card p {
  color: #9db3b6;
  font-size: 14px;
  margin-bottom: 12px;
}

.read-more {
  color: #ffd166;
  font-weight: 800;
  border-bottom: 2px solid #ffd166;
  padding-bottom: 2px;
}

.cta-band {
  background: linear-gradient(120deg, #e63946, #f77f00);
  text-align: center;
  padding: 100px 0;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.cta-band h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 26px;
  letter-spacing: 2px;
}

.page-banner {
  background: #1d2d2f;
  text-align: center;
  padding: 90px 0 100px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.page-banner h1 {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 8px;
}

.page-banner p {
  color: #f77f00;
  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;
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
}

.about-intro h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.about-intro p {
  color: #9db3b6;
  margin-bottom: 16px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  border: 3px solid rgba(255,255,255,0.18);
  padding: 40px 30px;
  text-align: center;
  background: #243638;
}

.value-card .num {
  font-size: 40px;
  font-weight: 900;
  color: #e63946;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 12px 0 10px;
  letter-spacing: 3px;
}

.value-card p { color: #9db3b6; font-size: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.gallery-fig {
  position: relative;
}

.gallery-fig img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.gallery-fig figcaption {
  position: absolute;
  left: 6%;
  right: 4%;
  bottom: 18px;
  background: rgba(230,57,70,0.85);
  text-align: center;
  padding: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
}

.article-row {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 40px;
  background: #243638;
  border-left: 8px solid #e63946;
  margin-bottom: 36px;
}

.article-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body { padding: 34px 38px; }

.article-body h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 10px 0 12px;
}

.article-body p {
  color: #9db3b6;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-item {
  border-left: 6px solid #e63946;
  background: #243638;
  padding: 24px 28px;
  margin-bottom: 18px;
}

.contact-item h3 {
  color: #f77f00;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.contact-item p { color: #dce6e7; }

.form-group { margin-bottom: 20px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: #243638;
  border: 3px solid #3a5256;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: 'Noto Sans SC', sans-serif;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #f77f00; }

.form-group textarea { height: 140px; resize: vertical; }

.map-place {
  margin-top: 50px;
  height: 300px;
  background: #243638;
  border: 3px solid #3a5256;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f77f00;
  letter-spacing: 4px;
  font-weight: 700;
}

.footer {
  background: #111e20;
  text-align: center;
  padding: 60px 0 28px;
}

.footer-brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.footer-brand i {
  font-style: normal;
  color: #f77f00;
}

.footer-info { color: #9db3b6; font-size: 13px; margin-bottom: 20px; }

.footer-copy {
  color: #5a7175;
  font-size: 12px;
  border-top: 2px solid #243638;
  padding-top: 18px;
}

@media (max-width: 768px) {
  .nav-inner { flex-wrap: wrap; padding: 10px 20px; }
  .brand { font-size: 22px; 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-left: none; border-top: 2px solid rgba(255,255,255,0.18); padding: 14px 26px; }
  .hero { min-height: 72vh; }
  .hero-slant { margin-left: 0; padding: 50px 30px; }
  .hero-slant h1 { font-size: 40px; letter-spacing: 3px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; letter-spacing: 3px; }
  .angle-red, .angle-orange, .angle-dark { padding-top: 90px; padding-bottom: 90px; }
  .about-preview, .about-intro, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-preview img, .about-intro img { height: 300px; }
  .pot-grid, .team-grid, .blog-grid, .value-grid { grid-template-columns: 1fr; }
  .pot-card, .pot-card:nth-child(2) { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-fig img { height: 300px; }
  .article-row { grid-template-columns: 1fr; }
  .article-row img { height: 220px; }
  .cta-band { padding: 70px 0; }
  .cta-band h2 { font-size: 28px; letter-spacing: 4px; }
  .page-banner { padding: 70px 0 80px; }
  .page-banner h1 { 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}
