:root{--c-primary:#fb8500;}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Serif SC', serif;
  background: #fdf6ec;
  color: #4a4458;
  line-height: 1.8;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  font-weight: 700;
  color: #3c096c;
}

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: 13px 36px;
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s;
  font-size: 15px;
}

.btn-sunset {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #fff;
}

.btn-sunset:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(251, 133, 0, .4);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: #3c096c;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  transition: background .4s, box-shadow .4s;
}

.navbar.scrolled {
  background: rgba(60, 9, 108, .95);
  border-bottom-color: rgba(255, 255, 255, .15);
  box-shadow: 0 6px 24px rgba(60, 9, 108, .3);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand i {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #ffb703;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu a {
  color: rgba(255, 255, 255, .85);
  padding: 8px 16px;
  position: relative;
  font-size: 15px;
  transition: color .3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ffb703;
  transform: translateX(-50%);
  transition: width .3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 70%;
}

.nav-menu a.active {
  color: #ffb703;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  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, #ffb703 0%, #fb8500 35%, #e85d04 62%, #9d4edd 100%);
  padding: 190px 0 280px;
  text-align: center;
}

.sun {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe29a, #ffdd55 55%, #f7a600);
  box-shadow: 0 0 90px rgba(255, 200, 60, .7);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  color: #fff;
  font-size: 56px;
  letter-spacing: 8px;
  text-shadow: 0 8px 30px rgba(60, 9, 108, .35);
  margin-bottom: 16px;
}

.hero-content p {
  color: rgba(255, 255, 255, .95);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mountain {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.mountain-far {
  height: 30%;
  background: linear-gradient(180deg, #7b2cbf, #5a189a);
  clip-path: polygon(0 100%, 0 42%, 14% 58%, 30% 26%, 46% 55%, 62% 30%, 78% 58%, 100% 38%, 100% 100%);
}

.mountain-mid {
  height: 22%;
  background: #3c096c;
  clip-path: polygon(0 100%, 0 55%, 18% 72%, 38% 42%, 58% 70%, 78% 48%, 100% 66%, 100% 100%);
}

.mountain-near {
  height: 16%;
  background: #240046;
  clip-path: polygon(0 100%, 0 45%, 100% 30%, 100% 100%);
  z-index: 2;
}

.tree {
  position: absolute;
  bottom: 12%;
  width: 40px;
  height: 46px;
  background: #240046;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  z-index: 2;
}

.tree-1 {
  left: 8%;
  transform: scale(.8);
}

.tree-2 {
  left: 20%;
  bottom: 18%;
  transform: scale(1.1);
}

.tree-3 {
  right: 12%;
  bottom: 16%;
  transform: scale(.9);
}

.tree-4 {
  right: 26%;
  bottom: 8%;
  transform: scale(.7);
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.english-tag {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fb8500;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  border-radius: 4px;
}

.section-head .section-title {
  margin-bottom: 24px;
}

.section-sub {
  color: #7c7591;
  font-size: 15px;
  letter-spacing: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: 4px 40px 4px 40px;
  border: 8px solid #fff;
  box-shadow: 0 24px 44px rgba(60, 9, 108, .18);
}

.about-photo::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 60%;
  height: 100%;
  border: 3px dashed #fb8500;
  border-radius: 4px 40px 4px 40px;
  z-index: -1;
}

.about-text p {
  color: #6b6480;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 22px 10px;
  box-shadow: 0 14px 30px rgba(60, 9, 108, .1);
}

.stat strong {
  display: block;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: #fb8500;
}

.stat span {
  font-size: 13px;
  color: #7c7591;
}

.ridge {
  height: 80px;
  clip-path: polygon(0 100%, 0 40%, 12% 52%, 25% 28%, 38% 55%, 52% 30%, 66% 60%, 80% 35%, 100% 52%, 100% 100%);
}

.ridge-white {
  background: #fff;
}

.ridge-cream {
  background: #fdf6ec;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  border-top: 5px solid #fb8500;
  box-shadow: 0 16px 34px rgba(60, 9, 108, .1);
  transition: transform .3s;
}

.feature-card:nth-child(2) {
  border-top-color: #5a189a;
}

.feature-card:nth-child(3) {
  border-top-color: #0077b6;
}

.feature-card:nth-child(4) {
  border-top-color: #ffb703;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #9d4edd, #5a189a);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #ffd166, #ffb703);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #7c7591;
  font-size: 14px;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trip-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(60, 9, 108, .12);
  transition: transform .3s, box-shadow .3s;
}

.trip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 46px rgba(60, 9, 108, .2);
}

.trip-top {
  height: 210px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
}

.trip-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-body {
  padding: 26px 24px 26px;
}

.trip-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.trip-body p {
  color: #7c7591;
  font-size: 14px;
}

.trip-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fb8500;
  margin-top: 12px;
  display: block;
}

.btn-trip {
  display: inline-block;
  margin-top: 14px;
  background: #3c096c;
  color: #fff;
  padding: 9px 26px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  transition: background .3s;
}

.btn-trip:hover {
  background: #fb8500;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 16px 34px rgba(60, 9, 108, .1);
  position: relative;
}

.testimonial::before {
  content: "“";
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1;
  color: #fb8500;
  display: block;
  margin-bottom: 6px;
}

.testimonial p {
  color: #6b6480;
  font-size: 14px;
}

.testimonial-author {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #3c096c;
  font-size: 14px;
}

.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
}

.testimonial-author small {
  display: block;
  font-weight: 400;
  color: #9a93ad;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px 34px 6px 34px;
}

.portfolio-item img {
  width: 100%;
  height: 330px;
  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(60, 9, 108, .9));
  color: #fff;
  padding: 40px 20px 16px;
  font-size: 16px;
  letter-spacing: 3px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.portfolio-cap .port-more {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: #ffb703;
}

.section-foot-link {
  text-align: center;
  margin-top: 34px;
}

.read-more {
  display: inline-block;
  color: #fb8500;
  border-bottom: 2px solid #fb8500;
  padding-bottom: 3px;
  letter-spacing: 2px;
  font-size: 14px;
}

.read-more:hover {
  color: #3c096c;
  border-bottom-color: #3c096c;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(60, 9, 108, .1);
  transition: transform .3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-body {
  padding: 20px 22px 24px;
}

.blog-date {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #0077b6;
}

.blog-body h3 {
  font-size: 18px;
  margin: 8px 0 10px;
}

.blog-body p {
  color: #7c7591;
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 34px 22px;
  box-shadow: 0 16px 32px rgba(60, 9, 108, .1);
  transition: transform .3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 6px solid #ffd166;
  object-fit: cover;
}

.team-card h3 {
  font-size: 20px;
}

.team-role {
  color: #fb8500;
  font-size: 13px;
  letter-spacing: 3px;
  margin: 6px 0 10px;
}

.team-card p {
  color: #7c7591;
  font-size: 14px;
}

.cta-band {
  background: linear-gradient(135deg, #5a189a 0%, #3c096c 60%, #0077b6 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, .08);
  clip-path: polygon(0 100%, 0 30%, 14% 55%, 28% 20%, 42% 60%, 56% 25%, 70% 60%, 84% 30%, 100% 55%, 100% 100%);
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 26px;
  letter-spacing: 2px;
}

.site-footer {
  background: #240046;
  color: rgba(255, 255, 255, .8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #ffd166;
  font-size: 17px;
  letter-spacing: 2px;
  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: #ffd166;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 190px 0 120px;
  text-align: center;
  background: linear-gradient(180deg, #5a189a, #3c096c);
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 9, 108, .65), rgba(60, 9, 108, .85));
}

.banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.banner-content h1 {
  color: #fff;
  font-size: 42px;
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.banner-content p {
  color: rgba(255, 255, 255, .85);
  letter-spacing: 2px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-grid img {
  border-radius: 4px 40px 4px 40px;
  border: 8px solid #fff;
  box-shadow: 0 24px 44px rgba(60, 9, 108, .18);
}

.intro-grid p {
  color: #6b6480;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  border-left: 5px solid #fb8500;
  box-shadow: 0 14px 30px rgba(60, 9, 108, .1);
  transition: transform .3s;
}

.value-card:nth-child(2) {
  border-left-color: #5a189a;
}

.value-card:nth-child(3) {
  border-left-color: #0077b6;
}

.value-card:nth-child(4) {
  border-left-color: #ffb703;
}

.value-card:hover {
  transform: translateX(6px);
}

.value-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.value-card p {
  color: #7c7591;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px 34px 6px 34px;
}

.gallery-item img {
  width: 100%;
  height: 390px;
  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(60, 9, 108, .55);
  color: #fff;
  font-size: 24px;
  letter-spacing: 6px;
  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: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 28px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(60, 9, 108, .1);
}

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.post h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.post-date {
  font-family: 'Playfair Display', serif;
  color: #0077b6;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.post p {
  color: #7c7591;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  flex-shrink: 0;
}

.contact-list h4 {
  font-size: 16px;
  color: #3c096c;
}

.contact-list p {
  color: #7c7591;
  font-size: 14px;
}

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(60, 9, 108, .12);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 14px;
  color: #3c096c;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e6dff0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: #faf6ff;
  color: #4a4458;
  outline: none;
  transition: border-color .3s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #fb8500;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #fff;
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  letter-spacing: 4px;
  padding: 14px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all .3s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(251, 133, 0, .4);
}

.map-placeholder {
  margin-top: 56px;
  height: 300px;
  border: 3px dashed #fb8500;
  border-radius: 6px 40px 6px 40px;
  background: linear-gradient(135deg, #fdf6ec, #f1e6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c096c;
  letter-spacing: 4px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(60, 9, 108, .97);
    flex-direction: column;
    padding: 10px 20px 20px;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .about-grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .trips-grid,
  .blog-grid,
  .team-grid,
  .testimonial-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .post {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .ridge {
    height: 50px;
  }

  .banner-content h1 {
    font-size: 30px;
  }
}


/* ===== 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}
