/* roulang page: index */
:root {
  --clay: #A64A38;
  --clay-dark: #7E3427;
  --clay-deep: #5B251B;
  --teal: #244F4C;
  --teal-deep: #1B3A37;
  --teal-night: #172A27;
  --gold: #BB8C52;
  --gold-light: #D8B27C;
  --bg: #F7F2EA;
  --surface: #FFFCF8;
  --white: #FFFFFF;
  --ink: #2F2925;
  --muted: #6B5D55;
  --soft: #8C817A;
  --frost: #F5EDE4;
  --line: rgba(95, 70, 55, 0.16);
  --line-gold: rgba(190, 150, 95, 0.42);
  --shadow-sm: 0 4px 12px rgba(70, 40, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(70, 40, 20, 0.08);
  --shadow-lg: 0 16px 36px rgba(70, 40, 20, 0.12);
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --font-sans: "PingFang SC", "HarmonyOS Sans", "MiSans", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --ease: 200ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

strong,
b {
  font-weight: 700;
}

.container {
  max-width: 1200px;
}

.section-gap {
  padding: clamp(3.5rem, 7vw, 5.8rem) 0;
}

.bg-surface {
  background: var(--surface);
}

.bg-soft {
  background: var(--bg);
}

/* 顶部资讯条 */
.top-utility {
  background: #1C2A27;
  color: #CBBEAF;
  font-size: 13px;
  border-bottom: 1px solid rgba(187, 140, 82, 0.28);
}

.top-utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 12px;
  flex-wrap: wrap;
}

.top-utility .top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-utility i {
  color: var(--gold-light);
  font-size: 14px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-right .service-line {
  color: #B8AFA3;
}

.top-cta {
  color: var(--gold-light);
  border: 1px solid rgba(187, 140, 82, 0.6);
  padding: 3px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: all var(--ease);
  background: rgba(187, 140, 82, 0.08);
}

.top-cta:hover {
  background: rgba(187, 140, 82, 0.18);
  color: #F0DDBB;
}

/* 主导航 */
.main-navbar {
  background: rgba(255, 252, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.main-navbar.is-sticky {
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.mark-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clay);
  color: #FFF6ED;
  font-weight: 800;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 24px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
  line-height: 1;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-name small {
  font-size: 15px;
  font-weight: 600;
  color: var(--clay);
  margin-left: 2px;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--soft);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 10px 0;
  display: inline-block;
  transition: color var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width var(--ease);
}

.nav-links a:hover {
  color: var(--clay);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--clay);
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--clay);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clay);
  color: #FFF9F2;
  font-weight: 600;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--clay-dark);
  color: #FFF9F2;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-cta i {
  font-size: 13px;
}

.navbar-toggler {
  border: none;
  outline: none;
  padding: 10px 12px;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid rgba(166, 74, 56, 0.5);
  border-radius: var(--radius-sm);
}

@media (max-width: 991px) {
  .nav-links {
    align-items: stretch;
    gap: 0;
  }
  .nav-links a {
    display: block;
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta {
    margin: 16px 0 8px;
    justify-content: center;
  }
}

/* Hero 区 */
.hero-section {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: relative;
  background-image: url('/assets/images/backpic/back-1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(247, 242, 234, 0.97) 20%, rgba(36, 79, 76, 0.55) 72%, rgba(27, 58, 55, 0.72) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: clamp(66px, 8vw, 116px) 0 62px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(166, 74, 56, 0.1);
  color: var(--clay-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(166, 74, 56, 0.2);
}

.hero-eyebrow i {
  color: var(--clay);
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 24px 0 18px;
  max-width: 760px;
}

.hero-title .word-clay {
  color: var(--clay);
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 30px;
  background: rgba(255, 252, 248, 0.72);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-lead strong {
  color: var(--clay-dark);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--clay);
  color: #FFF9F2;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--ease);
  box-shadow: 0 6px 16px rgba(166, 74, 56, 0.25);
  min-height: 50px;
}

.btn-main:hover {
  background: var(--clay-dark);
  color: #FFF9F2;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-main i {
  font-size: 14px;
}

.btn-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid rgba(95, 70, 55, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  min-height: 48px;
  transition: all var(--ease);
}

.btn-quiet:hover {
  border-color: var(--clay);
  color: var(--clay-dark);
  background: rgba(166, 74, 56, 0.06);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.hero-trust i {
  color: var(--gold);
}

/* 倒计时 */
.countboard {
  background: var(--clay);
  border-top: 1px solid var(--line-gold);
  color: #FFF4E8;
}

.countboard .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.count-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin: 0;
}

.count-title i {
  color: #F3DBAE;
  font-size: 20px;
}

.count-clock {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 235, 0.95);
  font-size: 15px;
}

.time-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #36231C;
  border-radius: 9px;
  min-width: 62px;
  padding: 7px 10px 6px;
  line-height: 1.1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.time-box b {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #FFF1DC;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.time-box small {
  font-size: 12px;
  color: #C8A77A;
  margin-top: 4px;
  font-weight: 500;
}

.time-colon {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F3DBAE;
}

@media (max-width: 767px) {
  .countboard .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .time-box {
    min-width: 52px;
  }
}

/* 核心卖点：上行列表式 */
.merit-area {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 42px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.sec-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.sec-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 10px;
  margin-bottom: 0;
}

.sec-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.8;
}

.merit-list {
  border-top: 1px solid var(--line);
}

.merit-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 10px;
  border-bottom: 1px solid var(--line);
  transition: all var(--ease);
  position: relative;
  flex-wrap: wrap;
}

.merit-row:hover {
  background: rgba(247, 242, 234, 0.6);
  transform: translateX(6px);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.merit-index {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}

.merit-body {
  flex: 1;
  min-width: 260px;
}

.merit-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.merit-title i {
  color: var(--clay);
  margin-right: 6px;
}

.merit-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 840px;
}

.merit-foot {
  margin-left: auto;
  font-size: 14px;
  color: var(--soft);
}

@media (max-width: 767px) {
  .merit-foot {
    margin-left: 0;
    width: 100%;
  }
}

/* 图墙 */
.visual-wall {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.wall-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 22px;
  align-items: stretch;
}

.wall-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.wall-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
  position: absolute;
  inset: 0;
}

.wall-figure.wf-lg {
  aspect-ratio: 16 / 9;
}

.wall-figure.wf-md {
  aspect-ratio: 3 / 2;
}

.wall-figure.wf-sm {
  aspect-ratio: 4 / 3;
}

.wall-figure:hover img {
  transform: scale(1.03);
}

.wall-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 14px;
  background: linear-gradient(0deg, rgba(23, 42, 39, 0.72), rgba(23, 42, 39, 0));
  color: var(--frost);
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.05em;
  z-index: 1;
}

.wall-figure figcaption i {
  margin-right: 6px;
  color: var(--gold-light);
}

.wall-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.wall-guide .wall-figure:nth-child(2) {
  margin-top: 28px;
}

.wall-guide .wall-figure:nth-child(3) {
  margin-bottom: 28px;
}

.section-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clay);
  font-weight: 600;
  transition: gap var(--ease);
}

.section-foot-link:hover {
  gap: 10px;
}

@media (max-width: 991px) {
  .wall-grid {
    grid-template-columns: 1fr;
  }
  .wall-guide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wall-guide {
    grid-template-columns: 1fr;
  }
}

/* CTA 深色表单 */
.cta-apply {
  position: relative;
  background-color: var(--teal-deep);
  background-image: url('/assets/images/backpic/back-3.webp');
  background-size: cover;
  background-position: center 20%;
  color: var(--frost);
  overflow: hidden;
}

.cta-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 55, 0.9);
}

.cta-apply .container {
  position: relative;
  z-index: 1;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.cta-kicker {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.cta-title {
  color: #FCF4E9;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0;
}

.cta-desc {
  color: #C8C0B6;
  line-height: 1.8;
  margin-bottom: 24px;
}

.cta-points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #E3D7C9;
  font-size: 15px;
}

.cta-points i {
  color: var(--gold-light);
  margin-top: 4px;
}

.apply-panel {
  background: rgba(255, 252, 248, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px 30px 24px;
  backdrop-filter: blur(2px);
}

.apply-head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.apply-head .apply-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.apply-head h3 {
  margin: 0;
  font-size: 19px;
  color: #FCF4E9;
  font-weight: 700;
}

.apply-form .form-label {
  color: #D6C9BA;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.apply-form .form-control {
  background: rgba(23, 42, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--frost);
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.apply-form .form-control:focus {
  background: rgba(23, 42, 39, 0.75);
  color: #FFFDF7;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(187, 140, 82, 0.18);
}

.apply-form .form-control::placeholder {
  color: #8F887E;
}

.apply-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23BB8C52' d='M6 8L0.5 0h11L6 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.apply-form .form-check {
  margin-top: 10px;
}

.apply-form .form-check-input {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: transparent;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.apply-form .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.apply-form .form-check-input:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.apply-form .form-check-label {
  font-size: 13px;
  color: #BDB2A6;
}

.btn-gold-lg {
  width: 100%;
  border: none;
  background: var(--gold);
  color: #2C2118;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  box-shadow: 0 8px 20px rgba(187, 140, 82, 0.25);
  margin-top: 14px;
}

.btn-gold-lg:hover {
  background: var(--gold-light);
  color: #2C2118;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(187, 140, 82, 0.34);
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
  color: #8F887E;
  margin-top: 12px;
  line-height: 1.5;
}

.privacy-note i {
  margin-top: 2px;
}

@media (max-width: 991px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* FAQ */
.faq-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 48px;
}

.faq-left {
  position: sticky;
  top: 90px;
  align-self: start;
}

.faq-header .sec-title {
  margin-top: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.accordion-button.faq-q {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
  padding: 22px 40px 22px 0;
  border: none;
  outline: none;
  box-shadow: none;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: color var(--ease);
}

.accordion-button.faq-q::before {
  content: "Q";
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
  background: rgba(187, 140, 82, 0.12);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-button.faq-q::after {
  content: "";
  background: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
  transition: transform var(--ease), margin var(--ease);
  position: absolute;
  right: 8px;
  top: 28px;
}

.accordion-button.faq-q:not(.collapsed) {
  color: var(--clay-dark);
  background: transparent;
  box-shadow: none;
}

.accordion-button.faq-q:not(.collapsed)::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.accordion-button.faq-q:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-answer {
  background: transparent;
  padding: 16px 22px 22px 44px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  border-left: 3px solid var(--clay);
  background: rgba(255, 252, 248, 0.56);
}

@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-left {
    position: static;
  }
}

/* CMS 最新资讯 */
.news-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.news-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.4fr;
  gap: 48px;
}

.news-side {
  border-right: 1px solid var(--line);
  padding-right: 36px;
}

.side-cta {
  margin-top: 28px;
  background: rgba(36, 79, 76, 0.08);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(36, 79, 76, 0.12);
}

.side-cta p {
  color: var(--teal-deep);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.side-cta a {
  color: var(--clay);
  font-weight: 700;
}

.cms-list {
  display: flex;
  flex-direction: column;
}

.cms-row {
  display: grid;
  grid-template-columns: 1.3fr 100px 150px 0.7fr;
  gap: 16px;
  align-items: center;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  transition: all var(--ease);
  background: transparent;
  border-radius: var(--radius-sm);
}

.cms-row:first-child {
  border-top: 1px solid var(--line);
}

.cms-row:hover {
  background: rgba(247, 242, 234, 0.7);
}

.cms-row strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  transition: color var(--ease);
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cms-row:hover strong {
  color: var(--clay);
}

.cms-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(166, 74, 56, 0.06);
  color: var(--clay-dark);
  border: 1px solid rgba(166, 74, 56, 0.18);
  font-weight: 500;
  width: fit-content;
  white-space: nowrap;
}

.cms-date {
  color: var(--soft);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cms-date i {
  color: var(--gold);
}

.cms-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px dashed rgba(95, 70, 55, 0.3);
  border-radius: var(--radius-md);
  color: var(--soft);
  background: rgba(247, 242, 234, 0.4);
  gap: 12px;
  font-size: 15px;
}

.empty-state i {
  font-size: 38px;
  color: var(--gold);
  opacity: 0.7;
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-weight: 700;
  transition: gap var(--ease);
  margin-top: 22px;
}

.news-more:hover {
  gap: 14px;
  color: var(--clay-dark);
}

@media (max-width: 991px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-side {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .cms-row {
    grid-template-columns: 1fr 92px 130px;
  }
  .cms-excerpt {
    display: none;
  }
}

@media (max-width: 600px) {
  .cms-row {
    grid-template-columns: 1fr 90px 100px;
  }
}

/* 页脚 */
.site-footer {
  background: var(--teal-night);
  color: #D2C8BC;
  font-size: 15px;
}

.footer-main {
  padding: 60px 0 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .mark-red {
  background: var(--gold);
  color: var(--teal-deep);
}

.footer-brand .brand-name {
  color: #F9F0E4;
}

.foot-about {
  max-width: 360px;
  color: #AFA49A;
  line-height: 1.85;
}

.footer-heading {
  color: #F5EBDE;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #B9B0A6;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a i {
  font-size: 11px;
  color: var(--gold);
  transition: transform var(--ease);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  color: #B9B0A6;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
  color: #8F867E;
  text-align: center;
}

.copyright-bar a {
  color: #BBB2A9;
}

.copyright-bar a:hover {
  color: var(--gold-light);
}

@media (max-width: 767px) {
  .footer-brand .brand-name {
    font-size: 20px;
  }
  .footer-main {
    padding-top: 40px;
  }
}

/* 通用焦点态 */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn-main:focus-visible,
.btn-gold-lg:focus-visible {
  outline-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    gap: 6px;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-sub {
    display: none;
  }
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .merit-row:hover {
    transform: none;
    padding-left: 10px;
  }
  .btn-main,
  .btn-quiet {
    width: 100%;
  }
}

/* roulang page: category1 */
:root {
      --primary: #A64A38;
      --primary-dark: #7E3427;
      --primary-deep: #5B251B;
      --secondary: #244F4C;
      --secondary-dark: #1B3A37;
      --gold: #BB8C52;
      --cream: #F7F2EA;
      --white: #FFFCF8;
      --pure-white: #FFFFFF;
      --ink: #2F2925;
      --muted: #6B5D55;
      --lighter: #8C817A;
      --line: rgba(95, 70, 55, 0.16);
      --line-gold: rgba(190, 150, 95, 0.35);
      --shadow-sm: 0 4px 16px rgba(70, 40, 20, 0.06);
      --shadow-md: 0 8px 24px rgba(70, 40, 20, 0.08);
      --shadow-lg: 0 16px 36px rgba(70, 40, 20, 0.12);
      --radius-sm: 6px;
      --radius-md: 16px;
      --radius-lg: 20px;
      --gap: clamp(3.5rem, 8vw, 6rem);
      --ease: all 0.25s ease-out;
    }

    * {
      box-sizing: border-box;
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: "PingFang SC", "HarmonyOS Sans", "MiSans", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
      font-size: 16px;
      line-height: 1.75;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover {
      color: var(--primary-dark);
    }

    img {
      max-width: 100%;
      height: auto;
      vertical-align: middle;
    }

    .container {
      max-width: 1200px;
      padding-left: 24px;
      padding-right: 24px;
    }

    i.bi {
      font-style: normal;
    }

    button,
    input,
    textarea {
      font-family: inherit;
    }

    ::selection {
      background: rgba(166, 74, 56, 0.2);
    }

    .top-info-bar {
      background: #1C2A27;
      color: #EBE2D5;
      font-size: 13px;
      min-height: 40px;
      padding: 6px 0;
    }

    .top-info-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 6px 20px;
    }

    .top-left-text {
      opacity: 0.9;
      letter-spacing: 0.02em;
    }

    .top-info-actions {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .top-info-link {
      color: rgba(247, 237, 228, 0.85);
      border-bottom: 1px solid rgba(187, 140, 82, 0.45);
      padding-bottom: 1px;
      margin-left: 14px;
      font-size: 13px;
      transition: var(--ease);
    }

    .top-info-link:hover {
      color: #fff;
      border-color: var(--gold);
    }

    .main-navbar {
      background: rgba(255, 252, 248, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      padding-top: 0;
      padding-bottom: 0;
      min-height: 74px;
      transition: box-shadow 0.25s ease;
    }

    .main-navbar.is-sticky {
      box-shadow: 0 8px 30px rgba(55, 30, 18, 0.06);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      min-height: 74px;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-right: 28px;
      padding: 0;
    }

    .brand-type {
      display: flex;
      flex-direction: column;
      line-height: 1.22;
    }

    .brand-name {
      font-size: 24px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.01em;
      display: inline-flex;
      align-items: baseline;
    }

    .brand-name small {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      margin-left: 2px;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--lighter);
      letter-spacing: 0.08em;
      margin-top: 2px;
    }

    .mark-red {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 9px;
      background: var(--primary);
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      flex-shrink: 0;
      border: 2px solid rgba(187, 140, 82, 0.4);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    }

    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 4px;
    }

    .nav-links li a {
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      padding: 10px 18px;
      border-radius: 30px;
      position: relative;
      transition: var(--ease);
    }

    .nav-links li a::after {
      content: "";
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 5px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      opacity: 0;
      transform: scaleX(0.5);
      transform-origin: center;
      transition: var(--ease);
    }

    .nav-links li a:hover {
      color: var(--primary);
    }

    .nav-links li a.active {
      color: var(--primary);
      font-weight: 600;
    }

    .nav-links li a.active::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      border: 1px solid var(--primary);
      padding: 10px 24px;
      border-radius: 40px;
      transition: var(--ease);
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(166, 74, 56, 0.18);
    }

    .navbar-toggler {
      border: none;
      font-size: 28px;
      background: transparent;
      color: var(--ink);
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
    }

    .navbar-toggler:focus {
      box-shadow: none;
      outline: 2px solid rgba(166, 74, 56, 0.4);
      outline-offset: 2px;
    }

    .page-hero {
      padding: 4rem 0 3.5rem;
      background: linear-gradient(180deg, #F7F2EA 0%, #F3EAE0 100%);
      position: relative;
      border-bottom: 1px solid var(--line);
    }

    .page-hero::before {
      content: "";
      position: absolute;
      right: -90px;
      top: -90px;
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(166, 74, 56, 0.05) 0%, transparent 62%);
      pointer-events: none;
    }

    .hero-breadcrumb {
      font-size: 14px;
      color: var(--lighter);
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .hero-breadcrumb a {
      color: var(--lighter);
    }

    .hero-breadcrumb a:hover {
      color: var(--primary);
    }

    .hero-breadcrumb .chev {
      color: var(--line-gold);
    }

    .page-hero h1 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 18px;
      letter-spacing: -0.01em;
    }

    .page-hero h1 span {
      color: var(--primary);
    }

    .page-hero .lead {
      font-size: 18px;
      color: var(--muted);
      max-width: 680px;
      margin-bottom: 12px;
    }

    .hero-flags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .hero-flags .badge-soft {
      background: rgba(166, 74, 56, 0.08);
      color: var(--primary);
      border: 1px solid rgba(166, 74, 56, 0.2);
      padding: 6px 18px;
      font-size: 14px;
      border-radius: 30px;
      font-weight: 500;
    }

    .section-block {
      padding-top: var(--gap);
      padding-bottom: var(--gap);
    }

    .inner-hero-section {
      padding: 4rem 0 5rem;
    }

    .two-col-block {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .two-col-block .img-col {
      flex: 1 1 46%;
      position: relative;
    }

    .two-col-block .text-col {
      flex: 1 1 54%;
    }

    .decor-frame {
      border: 1px solid var(--line-gold);
      border-radius: var(--radius-md);
      padding: 10px;
      position: relative;
    }

    .decor-frame::before {
      content: "";
      position: absolute;
      left: -12px;
      top: -12px;
      width: 40px;
      height: 40px;
      border-left: 3px solid var(--gold);
      border-top: 3px solid var(--gold);
      border-radius: 12px 0 0 0;
    }

    .decor-img {
      border-radius: var(--radius-md);
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 4/3;
      object-fit: cover;
      background: #EBE2D8;
    }

    .section-title-wrap {
      margin-bottom: 2.8rem;
    }

    .eyebrow-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .eyebrow-tag::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--gold);
      display: inline-block;
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(1.6rem, 2.6vw, 2.2rem);
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
      letter-spacing: -0.01em;
      margin-bottom: 12px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--muted);
      max-width: 680px;
      line-height: 1.85;
    }

    .quote-gold {
      background: linear-gradient(90deg, rgba(187, 140, 82, 0.12), rgba(187, 140, 82, 0.03));
      border-left: 4px solid var(--gold);
      padding: 20px 28px;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 17px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.8;
      margin: 2rem 0;
    }

    .metrics-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 2.8rem;
    }

    .metric-item {
      border-left: 2px solid var(--line-gold);
      padding-left: 24px;
    }

    .metric-number {
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--primary);
      font-family: "PingFang SC", sans-serif;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
    }

    .metric-label {
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      margin-top: 6px;
    }

    .metric-sub {
      font-size: 14px;
      color: var(--lighter);
      margin-top: 4px;
      line-height: 1.5;
    }

    .feature-list {
      margin-top: 2rem;
    }

    .feature-line {
      display: flex;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      align-items: flex-start;
    }

    .feature-line .feat-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 4px;
    }

    .feature-line h4 {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .feature-line p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 0;
    }

    .steps-banner {
      background: var(--secondary);
      border-radius: var(--radius-lg);
      padding: 3rem;
      color: #F5EDE4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .steps-banner h2 {
      color: #fff;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .steps-banner p {
      color: rgba(245, 237, 228, 0.8);
      margin-bottom: 0;
      font-size: 15px;
    }

    .btn-gold-light {
      background: var(--gold);
      border: 1px solid var(--gold);
      color: #fff;
      padding: 12px 36px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 16px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      transition: var(--ease);
      white-space: nowrap;
    }

    .btn-gold-light:hover {
      background: #aa7d44;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    }

    .section-alt-bg {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .support-card {
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 2rem;
      transition: var(--ease);
    }

    .support-card:hover {
      border-color: rgba(166, 74, 56, 0.3);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .support-card i.bi {
      font-size: 34px;
      color: var(--primary);
      display: block;
      margin-bottom: 16px;
    }

    .support-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .support-card p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .support-card a {
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 3fr 5fr;
      gap: 3rem;
    }

    .faq-sticky-title {
      position: sticky;
      top: 100px;
    }

    .faq-sticky-title h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .faq-sticky-title .lead {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
    }

    .faq-sticky-title .contact-box {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--line);
      margin-top: 28px;
    }

    .faq-sticky-title .contact-box h5 {
      font-weight: 700;
      font-size: 17px;
      margin-bottom: 8px;
    }
    .faq-sticky-title .contact-box p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .faq-sticky-title .contact-box a {
      color: var(--primary);
      font-weight: 600;
    }

    .accordion-custom {
      padding: 0;
      border: none;
    }

    .accordion-custom .accordion-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--line);
      border-radius: 0 !important;
      position: relative;
    }

    .accordion-custom .accordion-item::before {
      content: "";
      position: absolute;
      left: -18px;
      top: 16px;
      bottom: 16px;
      width: 3px;
      background: var(--primary);
      opacity: 0;
      border-radius: 3px;
      transition: var(--ease);
    }

    .accordion-custom .accordion-item.opened::before {
      opacity: 1;
    }

    .accordion-custom .accordion-button {
      background: transparent !important;
      border: none;
      box-shadow: none;
      padding: 22px 32px 22px 0;
      font-size: 18px;
      font-weight: 600;
      color: var(--ink);
      position: relative;
      text-align: left;
      line-height: 1.5;
    }

    .accordion-custom .accordion-button::after {
      content: "\F64D";
      font-family: bootstrap-icons;
      transition: transform 0.3s ease;
      position: absolute;
      right: 6px;
      width: auto;
      height: auto;
      background: none;
      font-size: 20px;
      color: var(--gold);
      font-weight: normal;
    }

    .accordion-custom .accordion-button:not(.collapsed)::after {
      transform: rotate(45deg);
      color: var(--primary);
    }

    .accordion-custom .accordion-button:not(.collapsed) {
      color: var(--primary);
      font-weight: 600;
    }

    .accordion-custom .accordion-body {
      padding: 0 28px 24px 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .faq-badge-q {
      display: inline-block;
      width: 26px;
      height: 26px;
      background: var(--primary);
      border-radius: 50%;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      line-height: 26px;
      margin-right: 10px;
    }

    .cta-section {
      background: var(--secondary-dark);
      color: #F5EDE4;
      border-radius: var(--radius-lg);
      padding: 3.5rem;
      background-image: url('/assets/images/backpic/back-3.webp');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(27, 58, 55, 0.94) 30%, rgba(166, 74, 56, 0.55) 100%);
    }

    .cta-inner-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
    }

    .cta-section h2 {
      color: #fff;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      margin-bottom: 18px;
      line-height: 1.3;
    }

    .cta-section p {
      color: rgba(245, 237, 228, 0.85);
      font-size: 16px;
      margin-bottom: 28px;
      max-width: 600px;
    }

    .btn-white-outline {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.7);
      color: #fff;
      padding: 12px 30px;
      border-radius: 40px;
      font-weight: 600;
      transition: var(--ease);
      margin-right: 12px;
      display: inline-block;
    }

    .btn-white-outline:hover {
      background: #fff;
      color: var(--secondary-dark);
    }

    .cta-icons {
      display: flex;
      gap: 20px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .cta-icons span {
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cta-icons span i {
      color: var(--gold);
    }

    .round-links {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 20px;
      background: var(--white);
      border-radius: 30px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.04);
      color: var(--ink);
      font-size: 15px;
      font-weight: 500;
      border: 1px solid var(--line);
      transition: var(--ease);
    }

    .round-links:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .site-footer {
      background: #1A2A27;
      color: #B7ACA2;
    }

    .site-footer .footer-main {
      padding: 4.5rem 0 2.8rem;
    }

    .site-footer .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .site-footer .footer-brand .brand-type {
      display: flex;
      flex-direction: column;
    }

    .footer-brand .brand-name {
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      display: inline-flex;
      align-items: baseline;
    }

    .footer-brand .brand-name small {
      font-size: 15px;
      color: #E7DACB !important;
      margin-left: 2px;
    }

    .footer-brand .brand-sub {
      font-size: 12px;
      color: #AFA49A;
      letter-spacing: 0.06em;
    }

    .foot-about {
      color: #9D9388;
      font-size: 15px;
      line-height: 1.85;
      margin: 0;
      padding-right: 20px;
    }

    .footer-heading {
      font-size: 16px;
      font-weight: 600;
      color: #EFE6DB;
      letter-spacing: 0.03em;
      margin-bottom: 24px;
      position: relative;
      padding-bottom: 2px;
    }

    .footer-heading::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 28px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
    }

    .footer-links li a {
      color: #B9B0A6;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--ease);
    }

    .footer-links li a i {
      font-size: 13px;
      color: var(--gold);
    }

    .footer-links li a:hover {
      color: var(--gold);
      padding-left: 4px;
    }

    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-contact li {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
      align-items: flex-start;
      font-size: 15px;
      color: #B7ACA2;
    }

    .footer-contact li i {
      color: var(--gold);
      font-size: 17px;
      flex-shrink: 0;
      line-height: 1.6;
    }

    .footer-contact li span {
      line-height: 1.55;
    }

    .copyright-bar {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 16px 0;
      font-size: 13px;
      color: #8B837A;
      text-align: center;
      background-color: rgba(0,0,0,0.1);
    }

    .copyright-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .copyright-bar a {
      color: #B7ACA2;
    }

    @media (max-width: 1199.98px) {
      .two-col-block {
        gap: 2rem;
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: var(--white);
        padding: 18px 0 22px;
        border-radius: 0 0 16px 16px;
        border: 1px solid var(--line);
        border-top: none;
        box-shadow: var(--shadow-md);
        margin-top: 6px;
      }

      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links li a {
        display: block;
        padding: 12px 12px;
        width: 100%;
        color: var(--ink);
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
      }

      .nav-links li a::after {
        display: none;
      }

      .nav-links li a.active,
      .nav-links li a:hover {
        background: rgba(166, 74, 56, 0.08);
        color: var(--primary);
      }

      .nav-cta {
        margin-top: 18px;
        margin-left: 12px;
        width: calc(100% - 24px);
        justify-content: center;
      }

      .support-grid,
      .metrics-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .faq-sticky-title {
        position: static;
        margin-bottom: 2.5rem;
      }

      .steps-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      .top-info-bar {
        font-size: 12px;
      }

      .top-info-actions .badge-warning-text {
        display: none;
      }

      .top-info-link {
        margin-left: 0;
      }

      .brand-name {
        font-size: 21px;
      }

      .brand-name small {
        font-size: 15px;
      }

      .mark-red {
        width: 36px;
        height: 36px;
        font-size: 22px;
      }

      .navbar-inner {
        min-height: 66px;
      }

      .page-hero {
        padding: 2.8rem 0 2.5rem;
      }

      .page-hero h1 {
        font-size: 2rem;
      }

      .page-hero .lead {
        font-size: 16px;
      }

      .two-col-block {
        flex-direction: column;
      }

      .two-col-block .img-col {
        order: -1;
        width: 100%;
      }

      .decor-frame {
        margin-bottom: 20px;
      }

      .metrics-row {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .metric-item {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--line-gold);
        padding-top: 16px;
      }

      .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .steps-banner {
        padding: 2rem;
      }

      .cta-section {
        padding: 2.2rem;
      }

      .cta-section h2 {
        font-size: 24px;
      }

      .faq-sticky-title .contact-box {
        padding: 18px;
      }

      .accordion-custom .accordion-button {
        font-size: 16px;
        padding-left: 0 !important;
        padding-right: 26px;
        white-space: normal;
      }

      .copyright-bar .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    .btn-primary {
      background: var(--primary);
      border-color: var(--primary);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
    }

    .btn-outline-secondary-custom {
      border: 1px solid var(--secondary);
      color: var(--secondary);
      background: transparent;
    }

    .btn-outline-secondary-custom:hover {
      background: var(--secondary);
      color: #fff;
    }

/* roulang page: article */
:root {
            --terracotta: #A64A38;
            --terracotta-dark: #7E3427;
            --terracotta-deep: #5B251B;
            --pine: #244F4C;
            --pine-deep: #1B3A37;
            --gold: #BB8C52;
            --gold-soft: rgba(187, 140, 82, 0.35);
            --cream: #F7F2EA;
            --paper: #FFFCF8;
            --ink: #2F2925;
            --muted: #6B5D55;
            --weak: #8C817A;
            --lightline: rgba(95, 70, 55, 0.14);
            --softline: rgba(95, 70, 55, 0.08);
            --radius: 16px;
            --radius-sm: 6px;
            --shadow: 0 8px 24px rgba(70, 40, 20, 0.08);
            --shadow-lift: 0 16px 36px rgba(70, 40, 20, 0.13);
            --section-space: clamp(3.4rem, 7vw, 5.25rem);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "HarmonyOS Sans", "MiSans", "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--ink);
            background-color: var(--cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--terracotta);
            text-decoration: none;
            transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
        }

        a:hover {
            color: var(--terracotta-dark);
        }

        ul,
        ol,
        p,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            padding: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.35;
            color: var(--ink);
        }

        :focus-visible {
            outline: 3px solid rgba(166, 74, 56, 0.35);
            outline-offset: 2px;
        }

        .container {
            padding-left: 24px;
            padding-right: 24px;
        }

        .btn-reserve,
        .btn-ghost,
        .btn-light-warm {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            border: 1px solid transparent;
            padding: .75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
        }

        .btn-reserve {
            background: var(--terracotta);
            color: #fff;
            box-shadow: 0 6px 16px rgba(166, 74, 56, 0.2);
        }

        .btn-reserve:hover {
            background: var(--terracotta-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(166, 74, 56, 0.26);
        }

        .btn-reserve:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-ghost {
            background: transparent;
            color: #F5EDE4;
            border: 1px solid rgba(245, 237, 228, 0.75);
        }

        .btn-ghost:hover {
            background: rgba(245, 237, 228, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-light-warm {
            background: var(--gold);
            color: var(--ink);
            border-color: var(--gold);
        }

        .btn-light-warm:hover {
            background: #b97e3f;
            border-color: #b97e3f;
            color: #fff;
            transform: translateY(-2px);
        }

        /* 顶部信息条 */
        .top-strip {
            background: var(--pine);
            border-bottom: 1px solid rgba(187, 140, 82, 0.35);
            min-height: 40px;
            display: flex;
            align-items: center;
            font-size: .85rem;
            color: #F5EDE4;
        }

        .top-strip .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: 40px;
        }

        .top-tip {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: rgba(245, 237, 228, 0.88);
        }

        .top-tip i {
            color: var(--gold);
        }

        .top-tools {
            display: flex;
            align-items: center;
            gap: 1rem;
            white-space: nowrap;
        }

        .top-tools a {
            color: rgba(245, 237, 228, 0.86);
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            font-size: .85rem;
        }

        .top-tools a:hover {
            color: var(--gold);
        }

        .top-seal {
            border: 1px solid rgba(245, 237, 228, 0.55);
            border-radius: 30px;
            padding: .2rem .7rem;
            font-size: .78rem;
            letter-spacing: .04em;
        }

        /* 主导航 */
        .main-navbar {
            background: rgba(255, 252, 248, 0.96);
            border-bottom: 1px solid var(--lightline);
            padding-top: .8rem;
            padding-bottom: .8rem;
            backdrop-filter: none;
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: .65rem;
            padding: 0;
            margin-right: 0;
        }

        .brand-seal {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--terracotta);
            border: 1px solid rgba(255, 255, 255, 0.65);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            font-weight: 900;
            line-height: 1;
            box-shadow: 0 0 0 2px rgba(187, 140, 82, 0.4);
            flex: 0 0 40px;
            transform: rotate(-2deg);
        }

        .brand-type {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .brand-type .brand-name {
            font-size: 1.45rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--ink);
        }

        .brand-type .brand-name small {
            font-size: .76em;
            color: var(--terracotta);
            font-weight: 800;
            margin-left: .08rem;
        }

        .brand-sub {
            font-size: .72rem;
            letter-spacing: .14em;
            color: var(--weak);
            margin-top: .3rem;
            text-transform: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 1.75rem;
            margin-bottom: 0;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--ink);
            font-size: .98rem;
            padding: .4rem 0;
            position: relative;
            display: inline-block;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--terracotta);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--terracotta);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: scaleX(1);
        }

        .nav-links a.active {
            color: var(--terracotta);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: var(--terracotta);
            color: #fff;
            font-weight: 600;
            border-radius: 8px;
            padding: .65rem 1.2rem;
            font-size: .95rem;
            box-shadow: 0 6px 14px rgba(166, 74, 56, 0.18);
            transition: all .28s ease;
            border: 0;
        }

        .nav-cta:hover {
            background: var(--terracotta-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(166, 74, 56, 0.24);
        }

        .navbar-toggler {
            border: 0;
            padding: .4rem .55rem;
            font-size: 1.45rem;
            color: var(--ink);
            background: transparent;
            box-shadow: none !important;
            outline: none;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* 面包屑 */
        .crumbs-area {
            background: #FBF7F0;
            border-bottom: 1px solid var(--lightline);
        }

        .crumb-bar {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: .45rem;
            font-size: .88rem;
            padding-top: .85rem;
            padding-bottom: .85rem;
            color: var(--weak);
        }

        .crumb-bar a {
            color: var(--muted);
            display: inline-flex;
            align-items: center;
            gap: .25rem;
        }

        .crumb-bar a:hover {
            color: var(--terracotta);
        }

        .crumb-bar .sep {
            color: var(--lightline);
            font-weight: 300;
        }

        .crumb-bar .crumb-here {
            color: var(--terracotta);
            font-weight: 600;
            max-width: 480px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* 文章区域 */
        .article-page {
            padding-top: clamp(1.5rem, 4vw, 2.75rem);
            padding-bottom: var(--section-space);
        }

        .article-shell {
            background: var(--paper);
            border: 1px solid var(--lightline);
            border-radius: 22px;
            box-shadow: var(--shadow);
            padding: clamp(1.35rem, 4vw, 3.2rem);
        }

        .article-shell.no-found {
            text-align: center;
            padding-top: 4.5rem;
            padding-bottom: 5rem;
        }

        .missing-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #F4EADD;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            color: var(--terracotta);
            font-size: 1.8rem;
        }

        .missing-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: .6rem;
        }

        .missing-sub {
            color: var(--muted);
            max-width: 520px;
            margin: 0 auto 1.8rem;
        }

        .article-head {
            margin-bottom: 2rem;
        }

        .article-breadcrumb-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.1rem;
        }

        .article-breadcrumb-label .cat-chip {
            background: #F7EEE4;
            border: 1px solid rgba(187, 140, 82, 0.3);
            color: var(--terracotta);
            font-size: .82rem;
            padding: .25rem .8rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }

        .article-date {
            color: var(--weak);
            font-size: .9rem;
            display: inline-flex;
            align-items: center;
            gap: .38rem;
        }

        .article-title {
            font-size: clamp(1.8rem, 4.2vw, 2.8rem);
            font-weight: 800;
            line-height: 1.28;
            letter-spacing: -0.02em;
            color: var(--ink);
            margin-top: .4rem;
        }

        .article-title .lead-line {
            width: 48px;
            height: 4px;
            border-radius: 2px;
            background: var(--terracotta);
            margin-bottom: 1.1rem;
        }

        .content-divider {
            border: 0;
            border-top: 1px solid var(--lightline);
            opacity: .8;
            margin: 1.8rem 0;
        }

        .article-reading {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: var(--ink);
            letter-spacing: .01em;
        }

        .article-reading p {
            margin-bottom: 1.35em;
        }

        .article-reading p:last-child {
            margin-bottom: 0;
        }

        .article-reading h2 {
            font-size: 1.55rem;
            font-weight: 800;
            margin: 2.2rem 0 1rem;
            padding-left: .8rem;
            border-left: 4px solid var(--terracotta);
            line-height: 1.4;
        }

        .article-reading h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 2rem 0 .8rem;
            color: var(--pine);
            padding-left: .45rem;
        }

        .article-reading ul,
        .article-reading ol {
            margin: 1.15rem 0 1.5rem;
            padding-left: 1.3rem;
        }

        .article-reading ul li,
        .article-reading ol li {
            margin-bottom: .5rem;
        }

        .article-reading blockquote {
            background: #F6EEE4;
            border-left: 4px solid var(--gold);
            margin: 1.6rem 0;
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
            font-weight: 500;
            color: var(--muted);
        }

        .article-reading blockquote p {
            margin-bottom: 0;
        }

        .article-reading img {
            border-radius: var(--radius);
            border: 1px solid var(--lightline);
            margin: 1.6rem 0;
            object-fit: cover;
        }

        .article-reading figure {
            margin: 1.6rem 0;
        }

        .article-reading figure img {
            margin: 0;
        }

        .article-reading figcaption {
            font-size: .85rem;
            color: var(--weak);
            text-align: center;
            padding-top: .6rem;
        }

        .article-reading table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: var(--paper);
        }

        .article-reading table th,
        .article-reading table td {
            border: 1px solid var(--lightline);
            padding: .8rem .9rem;
            text-align: left;
            vertical-align: top;
        }

        .article-reading table th {
            background: #F6EEE4;
            color: var(--ink);
            font-weight: 700;
            white-space: nowrap;
        }

        .article-reading a {
            color: var(--terracotta);
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 4px;
        }

        .article-reading a:hover {
            color: var(--terracotta-dark);
            text-decoration: underline;
            text-decoration-style: solid;
        }

        /* 推荐区 */
        .related-section {
            padding-top: clamp(2.5rem, 5vw, 4rem);
        }

        .related-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.25rem;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--lightline);
            padding-bottom: 1rem;
            margin-bottom: 1.75rem;
        }

        .related-eyebrow {
            display: block;
            color: var(--gold);
            font-size: .78rem;
            letter-spacing: .16em;
            margin-bottom: .3rem;
        }

        .related-title {
            font-size: clamp(1.4rem, 2.6vw, 2rem);
            font-weight: 800;
            margin-bottom: 0;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .story-card {
            background: var(--paper);
            border: 1px solid var(--lightline);
            border-radius: var(--radius);
            transition: transform .28s ease, box-shadow .28s ease;
            overflow: hidden;
            text-decoration: none;
            color: var(--ink);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .story-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lift);
            color: var(--ink);
            border-color: rgba(187, 140, 82, 0.32);
        }

        .story-card .story-media {
            position: relative;
            aspect-ratio: 16 / 8;
            overflow: hidden;
            background: #F0E8DE;
        }

        .story-card .story-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease-out;
        }

        .story-card:hover .story-media img {
            transform: scale(1.04);
        }

        .story-info {
            display: flex;
            flex-direction: column;
            padding: 1.05rem 1.15rem 1.25rem;
            flex: 1;
        }

        .story-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: .75rem;
            margin-bottom: .55rem;
        }

        .story-cat {
            background: #F3E9DF;
            border-radius: 40px;
            font-size: .78rem;
            color: var(--terracotta);
            padding: .18rem .75rem;
            font-weight: 600;
        }

        .story-date {
            color: var(--weak);
            font-size: .8rem;
        }

        .story-info h3 {
            font-size: 1.06rem;
            line-height: 1.55;
            font-weight: 700;
            margin-bottom: .4rem;
        }

        .story-excerpt {
            font-size: .9rem;
            color: var(--muted);
            line-height: 1.7;
        }

        @media (min-width: 768px) {
            .story-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .story-grid .story-wide {
                grid-column: span 2;
            }

            .story-wide .story-card {
                flex-direction: row;
                align-items: stretch;
            }

            .story-wide .story-media {
                width: 42%;
                flex: 0 0 42%;
                aspect-ratio: unset;
                min-height: 190px;
            }

            .story-wide .story-info {
                justify-content: center;
            }
        }

        @media (min-width: 1200px) {
            .story-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .story-grid .story-wide {
                grid-column: span 2;
            }
        }

        /* CTA 区块 */
        .cta-panel {
            position: relative;
            background: linear-gradient(120deg, rgba(27, 58, 55, 0.92), rgba(36, 79, 76, 0.94)), url('/assets/images/backpic/back-1.webp') center / cover;
            border-radius: 24px;
            padding: clamp(2.2rem, 5vw, 4.5rem);
            color: #F5EDE4;
            margin-top: var(--section-space);
            overflow: hidden;
            border: 1px solid rgba(187, 140, 82, 0.2);
        }

        .cta-panel::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 260px;
            height: 260px;
            border: 1px solid rgba(245, 237, 228, 0.12);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-panel h2 {
            font-size: clamp(1.55rem, 3vw, 2.4rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: .75rem;
        }

        .cta-panel p {
            color: rgba(245, 237, 228, 0.78);
            max-width: 720px;
            line-height: 1.85;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: .9rem;
            margin-top: 1.6rem;
        }

        .cta-buttons .btn-reserve {
            background: var(--gold);
            color: var(--ink);
            border: 0;
        }

        .cta-buttons .btn-reserve:hover {
            background: #d3a05f;
            color: var(--ink);
        }

        .cta-safe-note {
            font-size: .82rem;
            color: rgba(245, 237, 228, 0.65);
            display: flex;
            align-items: center;
            gap: .35rem;
            margin-top: 1.2rem;
        }

        /* 页脚 */
        .site-footer {
            background: var(--pine-deep);
            color: rgba(245, 237, 228, 0.78);
            margin-top: 0;
        }

        .footer-main {
            padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: .7rem;
            margin-bottom: 1.1rem;
        }

        .footer-brand .brand-seal {
            background: var(--terracotta);
        }

        .footer-brand .brand-name {
            font-size: 1.55rem;
        }

        .foot-about {
            max-width: 460px;
            line-height: 1.85;
            color: rgba(245, 237, 228, 0.68);
            font-size: .95rem;
            margin-top: .25rem;
        }

        .footer-heading {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: .5rem;
            margin-bottom: 1.4rem;
        }

        .footer-heading::before {
            content: "";
            width: 18px;
            height: 3px;
            border-radius: 2px;
            background: var(--gold);
        }

        .footer-links,
        .footer-contact {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: .68rem;
        }

        .footer-links a {
            color: rgba(245, 237, 228, 0.72);
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            font-size: .94rem;
            padding: .2rem 0;
        }

        .footer-links a i {
            font-size: .7rem;
            color: rgba(187, 140, 82, 0.55);
            transition: transform .2s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-links a:hover i {
            transform: translateX(3px);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: .6rem;
            margin-bottom: .85rem;
            font-size: .92rem;
            line-height: 1.7;
        }

        .footer-contact i {
            color: var(--gold);
            font-size: 1rem;
            margin-top: .05rem;
        }

        .copyright-bar {
            border-top: 1px solid rgba(245, 237, 228, 0.08);
            padding: 1.2rem 0;
            font-size: .85rem;
            color: rgba(245, 237, 228, 0.55);
            text-align: center;
        }

        @media (max-width: 991.98px) {
            .nav-links {
                flex-direction: column;
                align-items: flex-start;
                gap: .2rem;
                margin-right: 0 !important;
                padding: 1rem 0;
                width: 100%;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                width: 100%;
                padding: .85rem .9rem;
                border-radius: 10px;
                border: 0;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links a:hover,
            .nav-links a.active {
                background: #F6EEE4;
                color: var(--terracotta);
            }

            .navbar-collapse {
                margin-top: .8rem;
                border-top: 1px solid var(--lightline);
                padding-top: .5rem;
            }

            .navbar-collapse .nav-cta {
                margin: .8rem 0 1rem .9rem;
            }
        }

        @media (max-width: 767.98px) {
            .top-strip {
                font-size: .78rem;
            }

            .top-tools .top-link-text {
                display: none;
            }

            .top-seal {
                padding: .15rem .5rem;
                font-size: .7rem;
            }

            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .article-shell {
                border-radius: 16px;
                padding: 1.2rem;
            }

            .article-page {
                padding-bottom: 3rem;
            }

            .story-grid {
                grid-template-columns: 1fr;
            }

            .story-grid .story-wide {
                grid-column: span 1;
            }

            .story-wide .story-card,
            .story-card {
                flex-direction: column;
            }

            .story-wide .story-media {
                width: 100%;
                aspect-ratio: 16 / 9;
                flex: none;
                min-height: 0;
            }

            .cta-panel {
                border-radius: 16px;
                padding: 1.8rem 1.2rem;
            }

            .cta-buttons .btn-reserve,
            .cta-buttons .btn-ghost {
                width: 100%;
            }

            .crumb-bar {
                font-size: .82rem;
            }

            .footer-heading {
                margin-top: .5rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }

/* roulang page: category3 */
:root {
            --c-primary: #A64A38;
            --c-primary-deep: #7E3427;
            --c-primary-dark: #5B251B;
            --c-pine: #244F4C;
            --c-pine-deep: #1B3A37;
            --c-gold: #BB8C52;
            --c-bg: #F7F2EA;
            --c-surface: #FFFCF8;
            --c-ink: #2F2925;
            --c-muted: #6B5D55;
            --c-weak: #8C817A;
            --c-line: rgba(95, 70, 55, 0.16);
            --c-line-gold: rgba(190, 150, 95, 0.35);
            --round-sm: 6px;
            --round-md: 14px;
            --round-lg: 18px;
            --shadow-card: 0 4px 10px rgba(70, 40, 20, 0.05);
            --shadow-hover: 0 16px 36px rgba(70, 40, 20, 0.11);
            --ease: 0.26s ease-out;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

       html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "HarmonyOS Sans", "MiSans", "Noto Sans CJK SC", "Source Han Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--c-bg);
            color: var(--c-ink);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--ease);
        }

        img {
            max-width: 100%;
            height: auto;
            border: 0;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ============ 导航 ============ */
        .main-navbar {
            background: rgba(255, 252, 248, 0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--c-line);
            padding-top: 0;
            padding-bottom: 0;
            min-height: 72px;
        }

        .main-navbar.sticky-top {
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-inner {
            gap: 16px;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        .navbar-brand:hover,
        .navbar-brand:focus {
            color: inherit;
        }

        .mark-red {
            display: inline-flex;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            background: var(--c-primary);
            border-radius: 8px 8px 8px 2px;
            color: #fff;
            font-weight: 800;
            font-size: 20px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
        }

        .brand-type {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-name {
            font-weight: 800;
            font-size: 21px;
            letter-spacing: -0.01em;
            color: var(--c-ink);
        }

        .brand-name small {
            font-size: 15px;
            font-weight: 700;
            color: var(--c-primary);
        }

        .brand-sub {
            font-size: 11px;
            color: var(--c-muted);
            letter-spacing: 0.14em;
            margin-top: 3px;
        }

        #navMenu .nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 26px;
        }

        #navMenu .nav-links a {
            display: inline-block;
            position: relative;
            padding: 25px 2px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--c-ink);
            white-space: nowrap;
        }

        #navMenu .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 13px;
            height: 2px;
            width: 0;
            border-radius: 2px;
            background-color: var(--c-gold);
            transition: width var(--ease);
        }

        #navMenu .nav-links a:hover,
        #navMenu .nav-links a:focus,
        #navMenu .nav-links a.active {
            color: var(--c-primary);
        }

        #navMenu .nav-links a:hover::after,
        #navMenu .nav-links a:focus::after,
        #navMenu .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            background: var(--c-primary);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--round-sm);
            border: 1px solid transparent;
            transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
        }

        .nav-cta:hover,
        .nav-cta:focus {
            background: var(--c-primary-deep);
            color: #fff;
            box-shadow: 0 8px 18px rgba(166, 74, 56, 0.22);
            transform: translateY(-1px);
        }

        /* ============ 通用按钮 / 标签 ============ */
        .btn-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 46px;
            padding: 10px 26px;
            border-radius: var(--round-sm);
            border: 1px solid var(--c-primary);
            background: var(--c-primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            transition: background var(--ease), transform var(--ease), border-color var(--ease), box-shadow var(--ease);
        }

        .btn-main:hover {
            background: var(--c-primary-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(90, 37, 27, 0.2);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 9px 20px;
            border-radius: var(--round-sm);
            background: transparent;
            border: 1px solid var(--c-gold);
            color: var(--c-primary-deep);
            font-size: 15px;
            font-weight: 600;
            transition: background var(--ease), border-color var(--ease), transform var(--ease);
        }

        .btn-ghost:hover {
            background: rgba(187, 140, 82, 0.1);
            color: var(--c-primary-dark);
            transform: translateY(-1px);
        }

        .tag-line {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--c-gold);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .tag-line::before {
            content: "";
            width: 24px;
            height: 2px;
            background: var(--c-gold);
            border-radius: 2px;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 12px;
            border-radius: 100px;
            background: rgba(166, 74, 56, 0.1);
            color: var(--c-primary);
            font-size: 12px;
            font-weight: 600;
        }

        .badge-pine {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 12px;
            border-radius: 100px;
            background: rgba(36, 79, 76, 0.12);
            color: var(--c-pine);
            font-size: 12px;
            font-weight: 600;
        }

        .section-pad {
            padding-top: clamp(3.5rem, 8vw, 6rem);
            padding-bottom: clamp(3.5rem, 8vw, 6rem);
        }

        .section-head h2 {
            font-size: clamp(1.7rem, 2.8vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-head .sec-note {
            max-width: 640px;
            color: var(--c-muted);
        }

        /* ============ 内页 hero ============ */
        .page-hero {
            position: relative;
            overflow: hidden;
            background: linear-gradient(120deg, #FFF5E9 0%, #EFE4D2 100%);
        }

        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.2;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(247, 242, 234, 0.96) 0%, rgba(247, 242, 234, 0.72) 55%, rgba(247, 242, 234, 0.3) 100%);
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .page-hero-inner {
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 0 44px;
        }

        .breadcrumb-new {
            display: flex;
            flex-wrap: wrap;
            margin: 0 0 22px;
            padding: 0;
            list-style: none;
            font-size: 13px;
            color: var(--c-weak);
        }

        .breadcrumb-new li {
            display: inline-flex;
            align-items: center;
        }

        .breadcrumb-new li + li::before {
            content: "/";
            margin: 0 9px;
            color: rgba(95, 70, 55, 0.3);
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 15px;
            border-radius: 100px;
            background: rgba(36, 79, 76, 0.1);
            color: var(--c-pine);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .page-hero h1 {
            font-size: clamp(1.9rem, 4vw, 3.1rem);
            font-weight: 800;
            letter-spacing: -0.01em;
            line-height: 1.26;
            margin: 0 0 18px;
            color: var(--c-ink);
        }

        .page-hero h1 .from-brand {
            color: var(--c-primary);
        }

        .page-hero .lead-main {
            max-width: 680px;
            margin: 0 0 22px;
            font-size: 16px;
            color: #51443D;
        }

        .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            margin: 0;
            padding: 18px 0 0;
            border-top: 1px solid var(--c-line);
        }

        .hero-metrics li {
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            font-size: 14px;
            color: var(--c-muted);
        }

        .hero-metrics strong {
            font-size: 15px;
            color: var(--c-primary-dark);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* ============ 一栏大项：规则内容列表 ============ */
        .rules-rail {
            background: var(--c-surface);
            border-radius: 18px;
            border: 1px solid var(--c-line);
            box-shadow: var(--shadow-card);
        }

        .rail-item {
            padding: 26px 24px;
            border-bottom: 1px solid var(--c-line);
            transition: background 0.2s ease;
        }

        .rail-item:last-child {
            border-bottom: 0;
        }

        .rail-item:hover {
            background: #FDF6EC;
        }

        .rail-index {
            font-size: 24px;
            font-weight: 800;
            color: var(--c-gold);
            line-height: 1;
        }

        .rail-title {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .rail-desc p {
            margin: 0;
            color: var(--c-muted);
            font-size: 15px;
        }

        /* ============ 错落宫格 ============ */
        .stagger-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 168px;
            gap: 16px;
            align-items: stretch;
        }

        .stagger-grid > .mosaic-card {
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            border: 1px solid var(--c-line);
            padding: 24px;
            background: var(--c-surface);
            min-width: 0;
        }

        .stagger-grid > .mosaic-card.big-visual {
            grid-column: span 2;
            grid-row: span 2;
            padding: 0;
            border: 0;
        }

        .mosaic-card.big-visual img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .big-visual .visual-copy {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 60px 24px 22px;
            background: linear-gradient(180deg, rgba(27, 58, 55, 0) 0%, rgba(27, 58, 55, 0.72) 68%, rgba(27, 58, 55, 0.88) 100%);
            color: #fff;
        }

        .visual-copy strong {
            font-size: 19px;
            display: block;
            margin-bottom: 4px;
        }

        .visual-copy span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
        }

        .mosaic-card.card-quote {
            background: #F7EFE2;
        }

        .mosaic-card.card-quote::before {
            content: "“";
            position: absolute;
            right: 14px;
            top: 4px;
            font-size: 64px;
            line-height: 1;
            color: var(--c-gold);
            opacity: 0.35;
        }

        .mosaic-card.card-dark {
            background: var(--c-pine);
            border-color: var(--c-pine);
            color: #F4EDE5;
        }

        .mosaic-card.card-dark .mosaic-kicker {
            color: rgba(255, 255, 255, 0.7);
        }

        .mosaic-kicker {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--c-gold);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .mosaic-card .mosaic-main {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.55;
        }

        .mosaic-card .mosaic-extra {
            margin-top: auto;
            font-size: 13px;
            color: var(--c-muted);
        }

        .mosaic-card.card-dark .mosaic-extra,
        .mosaic-card.card-dark .mosaic-main {
            color: #fff;
        }

        .mosaic-card.card-plain {
            background: #FDF8F1;
        }

        .mosaic-note {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin: 0;
            padding: 0;
        }

        .mosaic-note li {
            list-style: none;
            display: flex;
            justify-content: space-between;
            gap: 14px;
            font-size: 13px;
            border-bottom: 1px dashed var(--c-line);
            padding-bottom: 8px;
        }

        .mosaic-note li:last-child {
            border-bottom: 0;
        }

        .mosaic-note li span {
            color: var(--c-muted);
        }

        .mosaic-note li strong {
            color: var(--c-primary-deep);
        }

        /* ============ 领取流程 ============ */
        .process-section {
            background: var(--c-surface);
            border-top: 1px solid var(--c-line);
            border-bottom: 1px solid var(--c-line);
        }

        .process-item {
            position: relative;
            padding: 22px 20px 22px 56px;
            min-height: 140px;
            background: #FDF8F2;
            border: 1px solid rgba(95, 70, 55, 0.1);
            border-radius: 16px;
        }

        .process-no {
            position: absolute;
            left: 16px;
            top: 20px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--c-primary);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .process-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 7px;
        }

        .process-item p {
            margin: 0;
            font-size: 14px;
            color: var(--c-muted);
        }

        /* ============ FAQ ============ */
        .faq-wrap {
            display: grid;
            grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
            gap: 36px;
            align-items: start;
        }

        .faq-heading h2 {
            font-size: clamp(1.7rem, 2.8vw, 2.3rem);
            font-weight: 700;
            line-height: 1.3;
        }

        .faq-contact-route {
            display: flex;
            gap: 10px;
            align-items: center;
            border-left: 4px solid var(--c-gold);
            padding-left: 16px;
            margin-top: 20px;
        }

        .faq-accordion .accordion-item {
            background: transparent;
            border: 0;
            border-bottom: 1px solid var(--c-line);
            border-radius: 0 !important;
        }

        .faq-accordion .accordion-button {
            background: transparent;
            color: var(--c-ink);
            font-size: 16px;
            font-weight: 700;
            padding: 20px 44px 20px 16px;
            box-shadow: none;
            position: relative;
        }

        .faq-accordion .accordion-button::marker,
        .faq-accordion .accordion-button:focus {
            outline: none;
            box-shadow: none;
        }

        .faq-accordion .accordion-button::before {
            content: "Q";
            position: absolute;
            left: -3px;
            top: 22px;
            font-size: 0;
        }

        .faq-accordion .accordion-item {
            position: relative;
            padding-left: 30px;
        }

        .faq-accordion .accordion-item::before {
            content: "Q";
            position: absolute;
            left: 0;
            top: 18px;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: rgba(187, 140, 82, 0.13);
            color: var(--c-gold);
            font-size: 12px;
            font-weight: 800;
        }

        .faq-accordion .accordion-button::after {
            background-image: none;
            background-size: 12px;
            width: 18px;
            height: 18px;
            margin: 0;
            position: absolute;
            right: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(95, 70, 55, 0.3);
            border-radius: 4px;
            font-family: "Bootstrap Icons";
            content: "\F282";
            line-height: 1;
            color: var(--c-ink);
            transition: transform 0.25s ease;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            content: "\F286";
            transform: rotate(0deg);
            border-color: var(--c-primary);
            color: var(--c-primary);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--c-primary);
            background: transparent;
            box-shadow: none;
        }

        .faq-accordion .accordion-body {
            padding: 4px 4px 22px 18px;
            color: var(--c-muted);
            font-size: 15px;
        }

        /* ============ CTA + 表单 ============ */
        .apply-cta {
            position: relative;
            overflow: hidden;
            background: var(--c-pine);
            color: var(--c-surface);
        }

        .apply-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.14;
        }

        .apply-cta .container {
            position: relative;
            z-index: 1;
        }

        .apply-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            line-height: 1.35;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .apply-description {
            color: rgba(255, 255, 255, 0.82);
            max-width: 420px;
            margin-bottom: 0;
        }

        .cta-panel {
            background: #ffffff;
            border-radius: 18px;
            padding: 28px;
            color: var(--c-ink);
            box-shadow: 0 22px 38px rgba(0, 0, 0, 0.18);
        }

        .cta-panel .form-label {
            font-size: 13px;
            margin-bottom: 5px;
            color: var(--c-muted);
        }

        .cta-panel .form-control {
            border: 0;
            border-bottom: 2px solid rgba(95, 70, 55, 0.18);
            border-radius: 0;
            background: #FBF7F0;
            padding: 10px 14px;
            color: var(--c-ink);
            font-size: 15px;
        }

        .cta-panel .form-control:focus {
            box-shadow: none;
            border-bottom-color: var(--c-primary);
            background: #F7F0E6;
        }

        .form-check-input {
            width: 18px;
            height: 18px;
            margin-top: 0;
            border: 1px solid #B7A48D;
            background: #fff;
            border-radius: 4px;
        }

        .form-check-input:checked {
            background-color: var(--c-primary);
            border-color: var(--c-primary);
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 4px rgba(166, 74, 56, 0.18);
            border-color: var(--c-primary);
        }

        .privacy-note {
            font-size: 12px;
            color: var(--c-weak);
        }

        .btn-apply {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: var(--c-primary);
            border: 1px solid var(--c-primary);
            color: #ffffff;
            min-height: 48px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-apply:hover,
        .btn-apply:focus {
            background: var(--c-primary-deep);
            border-color: var(--c-primary-deep);
            color: #fff;
            box-shadow: 0 8px 18px rgba(126, 52, 39, 0.18);
        }

        /* ============ 页脚 ============ */
        .site-footer {
            background: var(--c-pine-deep);
            color: #EADFD3;
        }

        .footer-main {
            padding-top: 56px;
            padding-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
        }

        .footer-brand .mark-red {
            width: 40px;
            height: 40px;
            font-size: 21px;
        }

        .footer-brand .brand-name {
            color: #F5EDE4;
            font-size: 22px;
        }

        .footer-brand .brand-sub {
            color: #AFA49A;
        }

        .foot-about {
            font-size: 15px;
            line-height: 1.85;
            margin-top: 18px;
            max-width: 410px;
            color: rgba(245, 237, 228, 0.8);
        }

        .footer-heading {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-links,
        .footer-contact {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li,
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
            font-size: 14px;
            color: #DACFC2;
        }

        .footer-links a {
            color: rgba(245, 237, 228, 0.72);
        }

        .footer-links a:hover {
            color: var(--c-gold);
        }

        .footer-contact i {
            color: var(--c-gold);
            font-size: 15px;
        }

        .copyright-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 13px;
            color: rgba(245, 237, 228, 0.57);
            padding: 16px 0;
        }

        /* ============ Focus 可访问性 ============ */
        a,
        button,
        .accordion-button,
        .navbar-toggler,
        input,
        textarea {
            outline: none;
        }

        a:focus-visible,
        button:focus-visible,
        .accordion-button:focus-visible {
            outline: 2px solid var(--c-gold);
            outline-offset: 3px;
        }

        /* ============ 移动端 ============ */
        @media (max-width: 991px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
            #navMenu .nav-links {
                align-items: stretch;
                gap: 0;
                flex-direction: column;
                padding: 8px 0 4px;
            }
            #navMenu .nav-links a {
                padding: 12px 2px;
                white-space: normal;
                border-bottom: 1px solid rgba(95, 70, 55, 0.08);
            }
            #navMenu .nav-links a::after {
                display: none;
            }
            #navMenu .nav-links a.active {
                color: var(--c-primary);
                background: rgba(166, 74, 56, 0.06);
            }
            #navMenu .collapse .nav-cta {
                justify-content: center;
                margin: 16px 0 12px !important;
            }
            .main-navbar {
                min-height: 64px;
            }
            .navbar-toggler {
                border: 0;
                color: var(--c-primary);
                padding: 8px 12px;
                font-size: 24px;
                line-height: 1;
                background: transparent;
                border-radius: 8px;
            }
            .navbar-toggler:focus {
                box-shadow: none;
            }
            .stagger-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 160px;
            }
            .faq-wrap {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .page-hero-inner {
                min-height: auto;
                padding-top: 44px;
                padding-bottom: 40px;
            }
            .hero-metrics {
                gap: 12px;
            }
            .hero-metrics li {
                font-size: 13px;
            }
            .hero-metrics strong {
                font-size: 13px;
            }
            .stagger-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }
            .stagger-grid > .mosaic-card.big-visual {
                grid-column: auto;
                grid-row: auto;
                min-height: 300px;
            }
            .stagger-grid > .mosaic-card {
                padding: 22px;
                min-height: 160px;
            }
            .section-pad {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
            .apply-cta .cta-panel {
                padding: 22px;
            }
        }

        @media (max-width: 360px) {
            .brand-sub {
                display: none;
            }
            .brand-name {
                font-size: 18px;
            }
            .mark-red {
                width: 34px;
                height: 34px;
                font-size: 18px;
            }
        }

/* roulang page: category2 */
:root{
  --main:#A64A38;
  --main-dark:#7E3427;
  --main-darker:#5B251B;
  --second:#244F4C;
  --second-deep:#1B3A37;
  --gold:#BB8C52;
  --bg:#F7F2EA;
  --surface:#FFFCF8;
  --text:#2F2925;
  --muted:#6B5D55;
  --faint:#8C817A;
  --line:rgba(95,70,55,.16);
  --line-gold:rgba(190,150,95,.35);
  --radius:16px;
  --radius-sm:6px;
  --shadow:0 8px 24px rgba(70,40,20,.08);
  --shadow-hover:0 16px 36px rgba(70,40,20,.12);
  --section-space:clamp(3.5rem, 8vw, 6rem);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;scroll-padding-top:92px;}
body{
  margin:0;
  font-family:"PingFang SC","HarmonyOS Sans","MiSans","Noto Sans CJK SC","Source Han Sans SC",sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size:1rem;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--text);text-decoration:none;transition:color .25s ease,background .25s ease,border-color .25s ease;}
a:hover{color:var(--main);}
button{background:none;border:none;cursor:pointer;font-family:inherit;}
input,select,textarea{font-family:inherit;font-size:1rem;}
p,h1,h2,h3,h4,ul,ol,figure{margin:0;padding:0;}
ul,ol{list-style:none;}
::selection{background:rgba(187,140,82,.22);color:#2F2925;}
:focus-visible{outline:3px solid rgba(187,140,82,.4);outline-offset:2px;border-radius:4px;}

/* 顶栏 */
.topbar{
  background:#1C2A27;
  color:#D6C6B7;
  font-size:.8125rem;
  border-bottom:1px solid var(--line-gold);
}
.topbar .topbar-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.topbar i{color:var(--gold);margin-right:6px;}
.topbar-link{color:#F5EDE4;border-bottom:1px solid rgba(187,140,82,.55);padding:2px 0;font-weight:600;}
.topbar-link i{margin:0 0 0 6px;}
.topbar-link:hover{color:var(--gold);}

/* 主导航 */
.main-navbar{
  background:rgba(255,252,248,.94);
  border-bottom:1px solid var(--line);
  padding:0;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.navbar-inner{min-height:76px;flex-wrap:wrap;}
.navbar-brand{display:inline-flex;align-items:center;gap:10px;margin:0;padding:0;}
.mark-red{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  background:var(--main);
  color:#fff;
  font-size:1.25rem;
  font-weight:800;
  border-radius:10px 10px 10px 3px;
  position:relative;
  box-shadow:0 4px 12px rgba(166,74,56,.25);
}
.mark-red::after{
  content:"";
  position:absolute;
  right:-5px;
  top:-5px;
  width:11px;
  height:11px;
  border:2px solid var(--gold);
  border-radius:50%;
  background:var(--surface);
}
.brand-type{display:flex;flex-direction:column;line-height:1.15;}
.brand-name{font-weight:800;font-size:1.3rem;color:var(--text);letter-spacing:.01em;}
.brand-name small{font-size:.72em;color:var(--main);font-weight:700;margin-left:1px;}
.brand-sub{font-size:.7rem;color:var(--muted);letter-spacing:.12em;margin-top:2px;}
.nav-links{
  display:flex;
  align-items:center;
  gap:clamp(16px,2vw,32px);
  flex-wrap:wrap;
  margin-bottom:0;
}
.nav-links > li a{
  display:inline-block;
  position:relative;
  padding:8px 0;
  font-weight:600;
  color:var(--text);
  white-space:nowrap;
}
.nav-links > li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:3px;
  width:100%;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .25s ease;
}
.nav-links > li a:hover,
.nav-links > li a.active{color:var(--main);}
.nav-links > li a:hover::after,
.nav-links > li a.active::after{transform:scaleX(1);transform-origin:left;}
.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--main);
  color:#fff;
  font-weight:700;
  padding:10px 22px;
  border-radius:var(--radius-sm);
  box-shadow:0 4px 14px rgba(166,74,56,.22);
  transition:background .25s ease,transform .2s ease,box-shadow .25s ease;
  line-height:1.4;
}
.nav-cta:hover{background:var(--main-dark);color:#fff;transform:translateY(-2px);box-shadow:0 8px 22px rgba(126,52,39,.25);}
.navbar-toggler{border:none;font-size:1.7rem;color:var(--text);line-height:1;padding:4px 8px;}
.navbar-toggler:focus{box-shadow:none;outline:2px solid rgba(187,140,82,.4);}

/* 首页内页通用 Hero */
.page-hero{
  position:relative;
  color:var(--text);
  background:
    linear-gradient(120deg, rgba(247,242,234,.96) 0%, rgba(255,252,248,.88) 46%, rgba(36,79,76,.66) 100%),
    url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  padding:clamp(3rem,7vw,5.5rem) 0 clamp(3rem,6.5vw,5rem);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-120px;
  width:360px;
  height:360px;
  border:2px solid var(--line-gold);
  border-radius:50%;
  pointer-events:none;
}
.page-hero .container{position:relative;z-index:2;}
.breadcrumb-line{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.875rem;
  color:var(--muted);
  margin-bottom:22px;
}
.breadcrumb-line a{color:var(--muted);}
.breadcrumb-line a:hover{color:var(--main);}
.breadcrumb-line span{color:var(--main);font-weight:600;}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  background:rgba(187,140,82,.13);
  border:1px solid var(--line-gold);
  color:var(--main-dark);
  padding:5px 14px 5px 10px;
  border-radius:100px;
  font-size:.8125rem;
  font-weight:700;
  letter-spacing:.06em;
  gap:6px;
  margin-bottom:18px;
}
.hero-kicker i{color:var(--gold);font-size:1rem;}
.page-hero h1{
  font-size:clamp(2.1rem,4vw,3rem);
  font-weight:800;
  color:var(--text);
  line-height:1.2;
  max-width:840px;
  margin-bottom:1.1rem;
  letter-spacing:-.01em;
}
.page-hero h1 span.red{color:var(--main);}
.hero-lead{
  font-size:1.05rem;
  color:var(--muted);
  max-width:680px;
  line-height:1.85;
  margin-bottom:1.8rem;
}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px;}
.btn-main{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--main);
  color:#fff;
  font-weight:700;
  border:1px solid var(--main);
  padding:13px 28px;
  border-radius:var(--radius-sm);
  transition:all .25s ease;
  box-shadow:0 6px 18px rgba(166,74,56,.2);
}
.btn-main:hover{background:var(--main-dark);border-color:var(--main-dark);color:#fff;transform:translateY(-2px);}
.btn-ghost{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 24px;
  font-weight:600;
  background:rgba(255,255,255,.5);
  border:1px solid var(--line-gold);
  border-radius:var(--radius-sm);
  color:var(--text);
  transition:all .25s ease;
}
.btn-ghost:hover{background:rgba(187,140,82,.08);border-color:var(--gold);color:var(--main-dark);}
.hero-services{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.875rem;
  align-items:center;
}
.hero-services span{display:inline-flex;align-items:center;gap:6px;}
.hero-services i{color:var(--gold);font-size:1.1rem;}
.hero-fact{
  background:var(--second-deep);
  color:#F5EDE4;
  border-radius:20px;
  padding:30px 28px;
  position:relative;
  box-shadow:0 18px 40px rgba(20,40,38,.2);
}
.hero-fact::before{
  content:"";
  position:absolute;
  top:-10px;
  left:32px;
  width:34px;
  height:34px;
  background:var(--main);
  border-radius:10px 2px 10px 2px;
  z-index:0;
}
.hero-fact-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--gold);
  margin-bottom:15px;
  font-size:.92rem;
}
.hero-fact-item{
  border-top:1px solid rgba(245,237,228,.14);
  padding-top:14px;
  margin-top:14px;
}
.hero-fact-item strong{display:block;font-size:1.18rem;color:#fff;margin-bottom:3px;}
.hero-fact-item span{display:block;font-size:.86rem;color:#BCB09F;}

/* 通用容器与版心 */
.section{padding:var(--section-space) 0;}
.section-alt{background:var(--surface);}
.container{max-width:1200px;}
.section-head{max-width:820px;margin-bottom:2.8rem;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:.8125rem;
  font-weight:700;
  color:var(--gold);
  letter-spacing:.08em;
  margin-bottom:12px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:3px;
  background:var(--gold);
  border-radius:2px;
}
.section-head.center .eyebrow::before,
.eyebrow.center::before{background:transparent;}
.section-head h2{
  font-size:clamp(1.65rem,2.6vw,2.25rem);
  font-weight:800;
  line-height:1.3;
  letter-spacing:-.01em;
  margin-bottom:12px;
}
.section-head p{color:var(--muted);font-size:1rem;line-height:1.8;}

/* 参与准备区 */
.prep-item{
  height:100%;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  position:relative;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.prep-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:var(--line-gold);}
.prep-card-lg{background:var(--second);color:#F5EDE4;border:none;}
.prep-card-lg:hover{border-color:rgba(255,255,255,.4);}
.prep-card-lg p,.prep-card-lg h3{color:#F5EDE4;}
.prep-card-lg .prep-mark{background:rgba(255,255,255,.15);color:#fff;}
.prep-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  background:var(--main);
  color:#fff;
  font-weight:800;
  font-size:1.05rem;
  margin-bottom:18px;
}
.prep-item h3{font-size:1.28rem;font-weight:700;margin-bottom:8px;}
.prep-item p{line-height:1.7;font-size:.95rem;color:var(--muted);}
.prep-card-lg .prep-item p{color:#D8CCC0;}
.prep-icon{position:absolute;right:18px;top:18px;font-size:1.4rem;color:var(--line-gold);}

/* 时间轴 / 流程 */
.timeline-section{background:var(--bg);}
.timeline{position:relative;padding:1rem 0;max-width:1080px;margin:0 auto;}
.timeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:2px;
  background:var(--line-gold);
  transform:translateX(-50%);
}
.tl-row{
  display:grid;
  grid-template-columns:1fr 76px 1fr;
  column-gap:28px;
  padding:30px 0;
  position:relative;
}
.tl-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 28px;
  transition:box-shadow .25s ease,transform .25s ease,border-color .25s ease;
  position:relative;
}
.tl-card::before{
  content:"";
  position:absolute;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--surface);
  border:3px solid var(--gold);
  display:none;
}
.tl-card:hover{box-shadow:var(--shadow-hover);border-color:var(--line-gold);transform:translateY(-2px);}
.tl-step{
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  color:var(--gold);
  display:block;
  margin-bottom:14px;
}
.tl-card h3{font-size:1.3rem;font-weight:700;margin-bottom:10px;}
.tl-card p{color:var(--muted);line-height:1.8;font-size:.95rem;}
.tl-node{
  grid-column:2;
  grid-row:1;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.tl-dot{
  width:22px;
  height:22px;
  background:var(--main);
  border:5px solid var(--bg);
  box-shadow:0 0 0 2px var(--gold),0 4px 12px rgba(166,74,56,.28);
  border-radius:50%;
  position:relative;
  z-index:2;
}
.tl-empty{grid-column:3;grid-row:1;display:block;}
.tl-row.odd .tl-card{grid-column:1;grid-row:1;}
.tl-row.odd .tl-empty{grid-column:3;}
.tl-row.even .tl-card{grid-column:3;grid-row:1;}
.tl-row.even .tl-empty{grid-column:1;}

/* 适用场次 */
.scenes-section{background:var(--surface);}
.scene-table{
  border-top:2px solid var(--main);
  background:var(--surface);
  border-radius:0 0 16px 16px;
  box-shadow:var(--shadow);
}
.scene-row{
  display:grid;
  grid-template-columns:110px 1fr 150px;
  gap:22px;
  align-items:start;
  padding:26px 30px;
  border-bottom:1px solid var(--line);
  transition:background .25s ease;
}
.scene-row:last-child{border-bottom:none;}
.scene-row:hover{background:#FAF5ED;}
.scene-row .scene-kind{
  display:inline-block;
  padding:6px 12px;
  border-radius:100px;
  background:rgba(166,74,56,.08);
  border:1px solid rgba(166,74,56,.22);
  color:var(--main);
  font-size:.78rem;
  font-weight:700;
  text-align:center;
  white-space:nowrap;
}
.scene-row h3{font-size:1.1rem;font-weight:700;margin-bottom:6px;}
.scene-row p{color:var(--muted);line-height:1.8;font-size:.93rem;}
.scene-time{color:var(--faint);font-size:.88rem;text-align:right;display:flex;align-items:center;gap:6px;justify-content:flex-end;}
.scene-time i{color:var(--gold);}

/* 通栏引文 */
.quote-section{
  background:
    linear-gradient(rgba(36,79,76,.94),rgba(27,58,55,.96)),
    url('/assets/images/backpic/back-2.png') center/cover no-repeat;
}
.quote-block{
  max-width:960px;
  margin:0 auto;
  text-align:center;
  color:#F5EDE4;
}
.quote-block .quote-mark{
  display:inline-block;
  font-size:4rem;
  line-height:.8;
  color:var(--gold);
  font-family:Georgia,serif;
  margin-bottom:10px;
}
.quote-block blockquote{
  font-size:clamp(1.1rem,2.2vw,1.5rem);
  line-height:1.9;
  font-weight:600;
  color:#FFF6EC;
  border:none;
}
.quote-block .quote-author{
  margin-top:18px;
  color:var(--gold);
  letter-spacing:.12em;
  font-size:.85rem;
  font-weight:700;
}

/* 入场准备 */
.notice-section{background:var(--bg);}
.notice-figure{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  height:100%;
  min-height:380px;
}
.notice-figure img{width:100%;height:100%;object-fit:cover;}
.notice-figure .fig-caption{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  background:rgba(27,58,55,.84);
  color:#F5EDE4;
  font-size:.85rem;
  padding:14px 16px;
  border-radius:12px;
  backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  gap:8px;
}
.notice-figure .fig-caption i{color:var(--gold);}
.notice-list{display:grid;gap:15px;}
.notice-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 22px 20px 26px;
  display:flex;
  gap:16px;
  position:relative;
  transition:border-color .25s ease,box-shadow .25s ease,transform .25s ease;
}
.notice-card::before{
  content:"";
  position:absolute;
  left:0;
  top:20px;
  bottom:20px;
  width:3px;
  background:var(--main);
  border-radius:3px;
}
.notice-card:hover{box-shadow:var(--shadow);border-color:var(--line-gold);transform:translateX(4px);}
.notice-icon{
  flex:0 0 44px;
  width:44px;
  height:44px;
  background:rgba(166,74,56,.1);
  color:var(--main);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
}
.notice-card h3{font-size:1.04rem;font-weight:700;margin-bottom:4px;}
.notice-card p{color:var(--muted);font-size:.9rem;line-height:1.75;}

/* FAQ */
.faq-section{background:var(--surface);}
.faq-side .faq-help{
  background:var(--second);
  color:#F5EDE4;
  border-radius:var(--radius);
  padding:30px 26px;
  margin-top:20px;
}
.faq-help h3{font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:8px;}
.faq-help p{font-size:.9rem;color:#D4C9BD;line-height:1.75;}
.faq-help a.help-link{
  color:var(--gold);
  border-bottom:1px solid var(--gold);
  font-weight:600;
  font-size:.95rem;
}
.faq-wrap .faq-item{
  border-bottom:1px solid var(--line);
  padding:6px 0 4px;
  transition:background .25s ease;
}
.faq-wrap .faq-item:first-child{border-top:1px solid var(--line);}
.faq-btn{
  width:100%;
  text-align:left;
  padding:18px 8px 18px 26px;
  font-size:1.05rem;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:14px;
  position:relative;
  color:var(--text);
  border-radius:0;
  transition:color .25s ease;
}
.faq-btn:hover{color:var(--main);}
.faq-btn .faq-q-mark{
  color:var(--gold);
  font-weight:800;
  font-size:1.2rem;
  width:24px;
}
.faq-btn .faq-arrow{
  margin-left:auto;
  color:var(--faint);
  transition:transform .3s ease;
  font-size:1rem;
}
.faq-btn[aria-expanded="true"] .faq-arrow{transform:rotate(45deg);color:var(--main);}
.faq-answer-wrap{
  padding:0 0 12px 56px;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.85;
}
.faq-answer-wrap .faq-a-mark{
  color:var(--main-dark);
  font-weight:800;
  margin-right:4px;
}

/* CTA / 表单 */
.cta-section{
  background:
    linear-gradient(rgba(27,58,55,.94),rgba(22,39,36,.96)),
    url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  color:#F5EDE4;
  padding:var(--section-space) 0;
}
.cta-panel{
  background:rgba(255,252,248,.98);
  color:var(--text);
  border-radius:24px;
  padding:clamp(26px,4vw,48px);
  box-shadow:0 24px 60px rgba(10,20,18,.25);
}
.cta-intro h2{
  font-size:clamp(1.7rem,3vw,2.4rem);
  font-weight:800;
  color:#fff;
}
.cta-intro .cta-sub{
  color:#C5B9AB;
  margin-top:10px;
  font-size:1rem;
  max-width:520px;
}
.cta-list{margin-top:28px;display:grid;gap:14px;}
.cta-list li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#E9DDD0;
  font-size:.95rem;
}
.cta-list i{
  color:var(--gold);
  font-size:1.2rem;
}
.cta-list b{color:#fff;font-weight:700;}
.apply-form{
  background:var(--surface);
  border-radius:16px;
  padding:clamp(24px,3vw,36px);
  box-shadow:var(--shadow);
}
.form-title{
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:6px;
  color:var(--text);
}
.form-subtitle{font-size:.88rem;color:var(--muted);margin-bottom:20px;}
.form-item{margin-bottom:16px;}
.form-item label{
  font-size:.82rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:5px;
  display:block;
}
.form-item label span{color:var(--main);}
.apply-input,
.apply-select{
  width:100%;
  background:var(--bg);
  border:1px solid transparent;
  border-bottom:2px solid rgba(95,70,55,.28);
  border-radius:8px 8px 0 0;
  padding:12px 14px;
  font-size:.95rem;
  color:var(--text);
  transition:border-color .25s ease,background .25s ease,box-shadow .25s ease;
}
.apply-input:focus,
.apply-select:focus{
  outline:none;
  border-color:var(--main);
  border-bottom-color:var(--main);
  box-shadow:0 10px 20px -14px rgba(166,74,56,.4);
  background:#FFF8F0;
}
.apply-submit{
  width:100%;
  background:var(--main);
  color:#fff;
  border:1px solid var(--main);
  padding:14px 24px;
  border-radius:8px;
  font-weight:800;
  font-size:1rem;
  transition:all .25s ease;
}
.apply-submit:hover{background:var(--main-dark);transform:translateY(-2px);box-shadow:0 10px 24px rgba(166,74,56,.26);}
.privacy-note{
  display:flex;
  align-items:flex-start;
  gap:6px;
  font-size:.78rem;
  color:var(--faint);
  margin-top:14px;
  line-height:1.55;
}
.privacy-note i{color:var(--gold);font-size:1rem;margin-top:2px;}
.form-success{
  display:none;
  margin-top:14px;
  padding:14px 16px;
  background:#EDF4Eb;
  border-left:4px solid #3E7B5A;
  color:#2C5D40;
  border-radius:6px;
  font-size:.9rem;
}

/* 页脚 */
.site-footer{background:#172725;color:#C5B9AC;}
.footer-main{
  padding:clamp(3rem,6vw,4.5rem) 0 2.5rem;
  background:
    linear-gradient(rgba(23,39,37,.97),rgba(23,39,37,.97)),
    url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:18px;}
.footer-brand .mark-red{width:42px;height:42px;font-size:1.3rem;box-shadow:none;}
.footer-brand .brand-name{color:#fff;}
.footer-brand .brand-sub{color:#A49A8E;}
.foot-about{
  max-width:420px;
  color:#AEA398;
  font-size:.92rem;
  line-height:1.85;
}
.footer-heading{
  color:#fff;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.05em;
  margin-bottom:16px;
  padding-bottom:8px;
  position:relative;
}
.footer-heading::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:28px;
  height:2px;
  background:var(--gold);
}
.footer-links li{margin-bottom:9px;}
.footer-links a{
  color:#B9ADA0;
  font-size:.9rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:all .25s ease;
}
.footer-links a i{font-size:.7rem;color:var(--gold);transition:transform .25s ease;}
.footer-links a:hover{color:var(--gold);transform:translateX(3px);}
.footer-contact li{
  color:#B9ADA0;
  font-size:.9rem;
  display:flex;
  gap:9px;
  margin-bottom:12px;
  align-items:flex-start;
}
.footer-contact i{color:var(--gold);font-size:1.05rem;}
.copyright-bar{
  background:#101B1A;
  border-top:1px solid rgba(255,255,255,.07);
  padding:15px 0;
  text-align:center;
  font-size:.8rem;
  color:#8B8B82;
  letter-spacing:.03em;
}

@media (max-width:991.98px){
  .navbar-inner{min-height:66px;}
  .navbar-collapse{
    background:var(--surface);
    border-top:1px solid var(--line);
    margin-top:.55rem;
    padding:.5rem .2rem 1rem;
  }
  .nav-links{
    flex-direction:column;
    align-items:stretch;
    width:100%;
    gap:0;
    margin-top:8px;
  }
  .nav-links > li{width:100%;}
  .nav-links > li a{
    display:block;
    padding:12px 8px;
    border-bottom:1px solid rgba(95,70,55,.1);
    font-size:1.04rem;
  }
  .nav-links > li a::after{display:none;}
  .nav-cta{
    width:100%;
    justify-content:center;
    margin:14px 0 0;
  }
  .page-hero{padding-bottom:3.2rem;}
  .tl-card{padding:22px;}

  .scene-row{grid-template-columns:1fr;gap:12px;padding:22px;}
  .scene-time{text-align:left;justify-content:flex-start;}
  .notice-figure{min-height:300px;}
}

@media (max-width:767.98px){
  .topbar .topbar-inner{min-height:38px;}
  .topbar .topbar-link span{display:none;}
  .brand-name{font-size:1.15rem;}
  .brand-sub{font-size:.64rem;}
  .page-hero h1{font-size:2rem;}
  .hero-btns .btn-main,.hero-btns .btn-ghost{width:100%;justify-content:center;}
  .section-head h2{font-size:1.5rem;}

  .timeline::before{left:14px;transform:none;}
  .tl-row{
    grid-template-columns:36px 1fr;
    column-gap:16px;
    padding:18px 0;
  }
  .tl-node{grid-column:1;grid-row:1;}
  .tl-empty{display:none;}
  .tl-card{grid-column:2 !important;grid-row:1 !important;padding:20px 18px;}
  .tl-row.even .tl-card{grid-column:2 !important;}
  .tl-dot{width:18px;height:18px;border-width:3px;margin-left:1px;}
  .timeline::before{left:14px;}
  .timeline::before{background:var(--line-gold);}

  .prep-card-lg{margin-bottom:0;}
  .quote-block blockquote{font-size:1rem;}
  .notice-list{margin-top:18px;}
  .faq-answer-wrap{padding-left:36px;}
  .cta-panel{padding:22px;}
  .apply-form{padding:18px;}
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* roulang page: category4 */
:root {
  --clay: #A64A38;
  --clay-dark: #7E3427;
  --clay-deep: #5B251B;
  --pine: #244F4C;
  --pine-deep: #1B3A37;
  --pine-ink: #1A2A27;
  --gold: #BB8C52;
  --bg: #F7F2EA;
  --surface: #FFFCF8;
  --text: #2F2925;
  --text-2: #6B5D55;
  --text-3: #8C817A;
  --cream: #F5EDE4;
  --border: rgba(95, 70, 55, 0.16);
  --border-gold: rgba(190, 150, 95, 0.35);
  --radius: 16px;
  --radius-sm: 6px;
  --shadow: 0 8px 24px rgba(70, 40, 20, 0.08);
  --shadow-hover: 0 16px 36px rgba(70, 40, 20, 0.12);
  --font: "PingFang SC", "HarmonyOS Sans", "MiSans", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--clay);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

a:hover {
  color: var(--clay-dark);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--clay);
  color: #fff;
}

#mainNav {
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  box-shadow: 0 6px 18px rgba(70, 40, 20, 0.04);
  z-index: 1080;
}

#mainNav .navbar-inner {
  align-items: center;
}

#mainNav .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  margin-right: 0;
  padding: 0;
}

#mainNav .navbar-brand:hover {
  color: var(--text);
}

#mainNav .mark-red,
.footer-brand .mark-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--clay);
  border-radius: 6px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

#mainNav .brand-type,
.footer-brand .brand-type {
  display: block;
}

#mainNav .brand-name,
.footer-brand .brand-name {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}

#mainNav .brand-name small,
.footer-brand .brand-name small {
  font-size: 0.72em;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0;
}

#mainNav .brand-sub,
.footer-brand .brand-sub {
  display: block;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 0.12rem;
  color: var(--text-3);
}

.navbar-toggler {
  border: 0;
  color: var(--text);
  padding: 0.3rem 0.45rem;
  box-shadow: none !important;
}

.navbar-toggler .bi {
  font-size: 1.85rem;
  line-height: 1;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  position: relative;
  display: inline-block;
  padding: 0.45rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease-out;
}

.nav-links li a:hover {
  color: var(--clay);
}

.nav-links li a.active {
  color: var(--clay);
  font-weight: 700;
}

.nav-links li a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clay);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--clay);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta i {
  font-size: 1rem;
  line-height: 1;
}

.nav-cta:hover {
  color: #fff;
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.navbar-collapse {
  align-items: center;
}

.category-hero {
  position: relative;
  color: #fff;
  padding: clamp(4.5rem, 10vw, 7rem) 0 3.6rem;
  background-color: var(--pine-deep);
  background-image: linear-gradient(115deg, rgba(26, 42, 39, 0.94) 8%, rgba(36, 79, 76, 0.76) 60%, rgba(36, 79, 76, 0.26) 100%), url("/assets/images/backpic/back-1.webp");
  background-position: center;
  background-size: cover;
}

.hero-breadcrumb {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(245, 237, 228, 0.7);
}

.hero-breadcrumb a {
  color: rgba(245, 237, 228, 0.85);
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero-breadcrumb span {
  color: rgba(245, 237, 228, 0.4);
}

.hero-breadcrumb span.current {
  color: var(--gold);
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 720px;
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 2.2rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  color: var(--cream);
}

.hero-proof i {
  color: var(--gold);
}

.section-block {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.9rem;
}

.section-head p {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: none;
}

.scope-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.scope-list-wrap {
  flex: 1 1 46%;
  min-width: 0;
}

.scope-list {
  margin-top: 0.5rem;
}

.scope-row {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.55rem 0.25rem;
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.scope-row:hover {
  transform: translateX(0.35rem);
  background-color: rgba(247, 242, 234, 0.6);
}

.scope-row .scope-num {
  flex: 0 0 2.7rem;
  font-size: 1.65rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  line-height: 1;
}

.scope-row h3 {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.scope-row p {
  color: var(--text-2);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.scope-row .bi-arrow-right {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--border-gold);
}

.scope-row:hover .bi-arrow-right {
  color: var(--clay);
  transform: translateX(4px);
}

.scope-figure {
  flex: 1 1 38%;
  min-width: 0;
}

.scope-figure .img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1.1rem;
}

.scope-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.scope-figure:hover img {
  transform: scale(1.03);
}

.scope-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.scope-caption strong {
  color: var(--text);
  font-weight: 600;
  display: block;
}

.faq-guide-wrap {
  display: flex;
  gap: 2.8rem;
  align-items: flex-start;
}

.faq-intro {
  flex: 0 0 30%;
  position: sticky;
  top: 6.5rem;
}

.faq-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0.8rem 0 1rem;
}

.faq-intro > p {
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

.faq-intro-list li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.faq-intro-list li i {
  color: var(--gold);
  line-height: 1.4;
}

.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.15rem;
  font-weight: 600;
  color: var(--clay);
}

.faq-contact-link:hover {
  color: var(--clay-dark);
}

.faq-list-col {
  flex: 1 1 70%;
  min-width: 0;
}

.custom-accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 0;
}

.custom-accordion .accordion-button {
  background: transparent;
  color: var(--text);
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  padding: 1.25rem 2.75rem 1.25rem 0.8rem;
  position: relative;
  box-shadow: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.custom-accordion .accordion-button:hover {
  color: var(--clay);
}

.custom-accordion .accordion-button:focus {
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(166, 74, 56, 0.12);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--clay-dark);
}

.custom-accordion .accordion-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  background: transparent;
  border-radius: 99px;
  transition: background-color 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::before {
  background: var(--clay);
}

.custom-accordion .accordion-button::after {
  background-image: none;
  content: "\002B";
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
  transform: none;
  transition: color 0.25s ease, transform 0.25s ease;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.8rem;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "\002B";
  transform: rotate(45deg);
  color: var(--clay);
}

.custom-accordion .accordion-collapse {
  border: 0;
}

.custom-accordion .accordion-body {
  background: #FFF7EE;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 0.9rem 1.2rem 1.15rem 1.4rem;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.85;
}

.step-section {
  background: var(--pine-ink);
  color: var(--cream);
}

.step-section .section-head h2 {
  color: #fff;
}

.step-section .section-head p {
  color: rgba(245, 237, 228, 0.72);
}

.step-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(187, 140, 82, 0.6);
  transform: translateY(-4px);
}

.step-item .step-num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 0.8rem;
}

.step-item h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.step-item p {
  color: rgba(245, 237, 228, 0.72);
  font-size: 0.94rem;
  margin: 0;
}

.contact-relief {
  background: var(--pine-deep);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.relief-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.relief-left {
  flex: 1 1 41%;
  min-width: 0;
}

.relief-left h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0.9rem 0 1.1rem;
}

.relief-left .relief-desc {
  color: rgba(245, 237, 228, 0.78);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

.relief-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--cream);
  font-size: 0.96rem;
  margin-bottom: 0.75rem;
}

.relief-points i {
  color: var(--gold);
  line-height: 1.5;
}

.relief-form-panel {
  flex: 1 1 52%;
  min-width: 0;
  background: var(--surface);
  color: var(--text);
  border-radius: 18px;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.relief-form-panel .form-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.relief-form-panel .form-panel-hint {
  font-size: 0.92rem;
  color: var(--text-2);
  margin-bottom: 1.7rem;
}

.contact-form .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 0;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  background: rgba(247, 242, 234, 0.45);
  padding: 0.7rem 0.6rem;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--clay);
  background: #fff;
}

.contact-form .form-control::placeholder {
  color: var(--text-3);
  font-weight: 400;
}

.contact-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23A64A38' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.privacy-line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(247, 242, 234, 0.7);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  margin: 1rem 0 1.3rem;
  font-size: 0.82rem;
  color: var(--text-2);
}

.privacy-line i {
  color: var(--gold);
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--clay);
  border: 1px solid var(--clay);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-main:hover,
.btn-main:focus {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(91, 37, 27, 0.2);
}

.site-footer {
  background: var(--pine-ink);
  color: rgba(245, 237, 228, 0.78);
}

.footer-main {
  padding: clamp(3rem, 7vw, 5rem) 0 2.2rem;
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-brand .mark-red {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.3rem;
}

.footer-brand .brand-name {
  font-size: 1.3rem;
}

.footer-brand .brand-name small {
  color: var(--gold);
}

.foot-about {
  color: #AFA49A;
  font-size: 0.92rem;
  line-height: 1.9;
  max-width: 46rem;
  margin-bottom: 0;
}

.footer-heading {
  color: #F5EDE4;
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #B7ADA2;
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-links .bi {
  font-size: 0.7rem;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: #B7ADA2;
}

.footer-contact .bi {
  color: var(--gold);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.85rem;
  text-align: center;
  color: #8C817A;
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 1120px;
  }
}

@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1.1rem 1.1rem;
    margin-top: 0.9rem;
    box-shadow: var(--shadow);
  }

  #mainNav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
  }

  #mainNav .nav-links li {
    width: 100%;
    border-bottom: 1px dashed var(--border);
  }

  #mainNav .nav-links li:last-child {
    border-bottom: 0;
  }

  #mainNav .nav-links a {
    display: block;
    padding: 0.95rem 0.25rem;
    font-size: 1.03rem;
  }

  #mainNav .nav-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  .faq-guide-wrap {
    flex-direction: column;
    gap: 2rem;
  }

  .faq-intro {
    position: static;
    flex: 1 1 auto;
    width: 100%;
  }

  .faq-list-col {
    flex: 1 1 auto;
    width: 100%;
  }

  .relief-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .relief-left,
  .relief-form-panel {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  #mainNav .navbar-brand {
    gap: 0.55rem;
  }

  #mainNav .mark-red,
  .footer-brand .mark-red {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.3rem;
  }

  #mainNav .brand-name,
  .footer-brand .brand-name {
    font-size: 1.15rem;
  }

  #mainNav .brand-sub {
    letter-spacing: 0.06em;
  }

  .category-hero {
    padding: 3.4rem 0 2.7rem;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .scope-wrap {
    gap: 2.5rem;
  }

  .scope-list-wrap,
  .scope-figure {
    flex: 1 1 100%;
  }

  .scope-row {
    padding: 1.25rem 0;
    gap: 1rem;
  }

  .scope-row .scope-num {
    flex: 0 0 2.2rem;
    font-size: 1.35rem;
  }

  .step-section .section-head {
    margin-bottom: 1.4rem;
  }

  .step-item {
    padding: 1.4rem;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .section-block {
    padding: 3rem 0;
  }

  .section-head h2 {
    font-size: 1.6rem;
  }

  .faq-intro-list li {
    font-size: 0.92rem;
  }

  .relief-form-panel {
    padding: 1.3rem 1.1rem;
    border-radius: 14px;
  }

  .custom-accordion .accordion-button {
    padding-right: 2.5rem;
    font-size: 0.96rem;
  }

  .custom-accordion .accordion-body {
    padding-left: 1.1rem;
    padding-right: 0.9rem;
  }

  .footer-main {
    padding: 3rem 0 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
