:root{--c-primary:#7b5ea7;}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Baloo 2', 'ZCOOL KuaiLe', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: linear-gradient(180deg, #eaf6ff 0%, #fdf6ef 100%);
  color: #5b4b8a;
  line-height: 1.8;
}

h1,
h2,
h3,
h4 {
  font-family: 'ZCOOL KuaiLe', 'Baloo 2', sans-serif;
  font-weight: 400;
  color: #5b4b8a;
}

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 20px;
}

.btn {
  display: inline-block;
  padding: 12px 34px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(162, 210, 255, .35);
}

.nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 22px;
  color: #7b5ea7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand i {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(135deg, #ffd6a5, #cdb4db);
  display: inline-block;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  color: #5b4b8a;
  font-size: 15px;
  transition: all .3s;
}

.nav-menu a:hover {
  background: #ffd6a5;
  color: #7b5ea7;
}

.nav-menu a.active {
  background: #cdb4db;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #7b5ea7;
  border-radius: 3px;
  margin: 5px 0;
  transition: all .3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #a2d2ff 0%, #cae9ff 55%, #dff2ff 100%);
  padding: 150px 0 170px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 56px;
  color: #fff;
  text-shadow: 0 6px 18px rgba(123, 94, 167, .25);
  margin-bottom: 18px;
}

.hero-text p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #7b5ea7;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(123, 94, 167, .25);
}

.btn-white:hover {
  transform: translateY(-4px);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, .85);
  color: #fff;
  border-radius: 999px;
  padding: 10px 32px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .25);
}

.balloon-wrap {
  position: relative;
  width: 320px;
  height: 360px;
  flex-shrink: 0;
}

.balloon {
  width: 180px;
  height: 210px;
  position: absolute;
  top: 0;
  left: 70px;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(135deg, #ffd6a5, #ffafcc 45%, #cdb4db);
  box-shadow: inset -16px -20px 36px rgba(0, 0, 0, .07), 0 34px 60px rgba(123, 94, 167, .3);
}

.balloon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, .45) 26px 34px, transparent 34px 60px);
}

.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 52px;
  height: 38px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #b07a5f, #8d6e63);
  border-radius: 6px 6px 12px 12px;
  box-shadow: 0 10px 18px rgba(123, 94, 167, .3);
}

.balloon-line {
  position: absolute;
  left: 160px;
  top: 206px;
  width: 2px;
  height: 56px;
  background: rgba(255, 255, 255, .7);
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 58% 42% 55% 45% / 50% 48% 52% 50%;
  opacity: .9;
  animation: drift 8s ease-in-out infinite;
  z-index: 1;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud::before {
  width: 60%;
  height: 130%;
  top: -45%;
  left: 14%;
}

.cloud::after {
  width: 45%;
  height: 110%;
  top: -28%;
  right: 8%;
}

.cloud-1 {
  width: 220px;
  height: 90px;
  top: 14%;
  left: -60px;
}

.cloud-2 {
  width: 300px;
  height: 120px;
  bottom: 10%;
  right: -80px;
  animation-delay: -3s;
}

.cloud-3 {
  width: 180px;
  height: 70px;
  top: 8%;
  right: 20%;
  opacity: .55;
  animation-delay: -5s;
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  animation: floatUp 6s ease-in-out infinite;
}

.dot-1 {
  width: 14px;
  height: 14px;
  top: 22%;
  left: 14%;
}

.dot-2 {
  width: 10px;
  height: 10px;
  top: 36%;
  left: 30%;
  animation-delay: -2s;
}

.dot-3 {
  width: 18px;
  height: 18px;
  bottom: 26%;
  left: 42%;
  animation-delay: -4s;
}

.dot-4 {
  width: 10px;
  height: 10px;
  top: 18%;
  right: 10%;
  animation-delay: -1s;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-sub {
  color: #8a7bb0;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 26px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 24px 44px rgba(162, 210, 255, .4);
  transition: transform .3s;
}

.feature-card:nth-child(1) {
  transform: rotate(-2deg);
}

.feature-card:nth-child(2) {
  transform: rotate(1.5deg);
}

.feature-card:nth-child(3) {
  transform: rotate(-1.5deg);
}

.feature-card:nth-child(4) {
  transform: rotate(2deg);
}

.feature-card:hover {
  transform: rotate(0) translateY(-10px);
}

.feature-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  font-family: 'ZCOOL KuaiLe', sans-serif;
}

.features .feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #ffd6a5, #ffc4d6);
}

.features .feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #cdb4db, #bde0fe);
}

.features .feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #bde0fe, #a2d2ff);
}

.features .feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #ffc4d6, #ffd6a5);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #8a7bb0;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: 40% 60% 50% 50% / 50% 45% 55% 50%;
  border: 10px solid #fff;
  box-shadow: 0 24px 44px rgba(162, 210, 255, .5);
}

.cloud-badge {
  position: absolute;
  background: #fff;
  border-radius: 50% 50% 42% 42%;
  box-shadow: 0 16px 30px rgba(162, 210, 255, .5);
  text-align: center;
  padding: 16px 22px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
}

.cloud-badge strong {
  display: block;
  font-size: 24px;
  color: #e9a1bd;
}

.cloud-badge span {
  font-size: 13px;
  color: #8a7bb0;
}

.cloud-badge-b1 {
  top: -20px;
  right: 10px;
  transform: rotate(6deg);
}

.cloud-badge-b2 {
  bottom: -18px;
  left: -10px;
  transform: rotate(-6deg);
}

.about-text p {
  color: #6f5f9b;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat-cloud {
  background: #fff;
  border-radius: 26px;
  padding: 16px 28px;
  box-shadow: 0 14px 28px rgba(162, 210, 255, .4);
  text-align: center;
}

.stat-cloud strong {
  display: block;
  font-size: 26px;
  color: #e9a1bd;
  font-family: 'ZCOOL KuaiLe', sans-serif;
}

.stat-cloud span {
  font-size: 13px;
  color: #8a7bb0;
}

.stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stay-card {
  background: #fff;
  border-radius: 50% 50% 18px 18px / 30% 30% 18px 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(162, 210, 255, .45);
  transition: transform .3s;
}

.stay-card:hover {
  transform: translateY(-10px) rotate(-1deg);
}

.stay-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.stay-body {
  padding: 22px 24px 28px;
  text-align: center;
}

.stay-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.stay-body p {
  color: #8a7bb0;
  font-size: 14px;
}

.stay-price {
  color: #e9a1bd;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 20px;
  margin-top: 10px;
}

.btn-stay {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, #a2d2ff, #cdb4db);
  color: #fff;
  border-radius: 999px;
  padding: 8px 28px;
  font-size: 14px;
  transition: all .3s;
}

.btn-stay:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(162, 210, 255, .6);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.portfolio-item {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(162, 210, 255, .4);
}

.portfolio-item img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(91, 75, 138, .85));
  color: #fff;
  padding: 36px 20px 16px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 18px;
  border-radius: 0 0 34px 34px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(162, 210, 255, .4);
  transition: transform .3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 20px 22px 24px;
}

.blog-date {
  display: inline-block;
  background: #eaf6ff;
  color: #7b5ea7;
  border-radius: 999px;
  padding: 2px 14px;
  font-size: 12px;
}

.blog-body h3 {
  font-size: 18px;
  margin: 12px 0 10px;
}

.blog-body p {
  color: #8a7bb0;
  font-size: 14px;
}

.read-more {
  display: inline-block;
  margin-top: 14px;
  color: #7b5ea7;
  border-bottom: 2px dashed #cdb4db;
  padding-bottom: 2px;
  font-size: 14px;
}

.read-more:hover {
  color: #e9a1bd;
  border-bottom-color: #e9a1bd;
}

.section-foot-link {
  text-align: center;
  margin-top: 34px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: 30px;
  padding: 34px 22px;
  box-shadow: 0 18px 36px rgba(162, 210, 255, .4);
  transition: transform .3s;
}

.team-card:hover {
  transform: translateY(-8px) rotate(1deg);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 6px solid #ffd6a5;
}

.team-card h3 {
  font-size: 20px;
}

.team-role {
  color: #e9a1bd;
  font-size: 13px;
  letter-spacing: 2px;
  margin: 6px 0 10px;
}

.team-card p {
  color: #8a7bb0;
  font-size: 14px;
}

.cta-band {
  background: linear-gradient(135deg, #ffd6a5, #ffafcc);
  padding: 70px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 26px;
}

.site-footer {
  background: #7b5ea7;
  color: rgba(255, 255, 255, .85);
  padding-top: 70px;
  border-radius: 48% 48% 0 0 / 12% 12% 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #ffd6a5;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: rgba(255, 255, 255, .8);
}

.footer-col a:hover {
  color: #ffd6a5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.page-banner {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  text-align: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(162, 210, 255, .55), rgba(123, 94, 167, .6));
}

.banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.banner-content h1 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: .9;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-grid img {
  border-radius: 40% 60% 50% 50% / 50% 45% 55% 50%;
  border: 10px solid #fff;
  box-shadow: 0 24px 44px rgba(162, 210, 255, .5);
}

.intro-grid p {
  color: #6f5f9b;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.value-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(162, 210, 255, .35);
  transition: transform .3s;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd6a5, #ffafcc);
  color: #fff;
  font-size: 24px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-card:nth-child(2) .value-icon {
  background: linear-gradient(135deg, #cdb4db, #bde0fe);
}

.value-card:nth-child(3) .value-icon {
  background: linear-gradient(135deg, #bde0fe, #a2d2ff);
}

.value-card:nth-child(4) .value-icon {
  background: linear-gradient(135deg, #ffc4d6, #ffd6a5);
}

.value-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.value-card p {
  color: #8a7bb0;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.gallery-item {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(162, 210, 255, .4);
}

.gallery-item img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 94, 167, .4);
  color: #fff;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 26px;
  opacity: 0;
  transition: opacity .4s;
}

.gallery-item:hover .gallery-cap {
  opacity: 1;
}

.posts {
  max-width: 900px;
  margin: 0 auto;
}

.post {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 26px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(162, 210, 255, .35);
}

.post img {
  border-radius: 18px;
  height: 190px;
  object-fit: cover;
  width: 100%;
}

.post h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.post-date {
  display: inline-block;
  background: #eaf6ff;
  color: #7b5ea7;
  border-radius: 999px;
  padding: 2px 14px;
  font-size: 12px;
  margin-bottom: 10px;
}

.post p {
  color: #8a7bb0;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px 28px;
  margin-bottom: 18px;
  box-shadow: 0 16px 32px rgba(162, 210, 255, .35);
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-card p {
  color: #8a7bb0;
  font-size: 14px;
}

.contact-form {
  background: #fff;
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 22px 44px rgba(162, 210, 255, .45);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  color: #7b5ea7;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #d7ecff;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  background: #f5fbff;
  color: #5b4b8a;
  outline: none;
  transition: border-color .3s;
}

.form-row textarea {
  border-radius: 20px;
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #cdb4db;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #a2d2ff, #cdb4db);
  border-radius: 999px;
  color: #fff;
  padding: 14px;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(162, 210, 255, .6);
}

.map-placeholder {
  margin-top: 50px;
  height: 280px;
  border-radius: 34px;
  border: 6px dashed rgba(123, 94, 167, .3);
  background: linear-gradient(135deg, #eaf6ff, #fff0f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b5ea7;
  font-family: 'ZCOOL KuaiLe', sans-serif;
  font-size: 20px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    flex-direction: column;
    padding: 10px 20px 20px;
    display: none;
    border-radius: 0 0 24px 24px;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .balloon-wrap {
    width: 200px;
    height: 250px;
  }

  .balloon {
    left: 10px;
    transform: scale(.8);
    transform-origin: top left;
  }

  .balloon-line {
    left: 100px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .about-grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .stays-grid,
  .blog-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .post {
    grid-template-columns: 1fr;
  }

  .cloud-badge {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}


/* ===== 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}
