/* roulang page: index */
:root {
  --paper: #F3F0E8;
  --white: #FFFFFF;
  --night: #102019;
  --ink: #17211B;
  --muted: #65706A;
  --primary: #0D5C44;
  --primary-deep: #083E2F;
  --gold: #A67C52;
  --line: #D9D4C8;
  --line-deep: rgba(255, 255, 255, 0.16);
  --radius: 6px;
  --radius-btn: 4px;
  --radius-pill: 999px;
  --shadow: 0 12px 30px rgba(16, 32, 25, 0.08);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --section-space: 80px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

a:hover {
  color: var(--primary-deep);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: var(--section-space) 0;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--night);
  color: #F3F0E8;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow.is-dark::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-title {
  font-size: 42px;
  color: var(--ink);
  margin-top: 14px;
}

.section-title.light {
  color: var(--white);
}

.section-lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  margin: 12px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  transition: transform .18s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(13, 92, 68, .25);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: #fff;
}

.btn-primary::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: scaleX(1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 0 24px;
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-ghost {
  padding: 0 6px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 700;
}

.btn-ghost span {
  display: inline-block;
  transition: transform .22s ease;
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-ghost:hover span {
  transform: translateX(4px);
}

.btn-light {
  background: var(--white);
  color: var(--night);
  border-color: var(--white);
}

.btn-light:hover {
  background: #E8E2D8;
  border-color: #E8E2D8;
  color: var(--night);
}

.btn.disabled,
.btn[disabled] {
  opacity: .45;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(243, 240, 232, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-top {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink);
}

.brand-slogan {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .16em;
  margin-top: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-form {
  display: none;
  position: relative;
}

.search-form input {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  height: 38px;
  width: 170px;
  padding: 0 14px 0 36px;
  font-size: 13px;
  color: var(--ink);
  transition: border-color .2s ease, width .25s ease, box-shadow .2s ease;
}

.search-form input::placeholder {
  color: var(--muted);
}

.search-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 68, .08);
  width: 220px;
  outline: none;
}

.search-form svg {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: var(--muted);
}

.header-cta {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 42px;
}

.nav-links {
  display: flex;
  gap: 2px;
  align-self: stretch;
}

.nav-links a,
.nav-links .link {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  border-bottom: 2px solid transparent;
  min-height: 42px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  background: var(--primary);
  transform: scaleX(1);
}

.nav-hot {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-hot .hot-label {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-right: 3px;
}

.nav-hot a {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: rgba(255, 255, 255, .48);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.nav-hot a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background-color: var(--night);
  background-image:
    linear-gradient(105deg, rgba(16, 32, 25, .96) 0%, rgba(16, 32, 25, .68) 42%, rgba(16, 32, 25, .28) 78%, rgba(16, 32, 25, .42) 100%),
    linear-gradient(0deg, rgba(16, 32, 25, .42), rgba(16, 32, 25, .02)),
    url("/assets/images/backpic/back-1.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0 74px;
  overflow: hidden;
}

.hero-inner {
  max-width: 690px;
  padding: 24px 0 32px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #E6D9BE;
  margin-bottom: 22px;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: 64px;
  color: #fff;
  max-width: 12em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .88);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: start;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding: 14px 0;
  max-width: 620px;
}

.hero-meta-item {
  padding: 6px 30px 6px 0;
  margin-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.hero-meta-item:last-child {
  border-right: 0;
  margin-right: 0;
}

.meta-detail {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

.meta-value {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: .02em;
}

/* ---------- Stats ---------- */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-number em {
  font-style: normal;
  color: var(--gold);
  font-size: 24px;
  margin-left: 5px;
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Timeline ---------- */
.timeline-section {
  padding: 90px 0 80px;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.45fr);
  gap: 70px;
}

.timeline-intro .section-lead {
  max-width: 360px;
}

.timeline-list {
  position: relative;
  margin-top: 8px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 83px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-left: 120px;
  padding-bottom: 38px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 36px;
}

.timeline-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-dot::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--primary);
  box-sizing: border-box;
}

.timeline-item.timeline-featured .timeline-dot::before {
  background: var(--gold);
  border-color: var(--gold);
}

.timeline-time {
  position: absolute;
  left: 0;
  top: -2px;
  width: 64px;
  text-align: right;
  font-size: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.timeline-time small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  margin-top: 3px;
  letter-spacing: .1em;
}

.timeline-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.timeline-title + p {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 10px;
}

.details-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}

.details-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.details-trigger.active svg {
  transform: rotate(45deg);
}

.details-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
  color: var(--muted);
  font-size: 14px;
}

.details-content.open {
  max-height: 180px;
  padding-top: 12px;
}

/* ---------- Spotlight ---------- */
.spotlight-grid {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
}

.spotlight-left .section-lead {
  max-width: 640px;
  font-size: 17px;
}

.spotlight-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .75fr);
  gap: 28px;
  margin-top: 34px;
}

.cover-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.cover-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.cover-card .cover-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #E9E5D9;
}

.cover-card .cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cover-card:hover .cover-img img {
  transform: scale(1.04);
}

.cover-body {
  padding: 22px 22px 24px;
}

.cover-name {
  font-size: 22px;
  color: var(--ink);
  margin: 6px 0 4px;
  font-weight: 800;
}

.cover-role {
  font-size: 14px;
  color: var(--muted);
}

.cover-tip {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
}

.spotlight-card.small {
  align-self: end;
}

.spotlight-card.small .cover-name {
  font-size: 19px;
}

.quote-band {
  margin: 0;
  padding: 80px 0;
  background-color: var(--night);
  background-image:
    linear-gradient(rgba(16, 32, 25, .78), rgba(16, 32, 25, .85)),
    url("/assets/images/backpic/back-2.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.quote-inner {
  max-width: 830px;
  margin: 0 auto;
}

.quote-mark {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.quote-text {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.quote-sub {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

/* ---------- Tickets ---------- */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
}

.ticket-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.ticket-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.ticket-card.c-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.ticket-flag {
  position: absolute;
  top: -14px;
  right: 26px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.ticket-plan {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold);
  font-weight: 700;
}

.ticket-name {
  font-size: 26px;
  font-weight: 800;
  margin: 12px 0 6px;
  color: var(--ink);
}

.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ticket-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.ticket ul {
  margin: 12px 0 28px;
  flex: 1;
}

.ticket ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  padding: 7px 0;
}

.ticket ul svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 5px;
}

.ticket-btn {
  width: 100%;
}

/* ---------- News / Dynamic ---------- */
.news-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 40px;
  align-items: start;
}

.news-feature {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .2s ease;
}

.news-feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.news-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E9E5D9;
  position: relative;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-feature:hover .news-thumb img {
  transform: scale(1.04);
}

.news-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  background: var(--gold);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

.news-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-body h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--ink);
}

.news-body h3 a {
  color: var(--ink);
}

.news-body h3 a:hover {
  color: var(--primary);
}

.news-desc {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.news-foot .readmore {
  font-weight: 700;
  font-size: 14px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-mini {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease;
}

.news-mini:hover {
  padding-left: 8px;
}

.news-mini .mini-thumb {
  width: 78px;
  aspect-ratio: 4 / 3;
  background: #E9E5D9;
  border-radius: var(--radius);
  overflow: hidden;
}

.news-mini .mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-content {
  min-width: 0;
}

.mini-category {
  display: inline-block;
  background: rgba(13, 92, 68, .08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.mini-title {
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  display: block;
  line-height: 1.5;
  max-width: 100%;
}

.mini-title:hover {
  color: var(--primary);
}

.mini-date {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
  display: block;
  font-variant-numeric: tabular-nums;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.empty-state svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  color: var(--line);
  display: block;
}

/* ---------- FAQ / Booking ---------- */
.faq-cta-section {
  padding: 90px 0;
}

.faq-cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 70px;
}

.faq-heading {
  font-size: 34px;
  color: var(--ink);
  margin-top: 12px;
}

.faq-list {
  margin-top: 26px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.faq-question .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  background: var(--white);
  transition: transform .22s ease, background .2s ease, color .2s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer p {
  padding-bottom: 22px;
  max-width: 620px;
}

.booking-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}

.booking-title {
  font-size: 25px;
  margin-bottom: 24px;
  color: var(--ink);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-btn);
  transition: border-color .25s ease, box-shadow .25s ease;
  font-size: 15px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 68, .08);
}

.form-control.has-error {
  border-color: #C14B5A;
  box-shadow: 0 0 0 3px rgba(193, 75, 90, .08);
}

.field-error {
  display: none;
  font-size: 12px;
  color: #C14B5A;
  margin-top: 6px;
}

.form-control.has-error + .field-error {
  display: block;
}

.form-select-wrap select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2317211B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  padding-right: 42px;
}

.form-submit {
  width: 100%;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  border: 1px solid rgba(13, 92, 68, .3);
  background: rgba(13, 92, 68, .08);
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* ---------- CTA ---------- */
.cta-band {
  background: var(--primary);
  padding: 56px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .06), transparent),
    url("/assets/images/backpic/back-3.webp");
  background-size: cover;
  background-position: center;
  opacity: .2;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 4px;
}

.cta-text p {
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: rgba(255, 255, 255, .76);
  padding-top: 60px;
  padding-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 46px;
  padding-bottom: 44px;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .brand-name {
  color: #F3F0E8;
}

.footer-brand .brand-slogan {
  color: rgba(255, 255, 255, .54);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .66);
  max-width: 300px;
}

.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .66);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  margin-top: 5px;
  color: var(--gold);
  flex-shrink: 0;
}

.site-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero h1 {
    font-size: 48px;
  }

  .timeline-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .spotlight-left .section-lead {
    max-width: 100%;
  }

  .sticky-nav {
    overflow-x: auto;
  }

  .nav-hot .hot-label {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .search-form input {
    width: 82px;
  }

  .search-form input:focus {
    width: 150px;
  }

  .section-title {
    font-size: 34px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 60px;
  }

  .header-right .header-cta {
    display: none;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .main-nav.active {
    max-height: 520px;
    overflow: visible;
    padding-bottom: 18px;
  }

  .nav-links {
    flex-direction: column;
    border-top: 1px solid var(--line);
    margin-top: 6px;
  }

  .nav-links a,
  .nav-links .link {
    padding: 12px 4px;
    min-height: auto;
    border-bottom: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-hot {
    flex-wrap: wrap;
    padding: 14px 0 4px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .search-form {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-cta-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .ticket-card {
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .season-actions,
  .hero-actions {
    display: flex;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
  }

  .hero-meta-item {
    margin-right: 0;
    border: 0;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 31px;
  }

  .spotlight-cards {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 22px;
    align-items: flex-start;
  }

  .timeline-item {
    padding-left: 62px;
  }

  .timeline-item::before {
    left: 23px;
  }

  .timeline-time {
    width: auto;
    position: static;
    text-align: left;
    margin-bottom: 8px;
  }

  .timeline-list::before {
    left: 8px;
  }

  .timeline-list .timeline-item {
    padding-left: 30px;
  }

  .timeline-list .timeline-item::before {
    left: 0px;
  }

  .timeline-time {
    display: block;
    margin-bottom: 4px;
  }

  .timeline-list::before {
    left: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (min-width: 1200px) {
  .search-form {
    display: block;
  }
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }
}

/* roulang page: article */
:root {
    --paper: #F3F0E8;
    --white: #FFFFFF;
    --night: #102019;
    --ink: #17211B;
    --muted: #65706A;
    --primary: #0D5C44;
    --primary-deep: #083E2F;
    --gold: #A67C52;
    --line: #D9D4C8;
    --shadow: 0 12px 30px rgba(16,32,25,.08);
    --font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}
a {
    color: inherit;
    text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
img,
svg {
    display: block;
    max-width: 100%;
}
button,
input {
    font-family: inherit;
}
ul,
ol {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(243, 240, 232, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header-top {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 6px 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .05em;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-name {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--ink);
}
.brand-slogan {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-form {
    position: relative;
    width: 220px;
    display: flex;
    align-items: center;
}
.search-form input {
    width: 100%;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 0 34px 0 14px;
    font-size: 13px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.search-form input::placeholder {
    color: var(--muted);
}
.search-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 92, 68, .08);
}
.search-form svg {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--muted);
    pointer-events: none;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background-color .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:active {
    transform: translateY(1px);
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-deep);
    box-shadow: 0 8px 20px rgba(13, 92, 68, .18);
}
.btn-secondary {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.header-cta {
    padding: 8px 16px;
    flex-shrink: 0;
}
.nav-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
}
.nav-toggle svg {
    width: 20px;
    height: 20px;
}
.main-nav {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(217, 212, 200, .7);
}
.nav-links,
.hot-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-links li + li {
    margin-left: 30px;
}
.nav-links a {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .02em;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav-links a:hover {
    color: var(--ink);
}
.nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}
.nav-hot {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
}
.hot-label {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .06em;
}
.nav-hot a {
    font-size: 13px;
    color: var(--muted);
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.nav-hot a:hover {
    color: var(--primary);
    border-bottom-color: rgba(13, 92, 68, .35);
}
/* Breadcrumb */
.article-breadcrumb {
    max-width: 800px;
    margin: 36px auto 12px;
    padding: 0 20px;
    font-size: 13px;
    color: var(--muted);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}
.breadcrumb-list a {
    color: var(--muted);
    transition: color .2s;
}
.breadcrumb-list a:hover {
    color: var(--primary);
}
.breadcrumb-list .sep {
    color: var(--line);
    font-size: 13px;
}
/* Article lead */
.article-lead {
    max-width: 800px;
    margin: 14px auto 30px;
    padding: 0 20px 28px;
}
.article-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
}
.article-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--gold);
}
.article-lead h1 {
    font-size: 42px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: .01em;
    margin: 18px 0 16px;
    color: var(--ink);
    word-break: break-word;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
}
.category-pill {
    background: rgba(13, 92, 68, .08);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 999px;
}
.meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.meta-date svg,
.share-btn svg,
.icon-btn svg,
.arrow-link svg {
    width: 15px;
    height: 15px;
}
.article-hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0;
}
/* Article content */
.article-content-block {
    padding: 42px 0 38px;
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--ink);
}
.article-content > *:first-child {
    margin-top: 0;
}
.article-content p {
    margin: 0 0 24px;
}
.article-content h2 {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 800;
    margin: 52px 0 16px;
    color: var(--ink);
}
.article-content h3 {
    font-size: 19px;
    line-height: 1.45;
    font-weight: 800;
    margin: 34px 0 12px;
    color: var(--ink);
}
.article-content ul,
.article-content ol {
    margin: 0 0 26px;
    padding-left: 22px;
}
.article-content li {
    margin-bottom: 8px;
}
.article-content blockquote {
    border-left: 3px solid var(--primary);
    background: rgba(13, 92, 68, .04);
    margin: 32px 0;
    padding: 20px 24px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.8;
    border-radius: 0 4px 4px 0;
}
.article-content a {
    color: var(--primary);
    border-bottom: 1px solid rgba(13, 92, 68, .3);
    transition: border-color .2s, color .2s;
}
.article-content a:hover {
    color: var(--primary-deep);
    border-bottom-color: var(--primary);
}
.article-content img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--line);
}
.article-content figure {
    margin: 32px 0;
}
.article-content figcaption,
.image-caption {
    font-size: 13px;
    color: var(--muted);
    padding: 8px 0 0;
    text-align: center;
}
.article-content hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 44px 0;
}
.article-content iframe,
.article-content video {
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
}
/* Article footline */
.article-footline {
    max-width: 800px;
    margin: 24px auto 0;
    padding: 0 20px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.tag-label {
    font-size: 13px;
    color: var(--muted);
    margin-right: 4px;
}
.tag-pill {
    background: rgba(13, 92, 68, .06);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    transition: background .2s, color .2s;
}
.tag-pill:hover {
    background: var(--primary);
    color: #fff;
}
.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}
.share-btn,
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    border-radius: 50%;
    transition: color .2s, border-color .2s, background .2s, transform .15s;
}
.share-btn:hover,
.icon-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}
.share-btn:active,
.icon-btn:active {
    transform: translateY(1px);
}
/* Pager */
.article-pager {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pager-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    padding: 18px;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.pager-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}
.pager-item small {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.pager-item strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
}
.pager-item.next {
    text-align: left;
}
.pager-return {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 4px;
}
/* Related section */
.related-section {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    background: rgba(255, 255, 255, .6);
    padding: 64px 0;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 34px;
}
.related-heading-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}
.section-heading h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    margin: 8px 0 0;
    letter-spacing: .01em;
}
.section-heading .arrow-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: gap .2s;
}
.section-heading .arrow-link:hover {
    gap: 10px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.related-card {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 2px solid transparent;
    overflow: hidden;
    border-radius: 6px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.related-card:hover {
    border-top-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.card-figure {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--line);
}
.card-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.related-card:hover .card-figure img {
    transform: scale(1.04);
}
.card-figure::after {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom: 2px solid rgba(166, 124, 82, .7);
    opacity: 0;
    transition: opacity .3s;
}
.related-card:hover .card-figure::after {
    opacity: 1;
}
.related-entry {
    display: block;
    padding: 18px;
}
.entry-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}
.entry-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--line);
}
.entry-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--ink);
    margin: 0;
    transition: color .2s;
}
.related-entry:hover .entry-title {
    color: var(--primary);
}
.entry-excerpt {
    font-size: 14px;
    color: var(--muted);
    margin: 10px 0 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Not found */
.missing-section {
    padding: 90px 0 110px;
    text-align: center;
}
.missing-code {
    font-size: 80px;
    line-height: 1;
    font-weight: 800;
    color: rgba(13, 92, 68, .15);
    margin: 0 0 12px;
}
.missing-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 8px 0 14px;
}
.missing-section p {
    color: var(--muted);
    margin-bottom: 28px;
}
/* Footer */
.site-footer {
    background: var(--night);
    color: rgba(255, 255, 255, .84);
    padding: 68px 0 24px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 46px;
}
.footer-brand .brand-name {
    color: #fff;
}
.footer-brand .brand-slogan {
    color: rgba(255,255,255,.4);
}
.footer-brand p {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0 0;
    max-width: 280px;
}
.footer-col {
    min-width: 0;
}
.footer-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #fff;
    margin: 0 0 18px;
    text-transform: uppercase;
}
.footer-links,
.footer-contact {
    list-style: none;
}
.footer-links li + li {
    margin-top: 10px;
}
.footer-links a {
    color: rgba(255,255,255,.58);
    font-size: 14px;
    transition: color .2s, transform .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .25s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-links a:hover::before {
    width: 14px;
}
.footer-contact {
    display: grid;
    gap: 12px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}
.copyright {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.36);
    font-size: 13px;
}
/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }
    .related-grid {
        gap: 18px;
    }
    .nav-hot {
        display: none;
    }
}
@media (max-width: 768px) {
    .header-top {
        min-height: 54px;
    }
    .search-form {
        width: 180px;
    }
    .main-nav {
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid var(--line);
        max-height: 0;
        min-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    body.nav-open .main-nav {
        max-height: 430px;
        padding: 4px 0 12px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-links li {
        margin: 0 !important;
        border-bottom: 1px solid rgba(217,212,200,.6);
    }
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
    }
    .article-lead h1 {
        font-size: 34px;
    }
    .article-content {
        font-size: 16px;
    }
    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .article-pager {
        grid-template-columns: 1fr;
    }
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
@media (max-width: 620px) {
    .header-right {
        gap: 8px;
    }
    .search-form {
        display: none;
    }
    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    .brand-name {
        font-size: 18px;
    }
    .brand-slogan {
        display: none;
    }
    .header-cta {
        font-size: 13px;
        padding: 7px 12px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .article-content-block {
        padding: 28px 0;
    }
    .article-lead {
        margin-bottom: 12px;
        padding-bottom: 16px;
    }
    .article-lead h1 {
        margin: 14px 0 14px;
    }
}

/* roulang page: category1 */
:root {
  --paper: #F3F0E8;
  --white: #FFFFFF;
  --night: #102019;
  --ink: #17211B;
  --muted: #65706A;
  --primary: #0D5C44;
  --primary-deep: #083E2F;
  --gold: #A67C52;
  --line: #D9D4C8;
  --success: #2E7D5B;
  --error: #B5483B;
  --radius-card: 6px;
  --radius-btn: 4px;
  --shadow-hover: 0 12px 30px rgba(16, 32, 25, 0.08);
  --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-light-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 56px 0;
}

.content-section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 800;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  margin-top: 18px;
  font-size: 16px;
}

/* ========== Site Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 240, 232, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--night);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-slogan {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 260px;
  height: 36px;
  padding: 0 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 68, 0.1);
}

.search-form input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: var(--ink);
  font-size: 13px;
}

.search-form input::placeholder {
  color: var(--muted);
}

.search-form svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex-shrink: 0;
}

.header-cta {
  min-height: 36px;
  padding: 0 18px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--primary);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  position: relative;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-hot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.hot-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-right: 4px;
}

.nav-hot a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.nav-hot a:hover {
  color: var(--primary);
}

/* ========== Page Hero ========== */
.subpage-hero {
  position: relative;
  color: #fff;
  background-color: var(--night);
  background-image: linear-gradient(90deg, rgba(16, 32, 25, 0.94) 0%, rgba(16, 32, 25, 0.58) 55%, rgba(16, 32, 25, 0.42) 100%), url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  padding: 86px 0 80px;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #E3D6B8;
  margin-bottom: 16px;
}

.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.subpage-hero h1 {
  max-width: 780px;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.subpage-hero .hero-lead {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta-strip strong {
  color: #fff;
  margin-right: 4px;
}

/* ========== Intro asymmetric ========== */
.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 56px;
  align-items: center;
}

.intro-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.intro-grid:hover .intro-media img {
  transform: scale(1.03);
}

.intro-title {
  font-size: 34px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.intro-copy p {
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 680px;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 22px;
}

.intro-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 12px 15px;
}

.intro-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ========== Series list ========== */
.series-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.series-rows {
  border-top: 1px solid var(--line);
}

.series-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1.15fr) minmax(0, 0.85fr) 48px;
  gap: 28px;
  align-items: center;
  padding: 34px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.series-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--primary);
  opacity: 0;
  transform: scaleY(0.5);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.series-row:hover {
  background: rgba(13, 92, 68, 0.025);
}

.series-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.series-index {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.series-row-main h3 {
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.series-row-main p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
}

.series-row-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.series-row-meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 10px;
  flex-shrink: 0;
}

.series-row-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.series-row:hover .series-row-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ========== Stats band ========== */
.stats-band {
  background: var(--paper);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 2px solid var(--night);
  border-left: 1px solid var(--line);
}

.stat-item {
  padding: 30px 24px 28px;
  border-right: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-size: 50px;
  line-height: 1;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.stat-item span {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ========== Process ========== */
.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 12px;
}

.process-step {
  background: var(--white);
  padding: 36px 28px 30px;
  min-height: 210px;
}

.process-step .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 800;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-section {
  background: var(--paper);
}

.faq-section .faq-wrapper {
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(13, 92, 68, 0.45);
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: "×";
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-answer p {
  max-width: 820px;
}

/* ========== Booking CTA ========== */
.booking-section {
  background: var(--night);
  color: #fff;
  padding: 80px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.booking-intro h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
  color: #fff;
}

.booking-intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.booking-intro p strong {
  color: #fff;
}

.booking-list {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.booking-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.booking-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.form-panel {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 34px;
  color: var(--ink);
}

.form-panel h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field label,
.field .field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 68, 0.08);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 18px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 20px;
  font-size: 14px;
  margin-top: 12px;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--night);
  color: #dce4dd;
}

.site-footer .container {
  padding-top: 62px;
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-slogan {
  color: rgba(255, 255, 255, 0.5);
}

.brand-mark.footer-mark {
  background: var(--gold);
  color: var(--night);
}

.footer-brand p {
  margin-top: 18px;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.footer-title {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.footer-contact span {
  display: inline-block;
  overflow-wrap: anywhere;
}

.copyright {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

/* ========== Focus visible ========== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(13, 92, 68, 0.3);
  outline-offset: 2px;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .section,
  .content-section {
    padding: 64px 0;
  }

  .booking-section {
    padding: 64px 0;
  }

  .subpage-hero h1 {
    font-size: 50px;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 32px;
  }

  .series-row {
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .main-nav {
    align-items: flex-start;
  }

  .nav-hot {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-right .search-form {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-hover);
    padding: 12px 20px 22px;
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links a {
    height: 46px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    max-width: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(13, 92, 68, 0.06);
  }

  .subpage-hero {
    padding: 62px 0 56px;
  }

  .subpage-hero h1 {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .subpage-hero .hero-lead {
    font-size: 15px;
  }

  .hero-actions .btn {
    flex: 1;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-media {
    max-width: 560px;
  }

  .section-title {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 22px 18px;
  }

  .stat-item strong {
    font-size: 38px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .series-row {
    grid-template-columns: 56px 1fr 44px;
    gap: 10px 16px;
    padding: 28px 4px;
  }

  .series-row .series-row-meta {
    grid-column: 2 / 3;
    padding-top: 2px;
  }

  .series-row .series-row-arrow {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }
}

@media (max-width: 520px) {
  .section,
  .content-section {
    padding: 52px 0;
  }

  .booking-section {
    padding: 52px 0;
  }

  .header-top {
    min-height: 52px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-slogan {
    letter-spacing: 0.18em;
    max-width: 190px;
    white-space: nowrap;
  }

  .header-cta {
    padding: 0 13px;
    font-size: 13px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .subpage-hero h1 {
    font-size: 34px;
  }

  .subpage-hero .hero-lead {
    margin-bottom: 24px;
  }

  .hero-meta-strip {
    gap: 8px 18px;
    font-size: 12px;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .intro-title {
    font-size: 27px;
  }

  .stats-band .container {
    padding: 0 4px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-item strong {
    font-size: 34px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .series-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .series-row .series-index {
    font-size: 13px;
  }

  .series-row .series-row-meta {
    grid-column: auto;
  }

  .series-row .series-row-arrow {
    grid-column: auto;
    grid-row: auto;
    width: 38px;
    height: 38px;
    margin-top: 4px;
  }

  .series-index,
  .series-row-meta,
  .series-row-arrow {
    font-size: 14px;
  }

  .section-kicker {
    font-size: 12px;
  }

  .section-title {
    font-size: 27px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .form-panel h3 {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .copyright {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* roulang page: category2 */
:root{
    --paper:#F3F0E8;
    --white:#FFFFFF;
    --night:#102019;
    --ink:#17211B;
    --muted:#65706A;
    --primary:#0D5C44;
    --primary-deep:#083E2F;
    --gold:#A67C52;
    --line:#D9D4C8;
    --danger:#B65C4A;
    --success:#2E7D5B;
    --radius:6px;
    --radius-btn:4px;
    --radius-tag:999px;
    --shadow-hover:0 12px 30px rgba(16,32,25,.08);
    --font:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;scroll-padding-top:145px;}
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:var(--font);
    font-size:16px;
    line-height:1.75;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  button{font-family:inherit;}
  input,select,textarea{font-family:inherit;font-size:inherit;}
  .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
  }
  .site-header{
    position:sticky;
    top:0;
    z-index:80;
    background:rgba(243,240,232,.96);
    border-bottom:1px solid var(--line);
  }
  .header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:56px;
    gap:16px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
  }
  .brand-mark{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:6px;
    background:var(--primary);
    color:#fff;
    font-size:20px;
    font-weight:800;
  }
  .brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
  }
  .brand-name{
    font-size:20px;
    font-weight:800;
    letter-spacing:.02em;
    color:var(--ink);
  }
  .brand-slogan{
    font-size:10px;
    letter-spacing:.16em;
    color:var(--muted);
    text-transform:uppercase;
    margin-top:3px;
  }
  .header-right{
    display:flex;
    align-items:center;
    gap:18px;
  }
  .search-form{
    position:relative;
    display:flex;
    align-items:center;
  }
  .search-form input{
    width:200px;
    height:34px;
    padding:6px 34px 6px 14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:999px;
    font-size:13px;
    color:var(--ink);
    outline:none;
    transition:.25s ease;
  }
  .search-form input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(13,92,68,.08);
  }
  .search-form svg{
    position:absolute;
    right:9px;
    width:16px;
    height:16px;
    color:var(--muted);
    pointer-events:none;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 22px;
    font-size:15px;
    font-weight:600;
    border-radius:var(--radius-btn);
    border:2px solid transparent;
    cursor:pointer;
    transition:.25s ease;
  }
  .btn-primary{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
  }
  .btn-primary:hover{
    background:var(--primary-deep);
    border-color:var(--primary-deep);
    transform:translateY(-1px);
  }
  .btn-primary:active{
    transform:translateY(1px);
  }
  .btn-outline{
    background:transparent;
    border-color:var(--ink);
    color:var(--ink);
  }
  .btn-outline:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
  }
  .btn-light{
    background:#fff;
    color:var(--primary);
  }
  .btn-light:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-1px);
  }
  .btn-outline-light{
    background:transparent;
    border-color:rgba(255,255,255,.85);
    color:#fff;
  }
  .btn-outline-light:hover{
    background:#fff;
    color:var(--primary);
  }
  .header-cta{
    padding:8px 18px;
    font-size:14px;
  }
  .nav-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    padding:0;
    border:1px solid var(--line);
    border-radius:var(--radius-btn);
    background:transparent;
    cursor:pointer;
    color:var(--ink);
  }
  .nav-toggle svg{
    width:20px;
    height:20px;
  }
  .main-nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:40px;
    border-top:1px solid rgba(217,212,200,.6);
    gap:18px;
  }
  .nav-links{
    list-style:none;
    display:flex;
    margin:0;
    padding:0;
  }
  .nav-links li{
    margin:0;
    padding:0;
  }
  .nav-links a{
    display:block;
    padding:8px 22px 8px 0;
    font-size:16px;
    font-weight:500;
    color:var(--muted);
    position:relative;
    transition:color .2s;
  }
  .nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    right:22px;
    bottom:3px;
    height:2px;
    background:var(--gold);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
  }
  .nav-links a:hover{
    color:var(--ink);
  }
  .nav-links a:hover::after{
    transform:scaleX(1);
  }
  .nav-links a.active{
    color:var(--primary);
    font-weight:700;
  }
  .nav-links a.active::after{
    transform:scaleX(1);
    background:var(--gold);
  }
  .nav-hot{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    color:var(--muted);
    white-space:nowrap;
    overflow:hidden;
  }
  .hot-label{
    font-size:12px;
    padding:2px 12px;
    border-radius:999px;
    background:rgba(166,124,82,.14);
    color:var(--gold);
    flex-shrink:0;
  }
  .nav-hot a{
    color:var(--muted);
    transition:color .2s;
  }
  .nav-hot a:hover{
    color:var(--primary);
  }
  .category-banner{
    background:
      linear-gradient(102deg,rgba(16,32,25,.96) 0%,rgba(16,32,25,.82) 52%,rgba(13,92,68,.52) 100%),
      url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
    color:#fff;
    border-bottom:1px solid var(--line);
    padding:72px 0 58px;
    position:relative;
  }
  .category-banner .container{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    gap:56px;
    align-items:end;
  }
  .crumbs{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:rgba(255,255,255,.7);
    margin-bottom:18px;
  }
  .crumbs a{color:rgba(255,255,255,.82);}
  .crumbs a:hover{color:#fff;}
  .eyebrow{
    display:inline-block;
    font-size:12px;
    letter-spacing:.18em;
    color:var(--gold);
    text-transform:uppercase;
    margin-bottom:14px;
  }
  .eyebrow-light{
    color:#d9b98a;
  }
  .category-banner h1{
    margin:0 0 18px;
    font-size:clamp(34px,6vw,68px);
    font-weight:800;
    line-height:1.15;
    letter-spacing:.01em;
  }
  .category-banner .lead{
    max-width:660px;
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.86);
  }
  .banner-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
  }
  .banner-actions .btn{
    min-width:150px;
  }
  .banner-facts{
    padding:26px 26px 22px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:var(--radius);
    background:rgba(255,255,255,.06);
  }
  .banner-facts .fact{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.14);
  }
  .banner-facts .fact:last-child{
    border-bottom:0;
  }
  .banner-facts .fact strong{
    font-size:26px;
    font-weight:800;
    color:var(--white);
    flex-shrink:0;
    font-variant-numeric:tabular-nums;
  }
  .banner-facts .fact span{
    font-size:14px;
    color:rgba(255,255,255,.78);
    text-align:right;
  }
  .intro-area{
    background:var(--paper);
    padding:80px 0;
  }
  .intro-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 260px;
    gap:70px;
  }
  .intro-article h2,
  .section-title h2,
  .faq-title h2{
    margin:0 0 28px;
    font-size:clamp(28px,3.6vw,42px);
    line-height:1.25;
    font-weight:800;
    letter-spacing:.01em;
  }
  .intro-article p{
    color:#37423C;
    margin-bottom:18px;
  }
  .intro-article .drop{
    font-size:18px;
    color:var(--ink);
  }
  .intro-points{
    margin:34px 0 0;
    padding:0;
    list-style:none;
    border-top:1px solid var(--line);
  }
  .intro-points li{
    display:grid;
    grid-template-columns:34px 1fr;
    gap:16px;
    padding:18px 0;
    border-bottom:1px solid var(--line);
  }
  .intro-points .p-number{
    font-size:15px;
    font-weight:800;
    color:var(--gold);
  }
  .intro-points strong{
    display:block;
    font-size:17px;
    margin-bottom:4px;
  }
  .intro-points p{
    margin:0;
    font-size:15px;
    color:var(--muted);
  }
  .anchor-rail{
    position:relative;
  }
  .anchor-card{
    position:sticky;
    top:148px;
    padding:22px 20px;
    background:#fff;
    border:1px solid var(--line);
    border-top:4px solid var(--primary);
    border-radius:var(--radius);
  }
  .anchor-card h3{
    margin:0 0 7px;
    font-size:17px;
  }
  .anchor-card p{
    margin:0 0 14px;
    font-size:13px;
    color:var(--muted);
  }
  .anchor-card ul{
    list-style:none;
    margin:0;
    padding:0;
  }
  .anchor-card a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    font-size:14px;
    color:var(--ink);
    border-bottom:1px dashed var(--line);
  }
  .anchor-card a:hover{
    color:var(--gold);
  }
  .programs-section{
    padding:80px 0;
  }
  .section-title{
    display:flex;
    flex-wrap:wrap;
    align-items:end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:50px;
  }
  .section-title p{
    max-width:520px;
    margin:0;
    color:var(--muted);
  }
  .program-list{
    display:flex;
    flex-direction:column;
    gap:0;
  }
  .program-card{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(0,1.15fr);
    border-top:1px solid var(--line);
    gap:44px;
    padding:40px 0;
    align-items:center;
    position:relative;
  }
  .program-card:last-child{
    border-bottom:1px solid var(--line);
  }
  .program-media{
    overflow:hidden;
    border-radius:var(--radius);
    background:#e4e0d6;
    position:relative;
  }
  .program-media::after{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid rgba(23,33,27,.05);
    border-radius:var(--radius);
  }
  .program-media img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    transition:transform .6s ease;
  }
  .program-card:nth-child(even) .program-media{
    order:2;
  }
  .program-card:hover .program-media img{
    transform:scale(1.04);
  }
  .program-card .program-media::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:3px;
    width:100%;
    background:var(--primary);
    z-index:2;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
  }
  .program-card:nth-child(even) .program-media::before{
    transform-origin:right;
  }
  .program-card:hover .program-media::before{
    transform:scaleX(1);
  }
  .program-no{
    font-size:14px;
    font-weight:800;
    color:var(--gold);
    letter-spacing:.08em;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .program-no::after{
    content:"";
    width:34px;
    height:1px;
    background:var(--gold);
  }
  .program-card h3{
    margin:0 0 14px;
    font-size:clamp(22px,3vw,32px);
    font-weight:800;
    line-height:1.3;
  }
  .program-card .program-desc{
    margin:0 0 20px;
    color:#435049;
  }
  .tag-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:16px 0;
  }
  .tag{
    display:inline-block;
    padding:3px 12px;
    border-radius:999px;
    background:rgba(13,92,68,.09);
    color:var(--primary);
    font-size:13px;
  }
  .program-params{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-bottom:20px;
    padding-top:2px;
  }
  .program-params div{
    border-left:2px solid var(--gold);
    padding-left:10px;
    font-size:13px;
  }
  .program-params dt{
    font-size:12px;
    color:var(--muted);
  }
  .program-params dd{
    margin:0;
    font-weight:700;
    color:var(--ink);
  }
  .text-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-weight:600;
    color:var(--primary);
    font-size:15px;
    transition:.2s;
  }
  .text-link svg{
    width:16px;
    height:16px;
    transition:transform .25s;
  }
  .text-link:hover{
    color:var(--gold);
  }
  .text-link:hover svg{
    transform:translateX(4px);
  }
  .coach-section{
    background:#fff;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:80px 0;
  }
  .coach-grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:24px;
  }
  .coach-card{
    grid-column:span 4;
    border-radius:var(--radius);
    border:1px solid var(--line);
    background:var(--paper);
    overflow:hidden;
    transition:box-shadow .3s ease;
  }
  .coach-card:hover{
    box-shadow:var(--shadow-hover);
  }
  .coach-card--feature{
    grid-column:span 5;
    display:flex;
    flex-direction:column;
  }
  .coach-card--feature + .coach-card{
    grid-column:span 7;
  }
  .coach-card--feature .coach-photo img{
    aspect-ratio:16/11;
  }
  .coach-photo{
    overflow:hidden;
    background:#e5e0d6;
  }
  .coach-photo img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    transition:transform .5s;
  }
  .coach-photo img:hover{
    transform:scale(1.04);
  }
  .coach-info{
    padding:22px;
    position:relative;
  }
  .coach-info::before{
    content:"";
    position:absolute;
    top:0;
    left:22px;
    right:22px;
    height:2px;
    background:var(--primary);
    transition:background .3s;
  }
  .coach-card:hover .coach-info::before{
    background:var(--gold);
  }
  .coach-role{
    display:block;
    font-size:12px;
    letter-spacing:.1em;
    color:var(--gold);
    margin-bottom:4px;
  }
  .coach-info h3{
    margin:0 0 8px;
    font-size:24px;
    font-weight:800;
  }
  .coach-info p{
    margin:0;
    font-size:14px;
    color:var(--muted);
  }
  .coach-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:14px;
  }
  .stats-band{
    background:var(--night);
    color:#fff;
    padding:64px 0;
  }
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
  }
  .stat-item{
    border-left:1px solid rgba(255,255,255,.16);
    padding-left:24px;
  }
  .stat-item .stat-num{
    display:block;
    font-size:50px;
    font-weight:800;
    line-height:1;
    color:#fff;
    margin-bottom:10px;
    font-variant-numeric:tabular-nums;
  }
  .stat-item .stat-unit{
    font-size:20px;
    color:var(--gold);
    font-weight:700;
    margin-left:4px;
  }
  .stat-item p{
    margin:0;
    font-size:15px;
    color:rgba(255,255,255,.72);
  }
  .process-section{
    background:var(--paper);
    padding:80px 0;
  }
  .process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:44px;
  }
  .process-step{
    position:relative;
    padding-top:26px;
    border-top:2px solid var(--primary);
  }
  .process-step::before{
    content:"";
    position:absolute;
    top:-6px;
    left:0;
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--gold);
  }
  .process-step .step-no{
    display:block;
    font-size:14px;
    color:var(--gold);
    font-weight:800;
    letter-spacing:.06em;
    margin-bottom:8px;
  }
  .process-step h3{
    margin:0 0 9px;
    font-size:21px;
    font-weight:800;
  }
  .process-step p{
    margin:0;
    color:var(--muted);
    font-size:15px;
  }
  .quote-band{
    background:
      linear-gradient(180deg,rgba(16,32,25,.88),rgba(16,32,25,.82)),
      url('/assets/images/backpic/back-1.png') center/cover no-repeat;
    color:#fff;
    padding:90px 0;
    text-align:center;
  }
  .quote-band blockquote{
    margin:0 auto;
    max-width:760px;
    font-size:clamp(25px,4vw,44px);
    line-height:1.55;
    font-weight:700;
    letter-spacing:.02em;
  }
  .quote-band cite{
    display:block;
    margin-top:24px;
    font-size:14px;
    font-style:normal;
    letter-spacing:.16em;
    color:var(--gold);
  }
  .faq-section{
    background:#fff;
    padding:80px 0;
  }
  .faq-layout{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.4fr);
    gap:70px;
  }
  .faq-title h2{
    margin-bottom:18px;
  }
  .faq-title p{
    margin:0 0 30px;
    color:var(--muted);
  }
  .faq-list{
    list-style:none;
    margin:0;
    padding:0;
  }
  .faq-item{
    border-bottom:1px solid var(--line);
  }
  .faq-toggle{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    background:transparent;
    border:0;
    padding:20px 2px;
    text-align:left;
    font-size:17px;
    font-weight:600;
    color:var(--ink);
    cursor:pointer;
    transition:color .2s;
  }
  .faq-toggle:hover{
    color:var(--primary);
  }
  .faq-toggle:focus{
    outline:2px solid var(--primary);
    outline-offset:2px;
  }
  .faq-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    flex-shrink:0;
    border:1px solid var(--line);
    border-radius:50%;
    color:var(--gold);
    position:relative;
    transition:all .25s;
  }
  .faq-icon::before,
  .faq-icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:10px;
    height:2px;
    background:currentColor;
    transform:translate(-50%,-50%);
    transition:transform .25s;
  }
  .faq-icon::after{
    transform:translate(-50%,-50%) rotate(90deg);
  }
  .faq-item.is-open .faq-icon{
    transform:rotate(45deg);
    border-color:var(--primary);
    color:var(--primary);
  }
  .faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
  }
  .faq-answer > div{
    padding:0 40px 22px 2px;
    color:var(--muted);
    line-height:1.8;
  }
  .faq-item.is-open .faq-answer{
    max-height:400px;
  }
  .cta-section{
    background:var(--night);
    color:#fff;
    padding:80px 0;
  }
  .cta-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);
    gap:70px;
    align-items:center;
  }
  .cta-copy .eyebrow{
    color:#d9b98a;
  }
  .cta-copy h2{
    font-size:clamp(28px,3.8vw,44px);
    line-height:1.25;
    margin:0 0 18px;
  }
  .cta-copy p{
    color:rgba(255,255,255,.78);
    margin:0 0 22px;
  }
  .cta-points{
    list-style:none;
    margin:0;
    padding:0;
  }
  .cta-points li{
    padding:8px 0 4px 28px;
    position:relative;
    color:rgba(255,255,255,.86);
  }
  .cta-points li::before{
    content:"";
    position:absolute;
    left:0;
    top:18px;
    width:14px;
    height:2px;
    background:var(--gold);
  }
  .booking-card{
    background:var(--paper);
    border-radius:var(--radius);
    padding:34px;
    color:var(--ink);
  }
  .booking-card h3{
    margin:0 0 24px;
    font-size:24px;
  }
  .form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
  }
  .form-field label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:7px;
    color:var(--ink);
  }
  .form-field input,
  .form-field select{
    width:100%;
    height:44px;
    padding:0 14px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius-btn);
    color:var(--ink);
    outline:none;
    transition:.2s;
  }
  .form-field input:focus,
  .form-field select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(13,92,68,.08);
  }
  .form-field input.error{
    border-color:var(--danger);
    box-shadow:0 0 0 3px rgba(182,92,74,.1);
  }
  .form-note{
    margin:14px 0 0;
    font-size:12px;
    color:var(--muted);
  }
  .booking-card .btn{
    width:100%;
    margin-top:20px;
    position:relative;
    overflow:hidden;
  }
  .booking-card .btn::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    height:2px;
    width:100%;
    background:var(--gold);
    transform:translateX(-101%);
    transition:transform .35s ease;
  }
  .booking-card .btn:hover::after{
    transform:translateX(0);
  }
  .site-footer{
    background:var(--night);
    color:rgba(255,255,255,.72);
    padding:64px 0 0;
    font-size:14px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.4fr;
    gap:44px;
    padding-bottom:44px;
  }
  .site-footer .brand{
    margin-bottom:18px;
  }
  .site-footer .brand-name{
    color:#fff;
  }
  .site-footer .brand-slogan{
    color:rgba(255,255,255,.5);
  }
  .footer-brand p{
    color:rgba(255,255,255,.62);
    line-height:1.8;
    margin:0;
    max-width:300px;
  }
  .footer-title{
    color:#fff;
    font-size:16px;
    margin:0 0 16px;
  }
  .footer-links{
    list-style:none;
    margin:0;
    padding:0;
  }
  .footer-links li{
    margin-bottom:8px;
  }
  .footer-links a{
    color:rgba(255,255,255,.68);
    transition:color .2s;
  }
  .footer-links a:hover{
    color:var(--gold);
  }
  .footer-contact{
    list-style:none;
    margin:0;
    padding:0;
  }
  .footer-contact li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    color:rgba(255,255,255,.7);
  }
  .footer-contact svg{
    width:16px;
    height:16px;
    flex-shrink:0;
    color:var(--gold);
  }
  .copyright{
    border-top:1px solid rgba(255,255,255,.12);
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    gap:16px;
    font-size:13px;
    color:rgba(255,255,255,.46);
  }
  @media (max-width:1024px){
    .main-nav{
      flex-direction:column;
      align-items:flex-start;
    }
    .intro-layout{
      grid-template-columns:1fr;
      gap:40px;
    }
    .anchor-card{
      position:static;
    }
    .nav-hot{
      padding:0 0 10px;
    }
    .coach-card{
      grid-column:span 6;
    }
    .coach-card--feature{
      grid-column:span 12;
    }
    .coach-card--feature + .coach-card{
      grid-column:span 6;
    }
    .faq-layout{
      grid-template-columns:1fr;
      gap:36px;
    }
    .cta-layout{
      grid-template-columns:1fr;
      gap:50px;
    }
  }
  @media (max-width:820px){
    .category-banner .container{
      grid-template-columns:1fr;
      gap:35px;
    }
    .header-cta{
      display:none;
    }
    .nav-toggle{
      display:inline-flex;
    }
    .search-form input{
      width:150px;
    }
    .main-nav{
      display:none;
      border-top:1px solid var(--line);
      background:var(--paper);
      padding-bottom:18px;
    }
    .main-nav.is-open{
      display:flex;
    }
    .nav-links{
      flex-direction:column;
      width:100%;
    }
    .nav-links a{
      padding:9px 0;
    }
    .nav-links a::after{
      display:none;
    }
    .program-card,
    .program-card:nth-child(even){
      grid-template-columns:1fr;
      gap:22px;
    }
    .program-card:nth-child(even) .program-media{
      order:0;
    }
    .program-params{
      grid-template-columns:1fr 1fr;
    }
    .stats-grid{
      grid-template-columns:1fr 1fr;
      gap:26px;
    }
    .process-grid{
      grid-template-columns:1fr 1fr;
    }
    .footer-grid{
      grid-template-columns:1fr 1fr;
      gap:34px;
    }
    .booking-card{
      padding:26px;
    }
  }
  @media (max-width:560px){
    .header-top{
      min-height:52px;
      gap:10px;
    }
    .brand-slogan{
      display:none;
    }
    .brand-name{
      font-size:18px;
    }
    .search-form{
      display:none;
    }
    .brand-mark{
      width:34px;
      height:34px;
    }
    .category-banner{
      padding:52px 0 44px;
    }
    .banner-actions .btn{
      width:100%;
    }
    .banner-facts .fact strong{
      font-size:22px;
    }
    .stats-grid{
      grid-template-columns:1fr 1fr;
    }
    .stat-item{
      padding-left:14px;
    }
    .stat-item .stat-num{
      font-size:34px;
    }
    .process-grid{
      grid-template-columns:1fr;
    }
    .coach-card,
    .coach-card--feature,
    .coach-card--feature + .coach-card{
      grid-column:1 / -1;
    }
    .form-row{
      grid-template-columns:1fr;
    }
    .footer-grid{
      grid-template-columns:1fr;
      gap:30px;
    }
    .copyright{
      flex-direction:column;
      text-align:center;
    }
  }
