/* roulang page: index */
:root {
  --primary: #125C44;
  --primary-dark: #0C3B2C;
  --accent: #D2664D;
  --bg: #F6F2EA;
  --white: #FFFFFF;
  --sand: #ECE5D8;
  --sage: #E4E8E1;
  --text: #1D2A24;
  --muted: #5E6E64;
  --gold: #C9A15F;
  --border: rgba(18, 92, 68, .14);
  --shadow-sm: 0 1px 3px rgba(29, 42, 36, .05), 0 10px 24px rgba(29, 42, 36, .05);
  --shadow-md: 0 2px 8px rgba(29, 42, 36, .06), 0 18px 36px rgba(29, 42, 36, .08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  background-image: radial-gradient(rgba(18, 92, 68, .028) 1px, transparent 1px);
  background-size: 20px 20px;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
}

.center-head p {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  height: 48px;
  padding: 0 26px;
  transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(18, 92, 68, .22);
}

.btn-primary:hover {
  background: #0e4c37;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .08);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: #f2f0eb;
}

.btn-sm {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(18, 92, 68, .09);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.chip-accent {
  background: rgba(210, 102, 77, .13);
  color: #b44d36;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
  transition: color .2s ease;
}

.text-arrow span {
  transition: transform .2s ease;
}

.text-arrow:hover {
  color: var(--accent);
}

.text-arrow:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 92, 68, .09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sand);
  border-radius: 999px;
  padding-left: 16px;
  height: 42px;
  width: 220px;
  transition: background .2s ease, box-shadow .2s ease;
}

.header-search:focus-within {
  background: var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.search-input {
  border: 0;
  background: transparent;
  width: 100%;
  font-size: 14px;
  height: 100%;
}

.search-input::placeholder {
  color: var(--muted);
  opacity: .85;
}

.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  transition: background .2s ease;
}

.btn-search:hover {
  background: var(--primary-dark);
}

.btn-search svg,
.btn-square svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0 10px;
  transition: background .2s ease;
}

.nav-toggle:hover {
  background: var(--sage);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  border-radius: 2px;
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav-extra {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  background-image: linear-gradient(100deg, rgba(12, 59, 44, .97) 0%, rgba(18, 92, 68, .88) 45%, rgba(12, 59, 44, .55) 100%), url("/assets/images/backpic/back-1.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background-image: linear-gradient(90deg, var(--accent) 0 22%, var(--gold) 22% 24%, var(--accent) 24% 45%, var(--gold) 45% 47%, var(--accent) 47% 70%, var(--gold) 70% 72%, var(--accent) 72% 100%);
  opacity: .6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #f0ede5;
  margin-bottom: 28px;
}

.kicker-cal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-title strong {
  font-weight: 800;
  color: #fff;
}

.hero-lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}

.hero-note svg,
.hero-note i {
  width: 16px;
  height: 16px;
}

/* Latest Section */
.latest-section {
  background: var(--bg);
}

.latest-section .split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.latest-section .split-head .section-head {
  margin-bottom: 0;
}

.latest-section .head-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
}

.latest-section .head-link:hover {
  background: var(--primary);
  color: #fff;
}

.latest-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  margin-top: 36px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.daily-feature {
  display: flex;
  flex-direction: column;
}

.feature-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--sand);
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.daily-feature:hover .feature-media img {
  transform: scale(1.03);
}

.feature-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-time {
  font-size: 13px;
  color: var(--muted);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.33;
  margin-top: 18px;
  margin-bottom: 10px;
}

.feature-title a {
  transition: color .2s ease;
}

.feature-title a:hover {
  color: var(--primary);
}

.feature-summary {
  color: var(--muted);
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.daily-list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.daily-row {
  display: grid;
  grid-template-columns: 96px auto 28px;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(18, 92, 68, .07);
  transition: background .2s ease, transform .2s ease;
}

.daily-row:last-child {
  border-bottom: 0;
}

.daily-row:hover {
  background: #faf8f2;
  transform: translateX(3px);
}

.row-date {
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.row-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-arrow {
  color: var(--primary);
  font-size: 18px;
}

.latest-empty {
  grid-column: 1 / -1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px dashed var(--border);
  padding: 54px 24px;
  text-align: center;
}

.latest-empty p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* Channel Matrix */
.channels-section {
  background: var(--white);
}

.channel-list {
  display: flex;
  flex-direction: column;
}

.channel-row {
  display: grid;
  grid-template-columns: 74px 1fr 48px;
  align-items: center;
  gap: 22px;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(18, 92, 68, .09);
  border-radius: 4px;
  transition: background .22s ease, transform .22s ease;
}

.channel-row:first-child {
  border-top: 1px solid rgba(18, 92, 68, .09);
}

.channel-row:hover {
  background: #faf8f1;
  transform: translateX(2px);
}

.channel-no {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .02em;
}

.channel-body {
  min-width: 0;
}

.channel-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.channel-desc {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 760px;
}

.channel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 20px;
  transition: all .2s ease;
}

.channel-row:hover .channel-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Stats / dark */
.stats-section {
  position: relative;
  background-color: var(--primary-dark);
  background-image: linear-gradient(135deg, rgba(18, 92, 68, .76), rgba(12, 59, 44, .95)), url("/assets/images/backpic/back-2.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 161, 95, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 161, 95, .08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 20% 10%, #000 0%, transparent 70%);
  pointer-events: none;
}

.stats-section .section-head {
  position: relative;
  z-index: 1;
}

.stats-section .section-head h2 {
  color: #fff;
}

.stats-section .section-head p {
  color: rgba(255, 255, 255, .72);
}

.stats-section .eyebrow {
  color: #e6c99b;
}

.stats-section .eyebrow::before {
  background-color: #e6c99b;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 44px 26px;
  margin-top: 44px;
}

.stat-cell {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 14px;
}

.stat-cell:last-child {
  border-right: 0;
}

.stat-cell strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.stat-cell span {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .74);
}

.stats-foot {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  margin-top: 30px;
}

/* Topics / Features */
.topics-section {
  background: var(--bg);
}

.topic-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.topic-panel + .topic-panel {
  margin-top: 32px;
}

.topic-panel.panel-reverse .topic-media {
  order: 2;
}

.topic-panel.panel-reverse .topic-content {
  order: 1;
}

.topic-media {
  min-height: 300px;
  background: var(--sand);
}

.topic-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.topic-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.topic-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
  margin-top: 16px;
  margin-bottom: 12px;
}

.topic-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 24px;
}

/* Path steps */
.path-section {
  background: var(--white);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  counter-reset: path;
}

.path-step {
  position: relative;
  padding: 40px 26px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  transition: box-shadow .25s ease, transform .25s ease;
}

.path-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.path-no {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(210, 102, 77, .1);
  border: 1px solid rgba(210, 102, 77, .2);
}

.path-step h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin-top: 22px;
  margin-bottom: 10px;
}

.path-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.path-step .text-arrow {
  font-size: 14px;
}

/* FAQ */
.faq-section {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro .section-head {
  margin-bottom: 18px;
}

.faq-intro p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.faq-list {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 8px 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(18, 92, 68, .08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  transition: color .2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact CTA */
.contact-section {
  background-color: var(--primary);
  background-image:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .08), transparent 26%),
    linear-gradient(120deg, #125C44, #0c4734);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.contact-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: 1.3;
  color: #fff;
  margin: 16px 0 18px;
}

.contact-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.contact-copy .meta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
}

.meta-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(6px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .88);
}

.form-group label span {
  color: var(--gold);
}

.form-control {
  width: 100%;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .96);
  padding: 0 14px;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea.form-control {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23125C44' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 95, .22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, .52);
  margin-top: 12px;
  text-align: center;
}

.contact-form-wrap .btn-submit {
  width: 100%;
  margin-top: 4px;
}

.btn-submit {
  background: var(--white);
  color: var(--primary-dark);
  height: 52px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .15s ease;
}

.btn-submit:hover {
  background: #f0ece1;
  transform: translateY(2px);
}

/* Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, .7);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  max-width: 340px;
  color: rgba(255, 255, 255, .6);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .44);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .6);
}

/* Back to top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 59, 44, .32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, background .2s ease, transform .2s ease;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1099px) {
  .container {
    width: min(100% - 40px, 1200px);
  }

  .header-search {
    width: 170px;
  }

  .channel-row {
    grid-template-columns: 60px 1fr 44px;
    padding: 24px 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-cell {
    border-right: 0;
  }

  .stat-cell:nth-child(2) {
    border-right: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
  }

  .contact-inner {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 940px) {
  .header-search {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .latest-grid {
    grid-template-columns: 1fr;
  }

  .latest-empty {
    grid-column: auto;
  }

  .topic-panel,
  .topic-panel.panel-reverse {
    grid-template-columns: 1fr;
  }

  .topic-panel .topic-media,
  .topic-panel.panel-reverse .topic-media {
    order: 0;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .hero {
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  body.nav-open {
    overflow: hidden;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header .header-inner {
    height: 64px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .header-cta {
    height: 38px;
    font-size: 13px;
    padding: 0 15px;
  }

  /* Mobile nav drawer */
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: min(84vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: -18px 0 48px rgba(12, 59, 44, .2);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 96px 28px 32px;
    transform: translateX(100%);
    transition: transform .28s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav .nav-link {
    width: 100%;
    font-size: 18px;
    font-family: var(--font-serif);
    padding: 12px 0;
    border-bottom: 1px solid var(--sand);
    color: var(--text);
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .nav-link.active {
    color: var(--primary);
  }

  .main-nav-extra {
    display: block;
    margin-top: 22px;
    width: 100%;
  }

  .main-nav-extra .btn {
    width: 100%;
  }

  .main-nav-extra {
    display: none;
  }

  .nav-open .main-nav {
    transform: translateX(0);
  }

  .header-search.mobile-expand {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .split-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-section .split-head {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 74px 0;
  }

  .hero-inner {
    padding: 24px 0;
  }

  .hero-kicker {
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .channel-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 8px;
  }

  .channel-no {
    font-size: 17px;
    line-height: 1.6;
    width: 32px;
    flex-shrink: 0;
  }

  .channel-arrow {
    display: none;
  }

  .channel-body {
    flex: 1;
  }

  .channel-name {
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 28px 12px;
    gap: 28px 12px;
  }

  .topic-content {
    padding: 26px 22px;
  }

  .topic-content h3 {
    font-size: 22px;
  }

  .topic-media,
  .topic-panel .topic-media,
  .topic-panel.panel-reverse .topic-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-intro {
    position: static;
  }

  .faq-list {
    padding: 4px 20px;
  }

  .faq-item summary {
    font-size: 15px;
    padding: 18px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 4px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero-title {
    font-size: 34px;
  }

  .stat-cell strong {
    font-size: 40px;
  }

  .topic-panel {
    border-radius: 12px;
  }
}

/* roulang page: article */
:root {
    --primary: #125C44;
    --primary-dark: #0C3B2C;
    --primary-deep: #082C20;
    --accent: #D2664D;
    --accent-soft: #F2DAD4;
    --bg: #F6F2EA;
    --bg-white: #FFFFFF;
    --bg-sand: #ECE5D8;
    --bg-green-soft: #E4E8E1;
    --ink: #1D2A24;
    --muted: #5E6E64;
    --line: #DDD6CB;
    --gold: #C9A15F;
    --shadow-sm: 0 3px 12px rgba(29, 42, 36, .05);
    --shadow-md: 0 10px 30px rgba(29, 42, 36, .06), 0 24px 60px rgba(29, 42, 36, .05);
    --radius: 12px;
    --radius-sm: 8px;
    --max-width: 1200px;
    --font-title: Georgia, "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
    --font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", "Segoe UI", sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.main {
    min-height: 60vh;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(18, 92, 68, .18);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(2px);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(6, 32, 23, .18);
}

.btn-light:hover {
    background: #F3F7F3;
    transform: translateY(2px);
}

.btn-ghost-light {
    border-color: rgba(255, 255, 255, .76);
    color: #fff;
    background: transparent;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(2px);
}

.btn-sm {
    height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(29, 42, 36, .02);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
}

.brand-name {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .8px;
    color: var(--ink);
    font-family: var(--font-title);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    display: block;
    padding: 12px 17px;
    font-size: 15px;
    color: #46534d;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.nav-link:hover {
    color: var(--primary);
    background: #F4F1EA;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 5px;
    height: 2px;
    background: var(--accent);
    border-radius: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    height: 40px;
    width: 190px;
    background: #F6F4EF;
    border: 1px solid var(--line);
    border-radius: 999px 0 0 999px;
    padding: 0 48px 0 18px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.search-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(18, 92, 68, .12);
}

.btn-search {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.btn-search svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.btn-search:hover {
    color: var(--accent);
}

.header-cta {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid var(--line);
    align-items: center;
    padding: 0;
}

.nav-toggle-bar {
    width: 19px;
    height: 2px;
    background: var(--primary);
    border-radius: 4px;
    transition: transform .2s, opacity .2s;
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.breadcrumb a {
    color: var(--muted);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .breadcrumb-current {
    color: var(--ink);
    font-weight: 600;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

/* Article layout */
.article-page {
    padding: 48px 0 72px;
}

.article-shell {
    display: block;
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 48px;
    align-items: start;
}

.article-main-col {
    min-width: 0;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 20px;
}

.article-title {
    margin: 0 0 18px;
    font-family: var(--font-title);
    font-size: clamp(33px, 4.4vw, 46px);
    line-height: 1.32;
    font-weight: 700;
    letter-spacing: .2px;
    color: #122017;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    color: var(--muted);
    font-size: 14px;
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #B7AFA3;
}

.article-excerpt {
    margin: 0 0 36px;
    padding: 20px 22px 20px 24px;
    background: var(--bg-sand);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-title);
    font-size: 17px;
    line-height: 1.75;
    color: #2E4038;
}

/* Article content style */
.cms-content {
    color: #202C26;
    font-size: 16.5px;
    line-height: 1.85;
    letter-spacing: .02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cms-content > * + * {
    margin-top: 1.15em;
}

.cms-content h2 {
    font-family: var(--font-title);
    font-size: 27px;
    line-height: 1.4;
    margin: 1.6em 0 .7em;
    color: var(--primary-dark);
    padding-top: 18px;
}

.cms-content h3 {
    font-family: var(--font-title);
    font-size: 22px;
    line-height: 1.45;
    margin: 1.5em 0 .65em;
    color: #1D3B2F;
}

.cms-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.3em 0 .5em;
}

.cms-content p {
    margin: 0 0 1.2em;
}

.cms-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.cms-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(18, 92, 68, .3);
    transition: color .2s, text-decoration-color .2s;
}

.cms-content a:hover {
    color: var(--accent);
    text-decoration-color: currentColor;
}

.cms-content ul,
.cms-content ol {
    padding-left: 1.35em;
    margin: 1.1em 0;
}

.cms-content li {
    margin: .45em 0;
}

.cms-content li::marker {
    color: var(--accent);
}

.cms-content blockquote {
    margin: 1.6em 0;
    padding: 18px 22px 18px 24px;
    background: var(--bg-sand);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #30423A;
    font-family: var(--font-title);
}

.cms-content blockquote p:last-child {
    margin-bottom: 0;
}

.cms-content hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 2.4em 0;
}

.cms-content img {
    border-radius: var(--radius);
    margin: 1.6em 0;
    box-shadow: var(--shadow-sm);
}

.cms-content figure {
    margin: 1.8em 0;
}

.cms-content figure img {
    margin: 0;
}

.cms-content figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8em 0;
    font-size: 15px;
    border: 1px solid var(--line);
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.cms-content th,
.cms-content td {
    padding: 12px 14px;
    text-align: left;
    border: 1px solid var(--line);
}

.cms-content thead th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.cms-content tbody tr:nth-child(even) {
    background: #F8F5EF;
}

.cms-content code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: .9em;
    background: var(--bg-sand);
    border: 1px solid #EAE2D4;
    border-radius: 5px;
    padding: .2em .45em;
    color: #243B31;
}

.cms-content pre {
    background: var(--primary-dark);
    color: #F7F4ED;
    padding: 18px 20px;
    border-radius: var(--radius);
    overflow-x: auto;
    line-height: 1.65;
    font-size: 14px;
    margin: 1.6em 0;
}

.cms-content pre code {
    background: transparent;
    border: 0;
    color: inherit;
    padding: 0;
}

.article-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.article-footer-nav .back-home {
    color: var(--muted);
    font-size: 14px;
}

.article-footer-nav .back-home:hover {
    color: var(--primary);
}

.article-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: auto;
}

.article-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--bg-green-soft);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    transition: background .2s, color .2s, transform .15s;
}

.article-cta-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* Article aside */
.article-aside {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aside-card {
    background: #fff;
    border: 1px solid #F0E9DE;
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
}

.aside-card .aside-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 11px;
}

.aside-card h3 {
    margin: 0 0 9px;
    font-family: var(--font-title);
    font-size: 21px;
    line-height: 1.4;
}

.aside-card p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--muted);
}

.aside-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: color .2s;
}

.aside-link svg {
    width: 15px;
    height: 15px;
    margin-left: 4px;
    transition: transform .2s;
}

.aside-link:hover {
    color: var(--accent);
}

.aside-link:hover svg {
    transform: translateX(3px);
}

.aside-tips {
    background: var(--primary);
    color: #F8F2E9;
    border: 0;
}

.aside-tips .aside-label {
    color: var(--gold);
}

.aside-tips h3 {
    color: #fff;
}

.aside-tips p {
    color: rgba(255, 255, 255, .82);
}

/* Not found */
.notfound-card {
    max-width: 700px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 48px 44px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.notfound-card .notfound-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    background: var(--bg-sand);
    border-radius: 50%;
}

.notfound-card .notfound-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.notfound-card h1 {
    margin: 0 0 14px;
    font-family: var(--font-title);
    font-size: 34px;
}

.notfound-card p {
    color: var(--muted);
    margin: 0 auto 28px;
    max-width: 460px;
}

/* Reading continuation */
.reading-section {
    margin-top: 64px;
    background: var(--bg-sand);
    border-radius: 18px;
    padding: 46px 40px;
}

.reading-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.reading-head h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 30px;
    color: var(--primary-dark);
}

.reading-head p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 430px;
}

.reading-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.reading-card {
    display: flex;
    background: #fff;
    border: 1px solid #F0E9DE;
    border-radius: var(--radius);
    padding: 18px;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}

.reading-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.reading-card-media {
    width: 156px;
    min-width: 156px;
    height: 104px;
    border-radius: 10px;
    background: var(--bg-green-soft);
    overflow: hidden;
}

.reading-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reading-card-content {
    min-width: 0;
}

.reading-card-content .reading-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.reading-card-content h3 {
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 20px;
    line-height: 1.4;
}

.reading-card-content p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

/* Contact section */
.contact-area {
    margin-top: 88px;
    background: var(--primary);
    padding: 76px 0;
    color: #F7F4EE;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-copy .eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-copy h2 {
    font-family: var(--font-title);
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.3;
    margin: 0 0 18px;
}

.contact-copy p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    margin: 0;
}

.contact-form-card {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 34px 32px;
    box-shadow: 0 20px 50px rgba(10, 45, 32, .18);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
}

.form-control {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #FBF9F5;
    padding: 0 14px;
    outline: none;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s, background .2s;
}

select.form-control {
    appearance: auto;
}

.form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(18, 92, 68, .12);
}

textarea.form-control {
    height: 96px;
    padding: 12px 14px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.6;
}

.form-success {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--bg-green-soft);
    color: var(--primary-dark);
    border-radius: 8px;
    font-size: 14px;
}

.form-success.show {
    display: flex;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: #EAEAE3;
    font-size: 14px;
}

.site-footer .container {
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
}

.footer-grid .brand .brand-name {
    color: #fff;
}

.footer-grid .brand .brand-mark {
    background: var(--accent);
}

.footer-desc {
    margin: 20px 0 0;
    max-width: 320px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .72);
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .68);
    transition: color .2s, transform .2s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0;
    color: rgba(255, 255, 255, .44);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1099px) {
    .article-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .article-aside {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .aside-card {
        flex: 1 1 220px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .reading-section {
        padding: 36px 25px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 86vw);
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 84px 24px 30px;
        box-shadow: -20px 0 70px rgba(0, 0, 0, .14);
        transform: translateX(105%);
        transition: transform .25s ease;
        margin: 0;
        border-left: 1px solid var(--line);
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-link {
        padding: 15px 8px;
        border-bottom: 1px solid #F1EEE8;
        border-radius: 0;
    }

    .nav-link.active::after {
        left: 8px;
        right: auto;
        width: 42px;
    }

    .header-search {
        order: 3;
    }

    .header-search .search-input {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        width: 180px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s, visibility .2s;
    }

    .header-search.search-open .search-input {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-cta {
        display: none;
    }

    .article-page {
        padding-top: 38px;
    }

    .article-grid {
        gap: 34px;
    }

    .article-title {
        font-size: 34px;
    }

    .breadcrumb {
        margin-bottom: 22px;
    }

    .cms-content table {
        display: block;
        overflow-x: auto;
    }

    .reading-section {
        padding: 32px 20px;
    }

    .reading-cards {
        grid-template-columns: 1fr;
    }

    .reading-card {
        align-items: flex-start;
    }

    .reading-card-media {
        width: 130px;
        min-width: 130px;
        height: 96px;
    }

    .contact-form-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-actions {
        gap: 6px;
    }

    .article-badge {
        height: 30px;
        font-size: 12px;
    }

    .article-excerpt {
        padding: 16px 14px 16px 18px;
        font-size: 15px;
    }

    .cms-content {
        font-size: 16px;
    }

    .reading-cards {
        grid-template-columns: 1fr;
    }

    .reading-card {
        flex-direction: column;
    }

    .reading-card-media {
        width: 100%;
        height: 155px;
    }

    .reading-section {
        padding: 26px 16px;
    }

    .reading-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-area {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .notfound-card {
        padding: 40px 22px;
    }
}

/* roulang page: category1 */
:root{
  --primary:#125C44;
  --primary-deep:#0C3B2C;
  --clay:#D2664D;
  --cream:#F6F2EA;
  --sand:#ECE5D8;
  --sage:#E4E8E1;
  --ink:#1D2A24;
  --muted:#5E6E64;
  --gold:#C9A15F;
  --white:#FFFFFF;
  --radius:14px;
  --radius-sm:10px;
  --shadow-sm:0 4px 16px rgba(29,42,36,.05);
  --shadow-md:0 18px 40px rgba(29,42,36,.10);
  --serif:"Noto Serif SC","Source Han Serif SC","Songti SC",Georgia,serif;
  --sans:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","HarmonyOS Sans SC",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream);color:var(--ink);font-family:var(--sans);font-size:16.5px;line-height:1.8;text-rendering:optimizeLegibility}
body.nav-open{overflow:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;border:0;background:none;cursor:pointer}
input,select,textarea{font-family:inherit}
h1,h2,h3,h4{font-family:var(--serif);line-height:1.25;margin:0;color:var(--ink)}
h2{font-size:clamp(28px,3vw,40px);line-height:1.3}
h3{font-size:1.4rem}
p{margin:0}
.container{width:min(1200px,calc(100% - 48px));margin-inline:auto}
.section{padding:88px 0}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:.92rem;font-weight:600;color:var(--primary);letter-spacing:.04em}
.eyebrow::before{content:"";width:16px;height:2px;background:var(--clay)}
.section-title{margin-top:14px}
.section-sub{margin-top:12px;color:var(--muted);max-width:620px}

.site-header{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.96);backdrop-filter:blur(10px);border-bottom:1px solid rgba(29,42,36,.06);box-shadow:0 8px 24px rgba(29,42,36,.04)}
.header-inner{height:68px;display:flex;align-items:center;gap:24px}
.brand{display:inline-flex;align-items:center;gap:10px;flex-shrink:0}
.brand-mark{width:38px;height:38px;border-radius:10px;background:var(--primary);color:#fff;font-family:var(--serif);font-size:1rem;font-weight:700;display:inline-flex;align-items:center;justify-content:center;line-height:1;letter-spacing:1px}
.brand-name{font-family:var(--serif);font-size:1.18rem;font-weight:700;color:var(--ink);white-space:nowrap}
.main-nav{display:flex;align-items:center;gap:2px;margin-right:auto}
.nav-link{position:relative;display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;font-size:.95rem;color:var(--muted);transition:color .2s,background .2s}
.nav-link:hover{color:var(--primary);background:rgba(18,92,68,.06)}
.nav-link.active{color:var(--primary);font-weight:600;background:rgba(18,92,68,.08)}
.nav-link[aria-current="page"]::after{content:"";position:absolute;left:16px;right:16px;bottom:2px;height:2px;background:var(--clay);border-radius:2px}
.header-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}
.header-search{display:flex;align-items:center;gap:8px;height:42px;padding:0 8px 0 16px;border-radius:999px;background:var(--cream);border:1px solid transparent;transition:border-color .2s,background .2s}
.header-search:focus-within{border-color:rgba(18,92,68,.35);background:#fff}
.search-input{width:135px;border:0;outline:0;background:transparent;font-size:.9rem;color:var(--ink);transition:width .3s}
.search-input::placeholder{color:var(--muted)}
.btn-search{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;color:var(--primary);border-radius:50%;transition:background .2s}
.btn-search:hover{background:rgba(18,92,68,.10)}
.btn-search svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;font-family:var(--sans);font-weight:600;font-size:.95rem;line-height:1;min-height:46px;padding:0 24px;border:1px solid transparent;transition:background .2s,color .2s,transform .2s,box-shadow .2s}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-deep);transform:translateY(2px);box-shadow:0 8px 18px rgba(12,59,44,.18)}
.btn-light{background:#fff;color:var(--primary-deep)}
.btn-light:hover{background:var(--sand);transform:translateY(2px)}
.btn-outline-light{border:1px solid rgba(255,255,255,.45);color:#fff;background:rgba(255,255,255,.03)}
.btn-outline-light:hover{background:rgba(255,255,255,.10);color:#fff;transform:translateY(1px)}
.btn-sm{min-height:38px;padding:0 18px;font-size:.88rem}
.header-cta{background:var(--primary);color:#fff;min-height:38px;padding:0 18px;border-radius:999px;font-weight:600;font-size:.88rem;display:inline-flex;align-items:center;transition:background .2s,transform .2s}
.header-cta:hover{background:var(--primary-deep);transform:translateY(1px)}
.nav-toggle{display:none;width:40px;height:40px;border-radius:50%;align-items:center;justify-content:center;flex-direction:column;gap:5px;background:var(--cream)}
.nav-toggle-bar{display:block;width:20px;height:2px;background:var(--primary);border-radius:2px;transition:transform .2s,opacity .2s}
.nav-toggle.is-active .nav-toggle-bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2){opacity:0}
.nav-toggle.is-active .nav-toggle-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.page-hero{position:relative;overflow:hidden;background:linear-gradient(100deg,rgba(11,50,37,.98) 0%,rgba(18,92,68,.90) 48%,rgba(18,92,68,.72) 100%),url("/assets/images/backpic/back-1.webp") center/cover no-repeat;color:#fff;padding:82px 0 78px}
.page-hero::after{content:"";position:absolute;right:-8%;bottom:-20%;width:420px;height:420px;background:radial-gradient(circle at center,rgba(201,161,95,.16) 0,transparent 66%);pointer-events:none}
.page-hero .container{position:relative;z-index:2}
.hero-kicker{display:inline-flex;align-items:center;gap:6px;padding:7px 14px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);font-size:.84rem;font-weight:600;letter-spacing:.04em;color:#f7f0df}
.hero-kicker::before{content:"";width:2px;height:14px;background:var(--clay)}
.cat-hero-title{font-size:clamp(40px,5vw,60px);margin-top:20px;max-width:14em;color:#fff;font-weight:700}
.hero-desc{max-width:620px;margin-top:20px;font-size:1.04rem;line-height:1.9;color:rgba(255,255,255,.86)}
.hero-meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}
.meta-chip{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:7px 14px;font-size:.84rem;color:rgba(255,255,255,.94)}
.meta-chip::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--gold)}

.intro-band{background:var(--cream);border-bottom:1px solid rgba(29,42,36,.06)}
.intro-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center}
.intro-body p{color:var(--muted);margin-top:20px;font-size:1rem;line-height:2}
.intro-body p strong{color:var(--ink);font-weight:600}
.intro-notes{border-left:1px solid var(--sand);padding-left:30px}
.note-item{position:relative;padding:16px 0;border-bottom:1px dashed var(--sand)}
.note-item:last-child{border-bottom:0}
.note-tag{font-size:.84rem;color:var(--primary);font-weight:600}
.note-text{margin-top:5px;font-size:.97rem;line-height:1.75;color:var(--muted)}
.note-item::before{content:attr(data-index);position:absolute;left:-38px;top:17px;font-family:var(--serif);font-size:.82rem;color:var(--clay);font-weight:700}

.topic-band{background:#fff}
.topic-band .section-top{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;flex-wrap:wrap;margin-bottom:42px}
.topic-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.topic-card{position:relative;background:var(--white);border:1px solid rgba(29,42,36,.08);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);height:100%;transition:transform .25s,box-shadow .25s}
.topic-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.topic-cover{position:relative;aspect-ratio:16/10;background:var(--sand);overflow:hidden}
.topic-cover img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.topic-card:hover .topic-cover img{transform:scale(1.04)}
.topic-number{position:absolute;left:16px;top:16px;z-index:3;min-width:44px;height:32px;padding:0 10px;display:inline-flex;align-items:center;justify-content:center;background:var(--clay);color:#fff;border-radius:999px;font-family:var(--serif);font-size:.9rem;font-weight:700;letter-spacing:.02em;box-shadow:0 6px 16px rgba(210,102,77,.25)}
.topic-body{padding:26px 26px 30px}
.topic-kicker{font-size:.82rem;font-weight:600;letter-spacing:.08em;color:var(--clay);text-transform:none}
.topic-title{font-size:1.42rem;margin-top:7px;line-height:1.4}
.topic-summary{margin-top:12px;font-size:.95rem;color:var(--muted);line-height:1.85}
.topic-foot{margin-top:18px;display:inline-flex;align-items:center;gap:8px;font-size:.9rem;font-weight:600;color:var(--primary)}
.topic-foot span{width:28px;height:28px;border-radius:50%;border:1px solid rgba(18,92,68,.22);display:inline-flex;align-items:center;justify-content:center;transition:all .25s}
.topic-card:hover .topic-foot span{background:var(--primary);border-color:var(--primary);color:#fff}
.topic-foot svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}

.process-band{background:var(--primary-deep);color:#fff;position:relative;overflow:hidden}
.process-band::before{content:"";position:absolute;right:-150px;top:-220px;width:430px;height:430px;background:radial-gradient(circle,rgba(210,102,77,.18) 0,transparent 70%)}
.process-band::after{content:"";position:absolute;right:10%;bottom:-180px;width:330px;height:330px;background:radial-gradient(circle,rgba(201,161,95,.14) 0,transparent 70%)}
.process-band .container{position:relative;z-index:2}
.process-head{display:grid;grid-template-columns:.9fr 1.1fr;gap:40px;align-items:end;margin-bottom:48px}
.process-head .eyebrow{color:#e8bc8f}
.process-head .eyebrow::before{background:var(--clay)}
.process-band .section-title{color:#fff}
.process-head .section-sub{color:rgba(246,242,234,.75);margin:14px 0 0}
.process-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:22px}
.flow-step{position:relative;padding:28px 24px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.10);border-radius:var(--radius);transition:background .25s,transform .25s}
.flow-step:hover{background:rgba(255,255,255,.09);transform:translateY(-3px)}
.step-no{font-family:var(--serif);font-size:2.5rem;font-weight:700;line-height:1;color:rgba(255,255,255,.13);font-variant-numeric:tabular-nums;position:relative}
.step-no i{position:absolute;top:4px;left:62px;width:30px;height:2px;background:var(--clay);display:block}
.step-title{font-size:1.12rem;font-weight:700;color:#fff;margin-top:8px}
.step-desc{margin-top:10px;font-size:.9rem;line-height:1.8;color:rgba(255,255,255,.75)}

.cross-band{background:var(--cream);border-top:1px solid rgba(29,42,36,.05)}
.cross-inner{display:grid;grid-template-columns:1fr 1fr;background:#fff;border-radius:18px;box-shadow:var(--shadow-sm);overflow:hidden;border:1px solid rgba(29,42,36,.07)}
.cross-media{position:relative;min-height:300px}
.cross-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cross-media::after{content:"";position:absolute;inset:0;background:linear-gradient(75deg,rgba(12,59,44,.4) 0,transparent 50%)}
.cross-body{padding:44px 50px;display:flex;flex-direction:column;justify-content:center}
.cross-body .eyebrow{color:var(--clay)}
.cross-body .eyebrow::before{background:var(--primary)}
.cross-body h2{margin-top:12px}
.cross-body p{margin-top:16px;color:var(--muted);line-height:2}
.cross-list{list-style:none;padding:0;margin:22px 0 0;display:grid;gap:8px}
.cross-list li{display:flex;gap:10px;font-size:.92rem;color:var(--ink);}
.cross-list li::before{content:"✓";flex-shrink:0;color:var(--primary);font-weight:700}
.cross-actions{margin-top:28px;display:flex;gap:12px;flex-wrap:wrap}

.cta-contact{position:relative;background:linear-gradient(110deg,var(--primary) 0%,var(--primary-deep) 90%);color:#fff;overflow:hidden;border-top:1px solid rgba(255,255,255,.08)}
.cta-contact::before{content:"";position:absolute;right:0;bottom:0;width:340px;height:340px;background:radial-gradient(circle,rgba(201,161,95,.16),transparent 68%)}
.cta-contact .container{position:relative;z-index:2}
.cta-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center}
.cta-main .mini-chip{display:inline-flex;align-items:center;gap:8px;font-size:.84rem;color:#f2dbb4;font-weight:600;letter-spacing:.06em}
.cta-main h2{color:#fff;margin:14px 0 16px;font-size:clamp(28px,3.2vw,40px);line-height:1.4}
.cta-main h2 span{color:var(--gold)}
.cta-main p{max-width:480px;color:rgba(255,255,255,.82);line-height:1.95}
.cta-actions{margin-top:28px;display:flex;flex-wrap:wrap;gap:14px}
.cta-aside{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:var(--radius);padding:34px}
.cta-aside .aside-title{font-family:var(--serif);font-weight:700;color:#fff;font-size:1.2rem}
.aside-row{display:flex;gap:14px;padding:17px 0;border-bottom:1px solid rgba(255,255,255,.10)}
.aside-row:last-child{border-bottom:0;padding-bottom:0}
.aside-icon{flex-shrink:0;width:36px;height:36px;border-radius:50%;background:rgba(210,102,77,.16);color:#e8927c;display:inline-flex;align-items:center;justify-content:center}
.aside-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}
.aside-label{display:block;font-size:.78rem;color:rgba(255,255,255,.55)}
.aside-value{display:block;font-size:.96rem;line-height:1.6;color:rgba(255,255,255,.92);margin-top:2px}
.phone-link{color:#fff;font-weight:600;text-decoration:underline;text-underline-offset:4px}

.footer-spacer{background:var(--primary-deep)}
.site-footer{background:#06281d;color:rgba(246,242,234,.78);padding:72px 0 28px;font-size:.9rem}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;gap:44px;padding-bottom:42px;border-bottom:1px solid rgba(255,255,255,.08)}
.site-footer .brand-name{color:#fff}
.footer-brand-col .footer-desc{margin-top:16px;max-width:280px;color:rgba(246,242,234,.60);line-height:1.9}
.footer-title{font-size:.8rem;letter-spacing:.14em;font-weight:700;color:#f2dbb4;margin-bottom:14px}
.footer-links{display:flex;flex-direction:column;gap:10px}
.footer-links a{display:inline-flex;align-items:center;gap:8px;color:rgba(246,242,234,.74);transition:color .2s,padding-left .2s}
.footer-links a::before{content:"→";color:var(--clay);opacity:0;transform:translateX(-6px);transition:opacity .2s,transform .2s;font-size:.9rem}
.footer-links a:hover{color:#fff;padding-left:2px}
.footer-links a:hover::before{opacity:1;transform:translateX(0)}
.footer-bottom{margin-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:.82rem;color:rgba(246,242,234,.45)}

@media(max-width:1100px){
  .section{padding:72px 0}
  .intro-grid{grid-template-columns:1fr;gap:36px}
  .process-head{grid-template-columns:1fr;gap:14px}
  .process-grid{grid-template-columns:1fr 1fr}
  .process-head .section-sub{margin-top:4px}
  .cta-grid{grid-template-columns:1fr;gap:36px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
  .cta-aside{max-width:520px}
}
@media(max-width:900px){
  .header-inner{height:60px}
  .main-nav{position:absolute;top:100%;left:0;right:0;background:#fff;padding:14px 24px 20px;border-bottom:1px solid rgba(29,42,36,.08);box-shadow:0 24px 40px rgba(18,40,31,.12);display:flex;flex-direction:column;gap:3px;opacity:0;visibility:hidden;transform:translateY(-12px);pointer-events:none;transition:opacity .22s ease,transform .22s ease,visibility .22s}
  .main-nav.is-open{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}
  .nav-link{padding:12px 14px;font-size:1rem}
  .nav-link[aria-current="page"]::after{left:16px;right:75%;bottom:6px}
  .nav-toggle{display:inline-flex}
  .process-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:767px){
  .container{width:calc(100% - 32px)}
  .section{padding:58px 0}
  .page-hero{padding:54px 0 56px}
  .cat-hero-title{font-size:clamp(30px,8.5vw,42px);word-break:break-word}
  .hero-desc{margin-top:14px;font-size:.95rem}
  .meta-chip{font-size:.78rem}
  .topic-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .cross-inner{grid-template-columns:1fr}
  .cross-media{min-height:220px}
  .cross-body{padding:30px 24px}
  .cta-aside{padding:26px}
  .footer-bottom{flex-direction:column}
  .topic-number{font-size:.8rem;min-width:40px}
  .intro-notes{border-left:0;padding-left:16px}
}
@media(max-width:520px){
  .header-actions{gap:8px}
  .header-search{padding:0 4px 0 0}
  .search-input{width:0;padding:0;opacity:0;position:absolute;right:110px;top:48px;width:190px;display:block;height:48px;border-radius:999px;background:#fff;border:1px solid rgba(18,92,68,.18);box-shadow:var(--shadow-md);color:var(--ink);padding:0 46px 0 18px;opacity:0;pointer-events:none;visibility:hidden;transition:opacity .2s}
  .search-input.is-open{opacity:1;visibility:visible;pointer-events:auto}
  .header-search .btn-search{background:rgba(18,92,68,.08)}
  .header-cta{min-height:36px;padding:0 12px;font-size:.78rem}
  .brand-name{font-size:1rem}
  .brand-mark{width:34px;height:34px;font-size:.9rem;border-radius:9px}
  .header-inner{gap:10px}
  .btn{padding:0 18px}
  .cta-actions .btn{width:100%}
  .cross-body h2{font-size:1.5rem}
}
:focus-visible{outline:2px solid var(--clay);outline-offset:3px;border-radius:4px}

/* roulang page: category2 */
:root{
  --deep:#125C44;
  --deep-dark:#0C3B2C;
  --clay:#D2664D;
  --cream:#F6F2EA;
  --white:#FFFFFF;
  --sand:#ECE5D8;
  --greenish:#E4E8E1;
  --ink:#1D2A24;
  --muted:#5E6E64;
  --gold:#C9A15F;
  --radius:12px;
  --radius-lg:18px;
  --shadow-1:0 2px 10px rgba(18,45,34,.06);
  --shadow-2:0 14px 34px rgba(18,45,34,.12);
  --font-display:"Noto Serif SC","Source Han Serif SC","Songti SC",Georgia,serif;
  --font-body:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","HarmonyOS Sans SC",sans-serif;
  --header-h:68px;
  --section-space:88px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--deep);
  outline-offset:3px;
  border-radius:4px;
}
p,h1,h2,h3,h4,ul,ol,dl,dd,figure{margin:0}
ul,ol{padding:0;list-style:none}
button,input,select,textarea{font:inherit}
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}
.section{padding:var(--section-space) 0}
.section-tint{background:var(--greenish)}
.section-white{background:var(--white)}

/* 按钮 */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:48px;
  padding:0 22px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  border:1px solid transparent;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(2px)}
.btn-primary{background:var(--deep);color:#fff;box-shadow:0 6px 16px rgba(18,92,68,.24)}
.btn-primary:hover{background:var(--deep-dark)}
.btn-white{background:#fff;color:var(--deep-dark)}
.btn-white:hover{background:var(--sand)}
.btn-line{background:transparent;color:#fff;border-color:rgba(255,255,255,.7)}
.btn-line:hover{background:rgba(255,255,255,.08)}
.btn-sm{height:40px;padding:0 16px;font-size:14px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(18,92,68,.08);
  transition:box-shadow .2s;
}
.site-header.scrolled{box-shadow:0 6px 18px rgba(18,45,34,.08)}
.header-inner{
  height:var(--header-h);
  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%;
  background:var(--deep);
  color:#fff;
  display:grid;
  place-items:center;
  font-family:var(--font-display);
  font-size:15px;
  font-weight:700;
  letter-spacing:-.4px;
}
.brand-name{
  font-family:var(--font-display);
  font-size:21px;
  font-weight:700;
  letter-spacing:.5px;
  color:var(--ink);
}
.main-nav{display:flex;align-items:center;gap:4px}
.nav-link{
  padding:7px 15px;
  border-radius:999px;
  color:var(--muted);
  font-size:15px;
  font-weight:500;
  transition:background .18s,color .18s;
}
.nav-link:hover{background:var(--cream);color:var(--deep)}
.nav-link.active{background:var(--deep);color:#fff}
.header-actions{display:flex;align-items:center;gap:12px}
.header-search{
  display:flex;
  align-items:center;
  background:var(--cream);
  border:1px solid var(--sand);
  border-radius:999px;
  height:40px;
  padding:0 6px 0 14px;
  transition:border-color .2s,background .2s;
  width:auto;
}
.header-search:focus-within{border-color:var(--deep);background:#fff}
.search-input{
  border:0;
  background:transparent;
  outline:0;
  width:132px;
  font-size:14px;
  color:var(--ink);
  padding:6px 0;
}
.search-input::placeholder{color:var(--muted)}
.btn-search{
  width:30px;height:30px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  transition:background .2s,color .2s;
  flex-shrink:0;
}
.btn-search:hover{background:var(--deep);color:#fff}
.btn-search svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round}
.header-cta{flex-shrink:0}
.nav-toggle{
  display:none;
  width:40px;height:40px;
  background:var(--deep);
  border:0;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  gap:4px;
  cursor:pointer;
  transition:background .2s;
}
.nav-toggle:hover{background:var(--deep-dark)}
.nav-toggle-bar{display:block;width:18px;height:2px;background:#fff;border-radius:2px}
.nav-toggle-bar+.nav-toggle-bar{margin-top:4px}

/* 页首通用 */
.page-hero{
  color:var(--cream);
  position:relative;
}

/* 英伦生活指南 Hero */
.guide-hero{
  background-color:var(--deep);
  background-image:linear-gradient(105deg,rgba(12,59,44,.92) 20%,rgba(18,92,68,.42) 90%),url('/assets/images/backpic/back-2.png');
  background-size:cover;
  background-position:center;
  padding:72px 0 56px;
}
.guide-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:28px 28px;
}
.guide-hero-inner{position:relative;z-index:1}
.guide-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:5px 14px 5px 7px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  font-size:13px;
  letter-spacing:.3px;
  color:rgba(246,242,234,.92);
}
.guide-kicker .brand-mark-mini{
  width:28px;height:28px;
  background:var(--gold);
  color:var(--deep-dark);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-family:var(--font-display);
  font-size:11px;
  font-weight:700;
}
.guide-hero-top{
  max-width:760px;
  padding-top:52px;
}
.guide-hero-top h1{
  font-family:var(--font-display);
  font-size:72px;
  line-height:1.2;
  font-weight:800;
  margin:20px 0 12px;
  letter-spacing:2px;
}
.guide-hero-top .hero-deck{
  font-size:18px;
  line-height:1.85;
  color:rgba(246,242,234,.88);
  max-width:640px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  margin-top:20px;
  gap:6px 14px;
  font-size:13px;
  color:rgba(246,242,234,.78);
  letter-spacing:.4px;
}
.hero-meta .sep{color:var(--gold);font-size:14px}
.guide-hero-cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:64px;
  padding-bottom:20px;
}
.guide-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:22px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--ink);
  box-shadow:var(--shadow-2);
  transition:transform .25s,box-shadow .25s;
  min-height:142px;
}
.guide-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(12,59,44,.28)}
.card-count{
  font-family:var(--font-display);
  font-size:20px;
  color:var(--clay);
  font-weight:700;
  line-height:1;
}
.guide-card strong{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:700;
}
.guide-card span:last-child{
  font-size:13px;
  line-height:1.6;
  color:var(--muted);
}
.card-link-icon{margin-left:auto;color:var(--deep);font-size:20px}

/* 栏目介绍 */
.intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.intro-copy .eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  color:var(--clay);
  letter-spacing:1.5px;
  margin-bottom:14px;
}
.intro-copy h2,.section-head h2{
  font-family:var(--font-display);
  font-size:40px;
  line-height:1.35;
  color:var(--ink);
  font-weight:700;
}
.intro-copy h2{margin-bottom:22px}
.intro-copy p{
  color:var(--muted);
  margin-bottom:18px;
  font-size:16px;
}
.link-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--deep);
  font-weight:600;
  font-size:15px;
  transition:color .2s;
}
.link-more:hover{color:var(--clay)}
.link-more svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.intro-media{position:relative}
.intro-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-2);
}
.intro-media::after{
  content:"";
  position:absolute;
  inset:16px -16px -16px 16px;
  background:var(--sand);
  border-radius:var(--radius-lg);
  z-index:-1;
}
.media-caption{
  margin-top:14px;
  font-size:13px;
  color:var(--muted);
  text-align:right;
}

/* 顶部小节标题 */
.section-head{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:42px;
}
.section-head .kicker{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  color:var(--clay);
  margin-bottom:10px;
}
.section-head h2{font-size:40px}
.section-head p{
  color:var(--muted);
  max-width:380px;
  font-size:15px;
}

/* 横滑卡片 */
.topic-strip{
  display:flex;
  align-items:flex-start;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  padding:8px 4px 22px;
  scrollbar-width:none;
}
.topic-strip::-webkit-scrollbar{display:none}
.topic-scroll-card{
  scroll-snap-align:start;
  flex:0 0 auto;
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-1);
  border:1px solid rgba(18,92,68,.05);
  transition:transform .25s,box-shadow .25s;
  display:flex;
  flex-direction:column;
}
.topic-scroll-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-2)}
.topic-scroll-card .topic-media{
  overflow:hidden;
}
.topic-scroll-card .topic-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.topic-body{padding:22px 20px 20px;display:flex;flex-direction:column;gap:9px;flex:1}
.topic-body .topic-no{
  font-family:var(--font-display);
  color:var(--clay);
  font-size:18px;
  font-weight:700;
}
.topic-body h3{
  font-family:var(--font-display);
  font-size:23px;
  color:var(--ink);
}
.topic-body p{font-size:14px;color:var(--muted);line-height:1.75}
.topic-body .topic-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:4px}
.tag{
  display:inline-flex;
  align-items:center;
  padding:3px 10px;
  background:var(--greenish);
  border-radius:999px;
  color:var(--deep);
  font-size:12px;
  font-weight:500;
}
.topic-scroll-card.card-wide{width:400px}
.topic-scroll-card.card-mid{width:330px}
.topic-scroll-card.card-slender{width:280px}
.card-wide .topic-media{height:210px}
.card-mid .topic-media{height:242px}
.card-slender .topic-media{height:280px}

/* 主题延伸/编辑笔记 */
.guide-notes{
  background:var(--deep);
  color:var(--cream);
  position:relative;
  overflow:hidden;
}
.guide-notes::before{
  content:"365";
  font-family:var(--font-display);
  font-size:180px;
  font-weight:800;
  color:rgba(255,255,255,.06);
  position:absolute;
  right:-10px;
  bottom:-30px;
  line-height:1;
}
.guide-notes .container{position:relative;z-index:1}
.notes-grid{
  display:grid;
  grid-template-columns:1.1fr 1.4fr;
  gap:42px;
  align-items:center;
}
.notes-grid h2{
  font-family:var(--font-display);
  font-size:34px;
  line-height:1.45;
  color:#fff;
  margin-bottom:16px;
}
.notes-grid .notes-copy p{
  color:rgba(246,242,234,.82);
  margin-bottom:14px;
}
.notes-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.notes-list li:last-child{border-bottom:0}
.notes-list .n-no{
  font-family:var(--font-display);
  color:var(--gold);
  font-size:17px;
  font-weight:700;
  margin-top:4px;
}
.notes-list li strong{display:block;color:#fff;font-size:16px;margin-bottom:2px}
.notes-list li p{color:rgba(246,242,234,.7);font-size:14px;line-height:1.7}

/* 段落分隔线 */
.rule-sep{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  height:1px;
  background:linear-gradient(90deg,var(--sand),transparent);
  border:0;
}

/* FAQ */
.faq-layout{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:60px;
  align-items:start;
}
.faq-side .kicker{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  color:var(--clay);
  margin-bottom:12px;
}
.faq-side h2{font-family:var(--font-display);font-size:38px;line-height:1.4;margin-bottom:14px}
.faq-side p{color:var(--muted);font-size:15px;max-width:430px}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:var(--white);
  border:1px solid rgba(18,92,68,.06);
  border-radius:14px;
  box-shadow:var(--shadow-1);
  overflow:hidden;
  transition:box-shadow .2s;
}
.faq-item.active{box-shadow:var(--shadow-2)}
.faq-btn{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  padding:18px 20px;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  color:var(--ink);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-icon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:50%;
  background:var(--greenish);
  display:grid;
  place-items:center;
  color:var(--deep);
  transition:transform .2s,background .2s,color .2s;
}
.faq-icon::before{content:"+"}
.faq-item.active .faq-icon{transform:rotate(45deg);background:var(--deep);color:#fff}
.faq-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .2s ease;
}
.faq-content-inner{
  padding:0 20px 18px;
  color:var(--muted);
  font-size:15px;
  border-left:3px solid var(--clay);
  margin-left:20px;
  padding-left:12px;
}

/* 联系 CTA */
.contact-cta{
  background:var(--deep-dark);
  position:relative;
  color:var(--cream);
  overflow:hidden;
}
.contact-cta::before{
  content:"365";
  position:absolute;
  top:-40px;
  right:28px;
  font-family:var(--font-display);
  font-size:200px;
  font-weight:800;
  color:rgba(255,255,255,.04);
  line-height:1;
}
.contact-cta .container{position:relative;z-index:1}
.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:64px;
  align-items:start;
}
.contact-copy h2{
  font-family:var(--font-display);
  font-size:40px;
  line-height:1.4;
  color:#fff;
  margin-bottom:18px;
}
.contact-copy p{
  color:rgba(246,242,234,.82);
  margin-bottom:16px;
}
.contact-copy ul li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
  color:rgba(246,242,234,.85);
  font-size:15px;
}
.contact-copy ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  width:10px;
  height:2px;
  background:var(--gold);
  border-radius:2px;
}
.contact-form-card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  color:var(--ink);
  box-shadow:0 24px 56px rgba(0,0,0,.25);
}
.form-title{
  font-family:var(--font-display);
  font-size:22px;
  margin-bottom:18px;
}
.form-group{margin-bottom:18px}
.form-label{
  display:block;
  font-size:14px;
  color:var(--ink);
  font-weight:600;
  margin-bottom:6px;
}
.form-control{
  width:100%;
  height:46px;
  border:1px solid var(--sand);
  background:#fff;
  border-radius:10px;
  padding:0 14px;
  color:var(--ink);
  font-size:15px;
  transition:border-color .2s,box-shadow .2s;
}
.form-control:focus{
  outline:none;
  border-color:var(--deep);
  box-shadow:0 0 0 3px rgba(18,92,68,.12);
}
textarea.form-control{
  height:auto;
  min-height:104px;
  padding:12px 14px;
  resize:vertical;
}
.form-select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%235E6E64' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:40px;
}
.form-select option:checked{background:var(--greenish);color:var(--deep-dark)}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-privacy{
  font-size:12px;
  color:var(--muted);
  margin-top:16px;
  text-align:center;
  line-height:1.6;
}
.submit-note{
  font-size:14px;
  color:var(--deep);
  margin-top:12px;
  padding:10px;
  background:var(--greenish);
  border-radius:8px;
  text-align:center;
  display:none;
}

/* 页脚 */
.site-footer{
  background:var(--deep-dark);
  color:var(--cream);
  padding-top:64px;
  font-size:15px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .9fr .9fr;
  gap:46px;
  padding-bottom:40px;
}
.footer-brand-col .brand{
  margin-bottom:16px;
}
.footer-brand-col .brand-name{color:#fff}
.footer-brand-col .brand-mark{
  background:rgba(255,255,255,.1);
  color:#fff;
}
.footer-desc{
  color:rgba(246,242,234,.66);
  font-size:14px;
  line-height:1.8;
  max-width:330px;
}
.footer-title{
  font-weight:600;
  color:#fff;
  margin-bottom:16px;
  font-family:var(--font-display);
}
.footer-links{display:flex;flex-direction:column;gap:10px}
.footer-links a{
  color:rgba(246,242,234,.7);
  font-size:14px;
  transition:color .18s;
}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:20px 0 24px;
  display:flex;
  justify-content:space-between;
  gap:8px;
  color:rgba(246,242,234,.52);
  font-size:13px;
  flex-wrap:wrap;
}

/* 面包屑（未来保留，当前分类页不需要） */

/* 响应式 */
@media(max-width:1099px){
  :root{--section-space:72px}
  .main-nav{display:none;position:absolute;top:calc(var(--header-h) + 1px);left:0;right:0;background:#fff;flex-direction:column;padding:16px;border-bottom:1px solid var(--sand);box-shadow:var(--shadow-2);border-radius:0 0 16px 16px;gap:8px}
  .main-nav.open{display:flex}
  .nav-toggle{display:inline-flex}
  .search-input{width:92px}
  .header-cta{display:none}
  .guide-hero-cards{grid-template-columns:repeat(2,1fr)}
  .intro-grid{grid-template-columns:1fr;gap:44px}
  .notes-grid{grid-template-columns:1fr}
  .faq-layout{grid-template-columns:1fr;gap:36px}
  .contact-grid{grid-template-columns:1fr;gap:44px}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:767px){
  :root{
    --header-h:60px;
    --section-space:58px;
  }
  .container{padding-left:16px;padding-right:16px}
  .brand-name{font-size:18px}
  .header-search{padding:0 4px 0 10px}
  .search-input{width:80px;font-size:13px}
  .header-cta{display:none}
  .guide-hero{padding:52px 0 44px}
  .guide-hero-top{padding-top:30px}
  .guide-hero-top h1{font-size:42px;letter-spacing:1px}
  .guide-hero-top .hero-deck{font-size:16px}
  .guide-hero-cards{grid-template-columns:1fr 1fr;gap:12px;margin-top:42px}
  .guide-card{padding:16px 14px;min-height:auto}
  .guide-card strong{font-size:16px}
  .guide-card span:last-child{font-size:12px}
  .card-count{font-size:16px}
  .intro-copy h2,.section-head h2{font-size:28px}
  .faq-side h2{font-size:29px}
  .contact-copy h2{font-size:30px}
  .contact-form-card{padding:22px}
  .form-row{grid-template-columns:1fr}
  .topic-scroll-card.card-wide,.topic-scroll-card.card-mid,.topic-scroll-card.card-slender{width:84vw}
  .topic-scroll-card .topic-media{height:190px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .guide-kicker{font-size:12px}
  .notes-grid h2{font-size:28px}
}
@media(max-width:520px){
  .guide-hero-cards{grid-template-columns:1fr}
  .guide-card{min-height:0}
  .header-search{width:36px;height:36px;padding:0;justify-content:center;overflow:hidden}
  .search-input{display:none}
  .header-search.search-expanded{
    position:absolute;
    right:68px;
    width:220px;
    background:#fff;
    padding:0 6px 0 12px;
    border-color:var(--deep);
    overflow:visible;
  }
  .header-search.search-expanded .search-input{display:block;width:100%}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}
