/* roulang page: index */
:root {
  --primary: #5B3A29;
  --primary-dark: #3E271B;
  --primary-deeper: #261912;
  --accent: #C79A5F;
  --accent-light: #DFB984;
  --bg: #FAF6F0;
  --bg-alt: #F0E9DF;
  --surface: #FFFFFF;
  --text: #2B211B;
  --text-muted: #7B6A5C;
  --border: #E5D9CC;
  --success: #556B5A;
  --danger: #A65B3C;
  --radius-lg: 16px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(59,38,25,.06);
  --shadow-hover: 0 8px 24px rgba(59,38,25,.10);
  --section-pad: 88px;
  --nav-height: 72px;
  --container-max: 1200px;
  --font-serif: "Source Han Serif SC","Noto Serif SC","Songti SC","SimSun",serif;
  --font-sans: "PingFang SC","Microsoft YaHei","Helvetica Neue","Arial",sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-bottom: 62px;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
a:hover {
  color: var(--accent);
}
img {
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.3;
  margin-bottom: .5em;
}
p {
  margin-bottom: 1rem;
}
ul {
  padding-left: 0;
  list-style: none;
}
.btn {
  border-radius: var(--radius-sm);
  padding: .65rem 1.5rem;
  font-weight: 600;
  transition: all .25s ease;
}
.btn:focus {
  box-shadow: 0 0 0 4px rgba(199,154,95,.15);
  outline: none;
}
.btn-accent {
  background: var(--accent);
  border: none;
  color: var(--primary-dark);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-accent:active {
  background: #B0874E;
  transform: translateY(0);
}
.btn-outline-light-custom {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}
.btn-outline-light-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,.06);
}
.badge-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: .5px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(59,38,25,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header .navbar {
  min-height: var(--nav-height);
  padding: 0;
}
.brand-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  line-height: 1.2;
}
.brand-sub {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-top: 1px;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  margin: 0 4px;
  border-radius: 8px;
  position: relative;
  transition: color .25s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--accent-light);
}
.navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 600;
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  background: rgba(85,107,90,.22);
  border: 1px solid rgba(85,107,90,.4);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-chip .fa-circle {
  font-size: 8px;
  color: #7FA08B;
}
.btn-notice {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  padding: 6px 12px;
  position: relative;
  border-radius: 50%;
  transition: background .25s ease;
}
.btn-notice:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.badge-dot {
  position: absolute;
  top: 2px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--danger);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-book {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14px;
}
.btn-book:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  padding: 8px;
  min-width: 220px;
  margin-top: 8px;
}
.dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  color: var(--text);
}
.dropdown-item:hover {
  background: var(--bg);
  color: var(--primary);
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
}
.navbar-toggler .fa-bars {
  color: #fff;
  font-size: 1.2rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(199,154,95,.3);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 88px) 0 92px;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(62,39,27,.92) 0%, rgba(62,39,27,.72) 45%, rgba(62,39,27,.50) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin-bottom: 26px;
  letter-spacing: .5px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-note {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note i {
  color: var(--accent);
  font-size: 6px;
}
.hero-card {
  background: rgba(255,255,255,.94);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
}
.hero-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
  position: relative;
}
.hero-card h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.session-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.session-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  transition: background .25s ease;
}
.session-item:hover {
  background: var(--bg-alt);
}
.session-info {
  flex: 1;
  min-width: 0;
}
.s-time {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  display: block;
}
.s-loc {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s-left {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  background: var(--surface);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.s-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.s-status .fa-circle {
  font-size: 8px;
}
.s-status.available {
  color: var(--success);
}
.s-status.full {
  color: var(--danger);
}
.update-time {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

/* ===== Section head ===== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-head p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 14px;
}
section {
  padding: var(--section-pad) 0;
}

/* ===== Features 卖点三连 ===== */
.features {
  background: var(--bg);
}
.feature-rows {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s ease;
  box-shadow: var(--shadow);
}
.feature-row:hover {
  background: var(--bg-alt);
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.feat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 60px;
  opacity: .8;
  transition: opacity .3s ease;
}
.feature-row:hover .feat-num {
  opacity: 1;
}
.feat-content {
  flex: 1;
  min-width: 0;
}
.feat-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.feat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}
.feat-arrow {
  color: var(--accent);
  font-size: 20px;
  transition: transform .3s ease;
}
.feature-row:hover .feat-arrow {
  transform: translateX(6px);
}

/* ===== Process 场景演示 ===== */
.process {
  background: var(--bg-alt);
}
.process-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.step-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.step-item:hover .step-img-wrap img {
  transform: scale(1.04);
}
.step-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 2;
}
.step-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}
.step-line {
  flex: 0 0 60px;
  height: 2px;
  border-top: 2px dashed var(--accent);
  align-self: center;
  margin-top: -80px;
}

/* ===== Social Proof 社会认同 ===== */
.social-proof {
  background: var(--bg);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.t-source {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg);
  border-radius: 999px;
  padding: 4px 14px;
  display: inline-block;
}

/* ===== News CMS 资讯区 ===== */
.news-section {
  background: var(--bg-alt);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-list-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.news-list-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.news-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin: 10px 0 6px;
  line-height: 1.4;
}
.news-title:hover {
  color: var(--accent);
}
.news-summary {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
.news-more {
  color: var(--primary);
  font-weight: 600;
}
.news-more:hover {
  color: var(--accent);
}
.news-more i {
  margin-left: 4px;
  font-size: 12px;
}
.news-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.news-empty i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.news-empty p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.news-sidebar {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.news-sidebar h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.news-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-sidebar a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: block;
  transition: all .25s ease;
}
.news-sidebar a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateX(3px);
}

/* ===== Appointment Form 预约表单 ===== */
.appointment {
  background: var(--bg);
}
.appointment-wrap {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}
.appointment-wrap h2 {
  font-size: 30px;
  color: var(--primary);
}
.appointment-wrap .lead-text {
  color: var(--text-muted);
  font-size: 15px;
}
.appointment-form .form-control,
.appointment-form .form-select {
  border: 1px solid #D9CBBB;
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  background: var(--surface);
  font-size: 14px;
  color: var(--text);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199,154,95,.15);
}
.appointment-form .btn {
  width: 100%;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-alt);
}
.accordion-custom {
  max-width: 860px;
  margin: 0 auto;
}
.accordion-custom .accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.accordion-custom .accordion-button {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 24px;
  border-left: 4px solid transparent;
  transition: border-color .25s ease;
}
.accordion-custom .accordion-button:not(.collapsed) {
  border-left-color: var(--accent);
  color: var(--primary);
}
.accordion-custom .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(199,154,95,.15);
  z-index: 1;
}
.accordion-custom .accordion-button::after {
  content: '+';
  background-image: none;
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  width: auto;
  height: auto;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .3s ease;
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.accordion-custom .accordion-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
  opacity: .35;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 15px;
}
.cta-banner .btn {
  margin: 6px;
  min-width: 140px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary-deeper);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
}
.footer-brand .brand-main {
  font-size: 22px;
}
.footer-brand .brand-sub {
  font-size: 13px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.footer-col ul a:hover {
  color: var(--accent-light);
}
.footer-contact li {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
  width: 16px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
}

/* ===== Fixed Bottom Bar ===== */
.fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(59,38,25,.97);
  border-top: 1px solid var(--accent);
  z-index: 1040;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: transform .35s ease;
}
.fixed-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fixed-bar p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
}
.fixed-bar .bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fixed-bar .btn {
  padding: 6px 22px;
  font-size: 14px;
}
.bar-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 16px;
  padding: 6px;
  border-radius: 50%;
  transition: all .25s ease;
}
.bar-close:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.fixed-bar-hidden {
  transform: translateY(100%);
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
  .step-line {
    flex-basis: 30px;
  }
  .testimonial-card {
    padding: 20px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --section-pad: 72px;
  }
  .navbar-collapse {
    background: var(--primary-dark);
    border-radius: 14px;
    padding: 18px;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.06);
  }
  .navbar-nav .nav-link {
    padding: 10px 16px;
  }
  .navbar-nav .nav-link.active::after {
    display: none;
  }
  .nav-right {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
  }
  .hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-card {
    margin-top: 36px;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .step-line {
    width: 2px;
    height: 40px;
    flex: none;
    border-top: none;
    border-left: 2px dashed var(--accent);
    margin: 0;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-row {
    grid-template-columns: 1fr;
  }
  .appointment-wrap {
    padding: 32px 24px;
  }
  .news-sidebar {
    margin-top: 24px;
    position: static;
  }
  .footer-col {
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --section-pad: 56px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-card {
    padding: 22px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .section-head p {
    font-size: 14px;
  }
  .feature-row {
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px;
  }
  .feat-num {
    font-size: 32px;
    min-width: auto;
  }
  .feat-content {
    text-align: center;
  }
  .feat-arrow {
    display: none;
  }
  .step-item {
    max-width: 100%;
    padding: 12px;
  }
  .step-img-wrap {
    aspect-ratio: 16/10;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-num {
    font-size: 32px;
  }
  .cta-banner h2 {
    font-size: 26px;
  }
  .cta-banner p {
    font-size: 14px;
  }
  .fixed-bar p {
    font-size: 12px;
  }
  .fixed-bar .btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  .appointment-wrap {
    padding: 24px 16px;
  }
  .appointment-wrap h2 {
    font-size: 24px;
  }
  .news-list-item {
    padding: 18px;
  }
  .news-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 575.98px) {
  .hero-actions .btn {
    width: 100%;
  }
  .btn-outline-light-custom {
    margin-left: 0;
  }
  .fixed-bar .bar-text {
    display: none;
  }
  .fixed-bar {
    justify-content: flex-end;
  }
  .hero-note {
    font-size: 12px;
    flex-wrap: wrap;
  }
  .stat-num {
    font-size: 28px;
  }
  .stat-label {
    font-size: 13px;
  }
  .step-img-wrap {
    aspect-ratio: 4/3;
  }
}

/* roulang page: article */
:root {
    --primary: #5B3A29;
    --primary-dark: #3E271B;
    --accent: #C79A5F;
    --accent-light: #DFB984;
    --bg: #FAF6F0;
    --bg-alt: #F0E9DF;
    --surface: #FFFFFF;
    --text: #2B211B;
    --text-muted: #7B6A5C;
    --border: #E5D9CC;
    --green: #556B5A;
    --red: #A65B3C;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 2px 8px rgba(59,38,25,.06);
    --shadow-hover: 0 8px 24px rgba(59,38,25,.10);
    --header-height: 74px;
    --container-w: 1200px;
    --space: 84px;
    --font-serif: "Source Han Serif SC","Noto Serif SC","Songti SC",SimSun,serif;
    --font-sans: "PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:var(--font-sans);
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
    padding-bottom:62px;
    -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:all .25s ease}
ul,ol{list-style:none}
.container{max-width:var(--container-w)}

/* ===== 按钮体系 ===== */
.btn{
    border-radius:var(--radius-sm);
    font-weight:600;
    padding:.65rem 1.5rem;
    transition:all .25s ease;
}
.btn-book{
    background:var(--accent);
    color:var(--primary-dark);
    border:none;
    font-weight:700;
    padding:.6rem 1.5rem;
    box-shadow:0 2px 6px rgba(199,154,95,.2);
}
.btn-book:hover,.btn-book:focus{
    background:var(--accent-light);
    color:var(--primary-dark);
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(199,154,95,.3);
}
.btn-book:active{
    transform:translateY(0);
    background:#B98A4E;
}
.btn-book:focus-visible{
    outline:none;
    box-shadow:0 0 0 4px rgba(199,154,95,.2);
}
.btn-outline-light{
    border:1px solid rgba(250,246,240,.5);
    color:#FAF6F0;
    background:transparent;
    padding:.55rem 1.4rem;
}
.btn-outline-light:hover{
    border-color:var(--accent);
    color:var(--accent);
    background:rgba(255,255,255,.06);
}

/* ===== 导航 ===== */
.site-header{
    position:fixed;
    top:0;left:0;right:0;
    z-index:1000;
    background:rgba(91,58,41,.97);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 2px 12px rgba(30,15,8,.18);
    padding:12px 0;
    transition:background .3s ease,box-shadow .3s ease;
}
.site-header .navbar{padding:0}
.navbar-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:0;
    line-height:1.1;
}
.brand-main{
    font-family:var(--font-serif);
    font-size:22px;
    font-weight:800;
    color:#FAF6F0;
    letter-spacing:2px;
}
.brand-sub{
    font-size:12px;
    color:var(--accent-light);
    letter-spacing:1px;
    margin-top:2px;
}
.navbar-nav .nav-link{
    color:rgba(250,246,240,.85);
    font-size:15px;
    font-weight:500;
    padding:8px 14px;
    position:relative;
    transition:color .25s ease;
}
.navbar-nav .nav-link:hover{
    color:var(--accent-light);
}
.navbar-nav .nav-link.active{
    color:#FAF6F0;
}
.navbar-nav .nav-link.active::after{
    content:'';
    position:absolute;
    left:14px;right:14px;bottom:2px;
    height:2px;
    background:var(--accent);
    border-radius:2px;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:14px;
}
.status-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(85,107,90,.25);
    border:1px solid rgba(85,107,90,.4);
    color:#DCE8DF;
    font-size:13px;
    padding:4px 12px;
    border-radius:999px;
    white-space:nowrap;
}
.status-chip i{font-size:8px;color:#7DB58A}
.btn-notice{
    background:rgba(255,255,255,.1);
    border:none;
    color:#FAF6F0;
    width:38px;height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    position:relative;
    transition:background .25s ease;
}
.btn-notice:hover{background:rgba(255,255,255,.18)}
.badge-dot{
    position:absolute;
    top:-2px;right:-2px;
    background:var(--red);
    color:#fff;
    font-size:10px;
    font-weight:700;
    width:18px;height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.dropdown-menu{
    --bs-dropdown-border-radius:12px;
    --bs-dropdown-box-shadow:var(--shadow-hover);
    border:1px solid var(--border);
    background:#fff;
    padding:8px;
    min-width:240px;
}
.dropdown-item{
    border-radius:8px;
    font-size:14px;
    padding:10px 14px;
    color:var(--text);
}
.dropdown-item:hover{
    background:var(--bg-alt);
    color:var(--primary);
}
.navbar-toggler{
    border:1px solid rgba(250,246,240,.3);
    color:#FAF6F0;
    padding:4px 10px;
}
.navbar-toggler:focus{box-shadow:none}
.navbar-toggler i{font-size:18px}

/* ===== 面包屑 ===== */
.breadcrumb-wrap{
    margin-top:var(--header-height);
    background:var(--bg-alt);
    border-bottom:1px solid var(--border);
    padding:14px 0;
}
.breadcrumb{margin:0}
.breadcrumb-item{
    font-size:14px;
    color:var(--text-muted);
}
.breadcrumb-item a{color:var(--text-muted)}
.breadcrumb-item a:hover{color:var(--accent)}
.breadcrumb-item.active{
    color:var(--primary);
    max-width:320px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.breadcrumb-item+.breadcrumb-item::before{
    color:var(--border);
    padding-right:8px;
}

/* ===== 文章主体 ===== */
.article-page{padding:48px 0 64px}
.article-layout{
    max-width:860px;
    margin:0 auto;
}
.article-header{
    margin-bottom:36px;
    text-align:center;
}
.article-cat{
    display:inline-block;
    background:var(--accent);
    color:var(--primary-dark);
    font-size:13px;
    font-weight:700;
    padding:4px 16px;
    border-radius:999px;
    margin-bottom:16px;
    letter-spacing:1px;
}
.article-header h1{
    font-family:var(--font-serif);
    font-size:34px;
    font-weight:800;
    color:var(--text);
    line-height:1.35;
    margin-bottom:16px;
    letter-spacing:1px;
}
.article-meta{
    display:flex;
    justify-content:center;
    gap:24px;
    color:var(--text-muted);
    font-size:14px;
}
.article-meta i{
    color:var(--accent);
    margin-right:5px;
}

/* ===== 正文排版 ===== */
.article-body{
    font-size:16px;
    line-height:1.85;
    color:var(--text);
    background:var(--surface);
    border-radius:var(--radius);
    padding:42px 48px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}
.article-body h2{
    font-family:var(--font-serif);
    font-size:26px;
    font-weight:800;
    margin:2em 0 1em;
    padding-left:14px;
    border-left:4px solid var(--accent);
    color:var(--primary);
}
.article-body h3{
    font-family:var(--font-serif);
    font-size:21px;
    font-weight:700;
    margin:1.8em 0 .8em;
    color:var(--primary);
}
.article-body p{
    margin-bottom:1.5em;
    color:#3A3028;
}
.article-body ul,.article-body ol{
    margin:0 0 1.8em 1.4em;
    color:#3A3028;
}
.article-body ul li,.article-body ol li{
    margin-bottom:.6em;
    position:relative;
}
.article-body ul li{
    padding-left:6px;
}
.article-body ul li::before{
    content:'';
    position:absolute;
    left:-16px;
    top:.75em;
    width:6px;height:6px;
    background:var(--accent);
    border-radius:50%;
}
.article-body blockquote{
    background:var(--bg-alt);
    border-left:4px solid var(--accent);
    padding:1.2em 1.6em;
    border-radius:0 10px 10px 0;
    margin:2em 0;
    font-size:15px;
    color:var(--primary);
}
.article-body img{
    max-width:100%;
    border-radius:12px;
    margin:1.8em 0;
    box-shadow:var(--shadow);
}
.article-body figure{
    margin:2em 0;
}
.article-body figcaption{
    text-align:center;
    font-size:14px;
    color:var(--text-muted);
    margin-top:.6em;
}
.article-body a{
    color:var(--primary);
    border-bottom:2px solid var(--accent);
}
.article-body a:hover{
    color:var(--accent);
}

/* ===== 标签行 ===== */
.article-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:32px;
    padding-top:24px;
    border-top:1px solid var(--border);
}
.article-tags .tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:var(--bg-alt);
    color:var(--primary);
    font-size:13px;
    font-weight:500;
    padding:5px 14px;
    border-radius:999px;
    transition:all .25s ease;
}
.article-tags .tag:hover{
    background:var(--accent);
    color:#fff;
}
.article-tags .tag i{font-size:12px}

/* ===== 上下篇 ===== */
.article-navigation{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:36px;
}
.article-navigation .nav-prev,
.article-navigation .nav-next{
    background:var(--bg-alt);
    border-radius:12px;
    padding:16px 20px;
    flex:1;
    transition:all .25s ease;
}
.article-navigation .nav-prev:hover,
.article-navigation .nav-next:hover{
    background:var(--border);
}
.nav-label{
    display:block;
    font-size:12px;
    color:var(--text-muted);
    margin-bottom:4px;
    letter-spacing:1px;
}
.article-navigation a{
    font-size:15px;
    font-weight:600;
    color:var(--primary);
}
.article-navigation a:hover{
    color:var(--accent);
}
.article-navigation .nav-next{
    text-align:right;
}

/* ===== CTA条 ===== */
.article-cta{
    margin-top:48px;
    background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);
    border-radius:var(--radius);
    padding:44px 32px;
    text-align:center;
    color:#FAF6F0;
    position:relative;
    overflow:hidden;
}
.article-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('/assets/images/backpic/back-2.jpg') center/cover;
    opacity:.12;
}
.article-cta> *{position:relative}
.article-cta h3{
    font-family:var(--font-serif);
    font-size:26px;
    font-weight:800;
    margin-bottom:10px;
    color:#FAF6F0;
}
.article-cta p{
    font-size:14px;
    color:rgba(250,246,240,.8);
    margin-bottom:20px;
}

/* ===== 相关推荐 ===== */
.related-section{
    background:var(--bg-alt);
    padding:var(--space) 0;
    border-top:1px solid var(--border);
}
.section-head{
    text-align:center;
    margin-bottom:40px;
}
.section-head h2{
    font-family:var(--font-serif);
    font-size:32px;
    font-weight:800;
    color:var(--text);
    margin-bottom:8px;
}
.section-head p{
    font-size:15px;
    color:var(--text-muted);
}
.related-card{
    background:var(--surface);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    transition:all .3s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}
.related-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-hover);
}
.related-cover{
    aspect-ratio:16/9;
    overflow:hidden;
    background:var(--bg-alt);
}
.related-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}
.related-card:hover .related-cover img{
    transform:scale(1.04);
}
.related-body{
    padding:22px 24px 26px;
    flex:1;
    display:flex;
    flex-direction:column;
}
.related-body h3{
    font-family:var(--font-serif);
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
    line-height:1.45;
}
.related-body h3 a:hover{
    color:var(--accent);
}
.related-meta{
    font-size:13px;
    color:var(--text-muted);
    margin-bottom:10px;
}
.related-meta i{
    margin-right:4px;
    color:var(--accent);
}
.related-body p{
    font-size:14px;
    color:var(--text-muted);
    line-height:1.65;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.related-empty{
    text-align:center;
    padding:56px 24px;
    background:var(--surface);
    border-radius:var(--radius);
    border:1px dashed var(--border);
}
.related-empty i{
    font-size:36px;
    color:var(--accent);
    margin-bottom:12px;
}
.related-empty p{
    font-size:15px;
    color:var(--text-muted);
    margin-bottom:16px;
}

/* ===== 空态（内容未找到） ===== */
.not-found{
    text-align:center;
    background:var(--surface);
    border-radius:var(--radius);
    padding:72px 32px;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}
.not-found i{
    font-size:44px;
    color:var(--accent);
    margin-bottom:16px;
}
.not-found h1{
    font-family:var(--font-serif);
    font-size:28px;
    font-weight:800;
    color:var(--text);
    margin-bottom:10px;
}
.not-found p{
    font-size:15px;
    color:var(--text-muted);
    margin-bottom:20px;
}

/* ===== 页脚 ===== */
.site-footer{
    background:var(--primary-dark);
    color:rgba(250,246,240,.85);
    padding:60px 0 30px;
    background:linear-gradient(160deg,#3E271B 0%,#261912 100%);
}
.footer-col{margin-bottom:32px}
.footer-brand{
    display:flex;
    flex-direction:column;
    margin-bottom:16px;
}
.footer-brand .brand-main{
    font-size:22px;
    color:#FAF6F0;
}
.footer-brand .brand-sub{
    font-size:13px;
    color:var(--accent);
}
.footer-desc{
    font-size:14px;
    color:rgba(250,246,240,.6);
    line-height:1.7;
    margin-bottom:0;
}
.site-footer h4{
    font-family:var(--font-serif);
    font-size:17px;
    font-weight:700;
    color:#FAF6F0;
    margin-bottom:16px;
    letter-spacing:1px;
}
.site-footer ul li{
    margin-bottom:10px;
}
.site-footer ul a{
    font-size:14px;
    color:rgba(250,246,240,.65);
    transition:all .25s ease;
}
.site-footer ul a:hover{
    color:var(--accent);
    padding-left:4px;
}
.footer-contact li{
    font-size:14px;
    color:rgba(250,246,240,.65);
    display:flex;
    align-items:center;
    gap:8px;
}
.footer-contact i{
    color:var(--accent);
    width:16px;
    text-align:center;
    font-size:14px;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:24px;
    margin-top:32px;
    text-align:center;
    font-size:13px;
    color:rgba(250,246,240,.45);
}

/* ===== 固定底部转化条 ===== */
.fixed-cta{
    position:fixed;
    bottom:0;left:0;right:0;
    height:62px;
    background:rgba(62,39,27,.98);
    border-top:1px solid rgba(199,154,95,.5);
    z-index:1050;
    display:flex;
    align-items:center;
    backdrop-filter:blur(10px);
}
.fixed-cta .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}
.cta-text{
    color:#FAF6F0;
    font-size:14px;
    font-weight:500;
}
.cta-text i{
    color:var(--accent);
    margin-right:6px;
}
.cta-actions{
    display:flex;
    align-items:center;
    gap:10px;
}
.cta-actions .btn{
    padding:.45rem 1.2rem;
    font-size:14px;
}
.cta-close{
    background:transparent;
    border:none;
    color:rgba(250,246,240,.5);
    font-size:16px;
    padding:6px 10px;
    border-radius:6px;
    transition:all .25s ease;
}
.cta-close:hover{
    color:#FAF6F0;
    background:rgba(255,255,255,.1);
}

/* ===== 响应式 ===== */
@media (max-width:1199.98px){
    .container{max-width:960px}
    .article-body{padding:36px 32px}
}
@media (max-width:991.98px){
    :root{--space:64px}
    .navbar-collapse{
        background:rgba(62,39,27,.98);
        border-radius:12px;
        padding:16px 20px;
        margin-top:12px;
        border:1px solid rgba(199,154,95,.2);
    }
    .navbar-nav .nav-link{
        color:#FAF6F0;
        padding:10px 0;
        border-bottom:1px solid rgba(255,255,255,.05);
    }
    .navbar-nav .nav-link.active::after{
        left:0;
        width:32px;
    }
    .nav-right{
        margin-top:14px;
        justify-content:space-between;
        flex-wrap:wrap;
    }
    .article-header h1{font-size:30px}
    .article-body{padding:32px 24px}
    .article-navigation{flex-direction:column}
}
@media (max-width:767.98px){
    :root{--space:48px}
    .article-page{padding:32px 0 48px}
    .article-body{
        padding:24px 18px;
        font-size:15px;
        line-height:1.75;
    }
    .article-body h2{font-size:22px}
    .article-meta{flex-direction:row;flex-wrap:wrap;gap:12px;justify-content:center}
    .article-header h1{font-size:26px}
    .section-head h2{font-size:26px}
    .article-cta{padding:36px 20px}
    .article-cta h3{font-size:22px}
    .fixed-cta{height:56px}
    .cta-text{font-size:12px;max-width:58%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    .cta-actions .btn{padding:.4rem 1rem;font-size:13px}
    .cta-close{padding:4px 8px}
}
@media (max-width:575.98px){
    .breadcrumb-item.active{max-width:180px}
    .related-body h3{font-size:16px}
    .article-tags{gap:8px}
    .article-tags .tag{font-size:12px;padding:4px 10px}
    .brand-main{font-size:19px}
    .brand-sub{font-size:11px}
    .status-chip{
        display:none;
    }
}

/* roulang page: category1 */
:root{
  --primary:#5B3A29;
  --primary-dark:#3E271B;
  --primary-deep:#261912;
  --accent:#C79A5F;
  --accent-light:#DFB984;
  --bg:#FAF6F0;
  --bg-alt:#F0E9DF;
  --surface:#FFFFFF;
  --text:#2B211B;
  --text-muted:#7B6A5C;
  --border:#E5D9CC;
  --success:#556B5A;
  --danger:#A65B3C;
  --radius:14px;
  --radius-lg:16px;
  --radius-sm:8px;
  --shadow-sm:0 2px 8px rgba(59,38,25,.06);
  --shadow-lg:0 8px 24px rgba(59,38,25,.10);
  --space:88px;
  --nav-h:72px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
  padding-top:var(--nav-h);
  padding-bottom:72px;
}
h1,h2,h3,h4,h5,.navbar-brand,.step-num,.brand-main{
  font-family:"Source Han Serif SC","Noto Serif SC","Songti SC",SimSun,serif;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{max-width:1200px}
.btn{transition:all .25s ease}
.btn:focus{outline:none}

/* ===== header ===== */
.site-header{
  position:fixed;
  top:0;left:0;right:0;z-index:1040;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  background:rgba(59,38,25,.94);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 4px 20px rgba(0,0,0,.15);
}
.site-header.scrolled{background:rgba(38,25,18,.97);box-shadow:0 6px 24px rgba(0,0,0,.22)}
.navbar{padding:0;width:100%;flex-wrap:nowrap}
.navbar-brand{
  display:flex;flex-direction:column;align-items:flex-start;
  padding:0;margin:0;line-height:1.25;
}
.brand-main{font-weight:700;font-size:1.3rem;color:#fff;letter-spacing:.03em;line-height:1.15}
.brand-sub{font-size:.7rem;color:var(--accent);letter-spacing:.2em;margin-top:2px;font-family:"PingFang SC","Microsoft YaHei",sans-serif}
.navbar-toggler{border:none;color:#fff;padding:6px 10px;font-size:1.1rem;background:transparent}
.navbar-toggler:focus{box-shadow:0 0 0 3px rgba(199,154,95,.25)}
.navbar-nav .nav-link{
  color:rgba(255,255,255,.82);
  font-size:.95rem;
  padding:.5rem .2rem;
  margin:0 .75rem;
  position:relative;
  letter-spacing:.02em;
  transition:color .25s ease;
  white-space:nowrap;
}
.navbar-nav .nav-link:hover{color:var(--accent)}
.navbar-nav .nav-link.active{color:#fff}
.navbar-nav .nav-link.active::after{
  content:"";position:absolute;left:50%;bottom:0;width:6px;height:6px;
  border-radius:50%;background:var(--accent);transform:translateX(-50%);
}
.nav-right{display:flex;align-items:center;gap:14px}
.status-chip{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.8rem;color:#B9D2C0;
  background:rgba(85,107,90,.24);
  padding:.3rem .85rem;border-radius:999px;
  border:1px solid rgba(85,107,90,.45);
  white-space:nowrap;
}
.status-chip i{font-size:.5rem;color:#8DB69C}
.btn-notice{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;display:inline-flex;align-items:center;justify-content:center;
  position:relative;transition:all .25s ease;padding:0;
}
.btn-notice:hover{background:rgba(255,255,255,.16);color:var(--accent)}
.badge-dot{
  position:absolute;top:-3px;right:-3px;width:18px;height:18px;
  border-radius:50%;background:var(--danger);color:#fff;
  font-size:.65rem;line-height:18px;text-align:center;font-weight:600;
}
.dropdown-menu{
  background:var(--primary-dark);
  border:1px solid rgba(199,154,95,.25);
  border-radius:12px;box-shadow:var(--shadow-lg);
  padding:.5rem;min-width:220px;
}
.dropdown-item{
  color:rgba(255,255,255,.82);border-radius:8px;
  font-size:.88rem;padding:.6rem .95rem;transition:all .2s ease;
}
.dropdown-item:hover{background:rgba(255,255,255,.06);color:var(--accent)}
.btn-book{
  background:var(--accent);color:var(--primary-dark);font-weight:700;
  border:none;padding:.55rem 1.4rem;border-radius:8px;font-size:.92rem;
  display:inline-flex;align-items:center;gap:.4rem;
}
.btn-book:hover{background:var(--accent-light);color:var(--primary-dark)}

/* ===== page head ===== */
.page-head{
  position:relative;
  min-height:330px;
  display:flex;align-items:flex-end;
  padding:150px 0 64px;
  background-size:cover;background-position:center 30%;
  color:#fff;overflow:hidden;
}
.page-head::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(62,39,27,.92) 25%,rgba(62,39,27,.62) 70%,rgba(62,39,27,.42) 100%);
}
.page-head .container{position:relative;z-index:2}
.breadcrumb{border-radius:0;margin-bottom:16px;padding-left:0}
.breadcrumb-item{color:rgba(255,255,255,.6);font-size:.85rem}
.breadcrumb-item a{color:rgba(255,255,255,.6);transition:color .2s ease}
.breadcrumb-item a:hover{color:var(--accent)}
.breadcrumb-item.active{color:var(--accent)}
.breadcrumb-item+.breadcrumb-item::before{color:rgba(255,255,255,.35)}
.page-head h1{
  font-size:2.9rem;font-weight:700;color:#fff;
  margin-bottom:14px;letter-spacing:.05em;
}
.page-head .lead{
  font-size:1.12rem;color:rgba(255,255,255,.86);
  max-width:640px;margin-bottom:0;
}

/* ===== section ===== */
.schedule-section{padding:var(--space) 0}
.process-section{background:var(--bg-alt);padding:var(--space) 0}
.notes-section{padding:var(--space) 0}
.booking-section{background:var(--bg-alt);padding:var(--space) 0}
.faq-section{padding:var(--space) 0}
.cta-banner-section{
  background:linear-gradient(135deg,var(--primary-dark) 0%,var(--primary) 100%);
  color:#fff;text-align:center;padding:72px 0;
}
.section-head{margin-bottom:50px;text-align:center}
.section-tag{
  display:inline-block;font-size:.8rem;letter-spacing:.18em;
  color:var(--accent);font-weight:600;text-transform:uppercase;margin-bottom:10px;
}
.section-head h2{font-size:2.1rem;font-weight:700;color:var(--text);margin-bottom:14px}
.section-head p{color:var(--text-muted);max-width:560px;margin:0 auto;font-size:1rem}

/* ===== schedule card ===== */
.schedule-grid{gap:1.5rem}
.schedule-card{
  background:var(--surface);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-sm);height:100%;display:flex;flex-direction:column;
  border:1px solid rgba(229,217,204,.6);
  transition:transform .25s ease,box-shadow .25s ease;
}
.schedule-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.card-thumb{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--bg-alt)}
.card-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.schedule-card:hover .card-thumb img{transform:scale(1.02)}
.badge-status{
  position:absolute;top:12px;right:12px;padding:.28rem .75rem;
  border-radius:999px;font-size:.75rem;font-weight:600;color:#fff;z-index:2;
}
.badge-status.available{background:rgba(85,107,90,.92)}
.badge-status.full{background:rgba(166,91,60,.92)}
.card-body{padding:22px;flex:1;display:flex;flex-direction:column}
.schedule-meta{
  display:flex;flex-wrap:wrap;gap:.6rem 1rem;
  font-size:.82rem;color:var(--text-muted);margin-bottom:10px;
}
.schedule-meta span{display:inline-flex;align-items:center;gap:.35rem}
.schedule-card h3{font-size:1.16rem;font-weight:700;color:var(--text);margin-bottom:6px}
.address{font-size:.88rem;color:var(--text-muted);margin-bottom:16px}
.address i{color:var(--accent);margin-right:4px}
.card-footer-row{
  margin-top:auto;display:flex;align-items:center;justify-content:space-between;
  padding-top:14px;border-top:1px solid var(--border);
}
.remain{font-size:.85rem;color:var(--text-muted)}
.remain b{color:var(--success);font-size:1.12rem}
.remain.full{color:var(--danger)}
.btn-primary{
  background:var(--accent);border-color:var(--accent);color:var(--primary-dark);
  font-weight:600;border-radius:var(--radius-sm);padding:.55rem 1.25rem;
}
.btn-primary:hover,.btn-primary:focus{
  background:var(--accent-light);border-color:var(--accent-light);
  color:var(--primary-dark);box-shadow:0 0 0 4px rgba(199,154,95,.15);
}
.btn-disabled{
  background:#E8E1D8;border-color:#E8E1D8;color:#9A8C7D;
  cursor:not-allowed;pointer-events:none;border-radius:var(--radius-sm);
  padding:.55rem 1.25rem;font-weight:600;
}

/* ===== process ===== */
.process-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;position:relative}
.process-step{
  position:relative;background:var(--surface);border-radius:var(--radius);
  padding:46px 30px 38px;text-align:center;box-shadow:var(--shadow-sm);
  border-top:4px solid var(--accent);transition:box-shadow .25s ease,transform .25s ease;
}
.process-step:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.step-num{
  font-size:2.6rem;font-weight:700;color:var(--accent);line-height:1;
  margin-bottom:16px;opacity:.85;letter-spacing:.02em;
}
.process-step h3{font-size:1.28rem;font-weight:700;margin-bottom:12px;color:var(--text)}
.process-step p{font-size:.92rem;color:var(--text-muted);line-height:1.75;margin-bottom:0}
@media(min-width:992px){
  .process-step+.process-step::before{
    content:"";position:absolute;left:-32px;top:50%;width:32px;height:2px;
    background:repeating-linear-gradient(90deg,var(--accent) 0 6px,transparent 6px 12px);
    opacity:.5;
  }
}

/* ===== notes ===== */
.note-item{
  display:flex;gap:18px;align-items:flex-start;
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);padding:28px;height:100%;
  transition:box-shadow .25s ease,border-color .25s ease;
}
.note-item:hover{box-shadow:var(--shadow-sm);border-color:var(--accent)}
.note-item i{
  width:46px;height:46px;border-radius:12px;flex-shrink:0;
  background:rgba(199,154,95,.14);color:var(--accent);font-size:1.1rem;
  display:inline-flex;align-items:center;justify-content:center;
}
.note-item h4{font-size:1.06rem;font-weight:700;margin-bottom:6px;color:var(--text)}
.note-item p{font-size:.89rem;color:var(--text-muted);margin:0;line-height:1.65}

/* ===== booking ===== */
.booking-panel{
  background:var(--primary-dark);border-radius:var(--radius-lg);
  padding:56px;color:#fff;
  display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:center;
  position:relative;overflow:hidden;
}
.booking-panel::after{
  content:"";position:absolute;inset:0;
  background:url('/assets/images/backpic/back-3.jpg') center/cover no-repeat;
  opacity:.1;pointer-events:none;
}
.booking-left,.booking-form{position:relative;z-index:2}
.booking-left h2{font-size:2rem;font-weight:700;margin-bottom:16px;color:#fff}
.booking-left p{color:rgba(255,255,255,.78);font-size:1rem;margin-bottom:0;line-height:1.7}
.booking-form .form-control,.booking-form .form-select{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;border-radius:8px;padding:.72rem 1rem;font-size:.95rem;
  transition:border-color .25s ease,box-shadow .25s ease;
}
.booking-form .form-control::placeholder{color:rgba(255,255,255,.5)}
.booking-form .form-control:focus,.booking-form .form-select:focus{
  background:rgba(255,255,255,.1);border-color:var(--accent);color:#fff;
  box-shadow:0 0 0 4px rgba(199,154,95,.15);
}
.booking-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='%23C79A5F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size:16px 12px;
}
.booking-form .form-select option{background:var(--primary-dark);color:rgba(255,255,255,.85)}
input[type="date"].form-control::-webkit-calendar-picker-indicator{filter:invert(.8);opacity:.7}
.form-tip{
  font-size:.82rem;color:rgba(255,255,255,.55);margin-top:12px;text-align:center;
}

/* ===== faq ===== */
.accordion{max-width:820px;margin:0 auto}
.accordion-item{
  border:1px solid var(--border);border-radius:12px;overflow:hidden;
  margin-bottom:14px;background:var(--surface);
}
.accordion-button{
  background:var(--surface);color:var(--text);font-weight:600;
  font-size:1rem;padding:1.05rem 1.3rem;box-shadow:none;
  transition:color .25s ease;
}
.accordion-button:not(.collapsed){
  background:var(--surface);color:var(--primary);box-shadow:none;
  border-left:4px solid var(--accent);border-radius:12px 12px 0 0;
}
.accordion-button:focus{box-shadow:0 0 0 4px rgba(199,154,95,.15)}
.accordion-button::after{
  flex-shrink:0;width:18px;height:18px;margin-left:auto;
  background-image:
    linear-gradient(var(--accent),var(--accent)),
    linear-gradient(var(--accent),var(--accent));
  background-size:18px 2px,2px 18px;
  background-repeat:no-repeat;background-position:center;
  transition:transform .3s ease;
}
.accordion-button:not(.collapsed)::after{transform:rotate(45deg)}
.accordion-body{
  padding:1.25rem 1.3rem;color:var(--text-muted);
  font-size:.95rem;line-height:1.8;border-top:1px solid var(--border);
}

/* ===== cta ===== */
.cta-banner-section h2{font-size:2.1rem;font-weight:700;margin-bottom:14px;color:#fff}
.cta-banner-section p{color:rgba(255,255,255,.75);font-size:1rem;margin-bottom:34px}
.cta-buttons{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}
.btn-lg{padding:.85rem 2.2rem;font-size:1rem;border-radius:10px}
.btn-outline-light{
  border:1px solid rgba(255,255,255,.5);color:#fff;border-radius:10px;
  padding:.85rem 2.2rem;font-weight:600;background:transparent;
}
.btn-outline-light:hover{
  border-color:var(--accent);color:var(--accent);
  background:rgba(255,255,255,.06);
}

/* ===== footer ===== */
.site-footer{
  background:var(--primary-deep);color:rgba(255,255,255,.73);
  padding:64px 0 30px;font-size:.92rem;
}
.footer-brand{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:12px}
.footer-brand .brand-main{font-size:1.3rem;color:#fff}
.footer-brand .brand-sub{font-size:.7rem;color:var(--accent);letter-spacing:.2em}
.footer-desc{font-size:.88rem;color:rgba(255,255,255,.6);line-height:1.8;max-width:320px;margin-bottom:20px}
.site-footer h4{
  font-size:.95rem;font-weight:700;color:#fff;margin-bottom:16px;
  font-family:"PingFang SC","Microsoft YaHei",sans-serif;
}
.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer ul li{margin-bottom:10px}
.site-footer ul a{
  color:rgba(255,255,255,.6);font-size:.9rem;transition:color .25s ease;
}
.site-footer ul a:hover{color:#E5C89F}
.footer-contact li{color:rgba(255,255,255,.6);font-size:.9rem;display:flex;align-items:center;gap:10px}
.footer-contact i{color:var(--accent);width:16px;text-align:center;font-size:.9rem}
.footer-bottom{
  margin-top:40px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}
.footer-bottom p{font-size:.82rem;color:rgba(255,255,255,.45);margin:0}

/* ===== sticky bar ===== */
.sticky-bar{
  position:fixed;bottom:0;left:0;right:0;z-index:1050;
  background:rgba(38,25,18,.97);
  border-top:1px solid rgba(199,154,95,.6);
  padding:10px 0;color:#fff;
}
.sticky-bar .container{display:flex;align-items:center;justify-content:space-between;gap:16px}
.sticky-bar p{margin:0;font-size:.9rem;color:rgba(255,255,255,.85)}
.sticky-bar .actions{display:flex;align-items:center;gap:12px}
.btn-sticky{
  background:var(--accent);color:var(--primary-dark);font-weight:700;
  padding:.5rem 1.4rem;border-radius:8px;font-size:.9rem;
  display:inline-block;transition:background .25s ease;
}
.btn-sticky:hover{background:var(--accent-light);color:var(--primary-dark)}
.btn-close-sticky{
  background:transparent;border:none;color:rgba(255,255,255,.5);
  font-size:1.35rem;line-height:1;padding:2px 8px;cursor:pointer;
}
.btn-close-sticky:hover{color:#fff}

/* ===== responsive ===== */
@media(max-width:991.98px){
  :root{--space:64px}
  .navbar-collapse{
    background:rgba(38,25,18,.98);
    border-radius:0 0 14px 14px;
    padding:18px 16px;margin-top:10px;
    border-top:1px solid rgba(199,154,95,.25);
    box-shadow:0 16px 30px rgba(0,0,0,.25);
  }
  .navbar-nav .nav-link{margin:6px 0;padding:.55rem 0}
  .navbar-nav .nav-link.active::after{left:0;transform:none;width:8px;height:2px;bottom:2px}
  .nav-right{width:100%;margin-top:14px;justify-content:flex-start;flex-wrap:wrap;gap:12px}
  .page-head{min-height:280px;padding:130px 0 50px}
  .page-head h1{font-size:2.25rem}
  .process-steps{grid-template-columns:1fr;gap:24px}
  .process-step+.process-step::before{display:none}
  .booking-panel{grid-template-columns:1fr;padding:38px;gap:28px}
  .footer-col{margin-bottom:32px}
}
@media(max-width:767.98px){
  :root{--space:52px}
  .page-head{min-height:240px;padding:120px 0 42px}
  .page-head h1{font-size:1.8rem}
  .page-head .lead{font-size:1rem}
  .section-head h2{font-size:1.55rem}
  .section-head p{font-size:.92rem}
  .booking-panel{padding:26px}
  .booking-left h2{font-size:1.5rem}
  .cta-banner-section h2{font-size:1.6rem}
  .cta-banner-section p{font-size:.95rem}
  .cta-buttons{flex-direction:column;align-items:center}
  .btn-lg,.btn-outline-light{width:100%;max-width:280px}
  .sticky-bar p{font-size:.82rem;line-height:1.2}
  .btn-sticky{padding:.45rem 1.1rem;font-size:.84rem}
  .brand-main{font-size:1.08rem}
  .brand-sub{font-size:.62rem}
  .status-chip{font-size:.74rem;padding:.25rem .65rem}
}
