:root {
  --bg: #f5f3ed;
  --panel: rgba(255, 253, 248, 0.94);
  --panel-strong: #fffdf8;
  --text: #19231f;
  --muted: #66736d;
  --line: rgba(25, 35, 31, 0.12);
  --accent: #486858;
  --accent-deep: #16221e;
  --gold: #a77d45;
  --gold-soft: #efe2cf;
  --accent-soft: #e6ede8;
  --success: #365f50;
  --shadow: 0 16px 38px rgba(35, 44, 39, 0.08);
  --shadow-strong: 0 24px 58px rgba(22, 34, 30, 0.18);
  --radius: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(245, 243, 237, 0.94) 42%, rgba(239, 242, 237, 0.96)),
    repeating-linear-gradient(90deg, rgba(25, 35, 31, 0.025) 0, rgba(25, 35, 31, 0.025) 1px, transparent 1px, transparent 96px);
  line-height: 1.7;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(250, 248, 242, 0.9);
  border-bottom: 1px solid rgba(25, 35, 31, 0.12);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--accent-deep);
  color: #f8efe0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-rail {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  gap: 10px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--accent-deep);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 46, 56, 0.16);
  border: 1px solid rgba(16, 46, 56, 0.08);
  font-size: 0.92rem;
}

.contact-pill-primary {
  background: var(--accent-deep);
  color: #f0f8f7;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  font: inherit;
  padding: 8px 12px;
  cursor: pointer;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--accent-deep);
  border-color: rgba(167, 125, 69, 0.7);
}

.hero {
  padding: 64px 0 42px;
}

.hero-grid,
.content-grid,
.dual-grid,
.source-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: stretch;
}

.hero-grid-home {
  align-items: start;
}

.hero-card,
.panel,
.source-card,
.note-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid rgba(25, 35, 31, 0.12);
  background: rgba(255, 253, 248, 0.8);
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.portrait-monogram {
  border: 1px solid rgba(167, 125, 69, 0.45);
  border-style: solid;
  background: linear-gradient(170deg, #16221e, #334a3f);
  color: #f3efe6;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.portrait-monogram span {
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: 2.1rem;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}

.portrait-monogram small {
  color: rgba(243, 239, 230, 0.72);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: 0;
  margin-top: 18px;
  font-weight: 750;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 1.08rem;
  color: #26362f;
}

.muted {
  color: var(--muted);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.button {
  background: var(--accent-deep);
  color: #f0f8f7;
}

.button-secondary {
  border: 1px solid rgba(25, 35, 31, 0.16);
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.76);
}

.hero-side {
  padding: 30px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.portrait {
  padding: 28px;
  min-height: 280px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(230, 237, 232, 0.72)),
    repeating-linear-gradient(
      -32deg,
      rgba(16, 46, 56, 0.08) 0,
      rgba(16, 46, 56, 0.08) 10px,
      transparent 10px,
      transparent 18px
    );
  display: grid;
  align-content: center;
  justify-items: center;
}

.authority-panel {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 22%, rgba(167, 125, 69, 0.16), transparent 26%),
    linear-gradient(135deg, #16221e 0%, #23362f 58%, #111a17 100%);
  color: #fbf5ea;
  padding: 34px;
  display: grid;
  align-content: end;
  box-shadow: var(--shadow-strong);
}

.authority-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(215, 178, 115, 0.28);
  border-radius: 6px;
  pointer-events: none;
}

.authority-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.035) 0, rgba(255, 253, 248, 0.035) 1px, transparent 1px, transparent 78px),
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.025) 0, rgba(255, 253, 248, 0.025) 1px, transparent 1px, transparent 78px);
  pointer-events: none;
}

.authority-panel > * {
  position: relative;
  z-index: 1;
}

.authority-kicker {
  position: absolute;
  top: 34px;
  left: 34px;
  color: #d7b273;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.authority-panel strong {
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
  font-weight: 650;
}

.authority-panel p {
  color: rgba(243, 239, 230, 0.76);
  margin-bottom: 18px;
}

.authority-panel ul {
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(215, 178, 115, 0.22);
  color: rgba(243, 239, 230, 0.78);
  font-size: 0.9rem;
}

.authority-panel li + li {
  margin-top: 6px;
}

.authority-seal {
  position: absolute;
  top: 76px;
  right: 34px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(215, 178, 115, 0.36);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(215, 178, 115, 0.58);
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: 1.42rem;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
}

.portrait-photo {
  min-height: 360px;
}

.portrait-placeholder {
  width: min(100%, 240px);
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  border: 1px solid rgba(25, 35, 31, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.portrait p:last-child,
.check-list li:last-child,
.service-list li:last-child,
.timeline li:last-child,
.faq-list li:last-child,
.source-card p:last-child,
.note-card p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 30px 0 26px;
}

.section-tight {
  padding-top: 4px;
  padding-bottom: 18px;
}

.section-head {
  margin-bottom: 22px;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid-questions,
.content-grid-topics {
  align-items: stretch;
}

.panel {
  padding: 28px;
}

.panel.soft {
  background: rgba(255, 255, 255, 0.72);
}

.panel-dark {
  background: linear-gradient(180deg, rgba(22, 34, 30, 0.98), rgba(49, 74, 64, 0.96));
  color: #fbf5ea;
}

.panel-dark h2,
.panel-dark p,
.panel-dark li {
  color: inherit;
}

.check-list,
.service-list,
.timeline,
.faq-list,
.source-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.service-list li,
.timeline li,
.faq-list li,
.source-list li,
.mini-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.check-list li::before,
.service-list li::before,
.timeline li::before,
.faq-list li::before,
.source-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(31, 89, 101, 0.1);
  color: var(--accent-deep);
  font-size: 0.88rem;
}

.dual-grid,
.source-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.source-card {
  padding: 24px;
}

.source-card small {
  color: var(--muted);
}

.source-card-brand {
  display: grid;
  gap: 12px;
}

.source-card-brand::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 34, 30, 0.94), rgba(72, 104, 88, 0.9));
}

.notice {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(32, 79, 69, 0.08);
  border: 1px solid rgba(32, 79, 69, 0.18);
  color: #214534;
}

.warning {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(140, 90, 43, 0.08);
  border: 1px solid rgba(140, 90, 43, 0.18);
  color: var(--accent-deep);
}

.page-hero {
  padding: 56px 0 28px;
}

.page-hero .hero-card {
  padding: 34px 36px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: inherit;
}

.callout-band {
  margin: 24px 0 8px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(22, 34, 30, 0.98), rgba(61, 89, 76, 0.96));
  color: #eff8f7;
  box-shadow: var(--shadow-strong);
}

.callout-band .tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff6ea;
}

.faq-item + .faq-item,
.source-card + .source-card {
  margin-top: 0;
}

.site-footer {
  padding: 56px 0 34px;
  margin-top: 26px;
  border-top: 1px solid rgba(16, 46, 56, 0.08);
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a {
  text-decoration: none;
}

.copyright {
  margin-top: 22px;
  font-size: 0.9rem;
}

.hero-home-main {
  padding-right: 48px;
}

.hero-subtitle {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-note {
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 0;
}

.entity-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.entity-strip > div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.entity-strip > div:last-child {
  border-right: 0;
}

.entity-strip strong,
.entity-strip span {
  display: block;
}

.entity-strip strong {
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: var(--accent-deep);
}

.entity-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.evidence-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.evidence-visual {
  margin: 0;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background:
    radial-gradient(circle at 76% 18%, rgba(215, 178, 115, 0.14), transparent 25%),
    linear-gradient(145deg, #16221e 0%, #203229 62%, #0f1714 100%);
  position: relative;
  color: #fbf5ea;
}

.evidence-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(215, 178, 115, 0.26);
  border-radius: 6px;
  pointer-events: none;
}

.evidence-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.034) 0, rgba(255, 253, 248, 0.034) 1px, transparent 1px, transparent 82px),
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.022) 0, rgba(255, 253, 248, 0.022) 1px, transparent 1px, transparent 82px);
  pointer-events: none;
}

.evidence-sigil {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 48px;
}

.evidence-sigil > * {
  position: relative;
  z-index: 1;
}

.evidence-sigil span {
  color: #d7b273;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}

.evidence-sigil strong {
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
}

.evidence-sigil small {
  margin-top: 28px;
  color: rgba(243, 239, 230, 0.68);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.evidence-copy {
  padding: 8px 0;
  display: grid;
  align-content: center;
}

.evidence-copy h2 {
  max-width: 9em;
  margin-top: 18px;
}

.evidence-copy > p {
  color: var(--muted);
  max-width: 42em;
}

.evidence-list {
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.evidence-list a {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.evidence-list strong {
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  color: var(--accent-deep);
  font-size: 1.06rem;
}

.evidence-list span {
  color: var(--muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  background: rgba(72, 104, 88, 0.1);
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.hero-home-side {
  gap: 18px;
}

.identity-card {
  padding: 2px 2px 0;
}

.identity-list,
.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.identity-list div,
.contact-list div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 46, 56, 0.08);
}

.identity-list dt,
.contact-list dt {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.identity-list dd,
.contact-list dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.panel-question {
  min-height: 100%;
}

.topic-card {
  display: grid;
  align-content: space-between;
  gap: 10px;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.panel-soft-note {
  background: rgba(239, 242, 237, 0.9);
}

.lux-hero {
  padding: 56px 0 32px;
}

.lux-hero .breadcrumbs {
  margin-bottom: 18px;
}

.lux-hero-card {
  background:
    linear-gradient(135deg, rgba(22, 34, 30, 0.96), rgba(43, 62, 54, 0.98)),
    linear-gradient(90deg, rgba(167, 125, 69, 0.16), transparent);
  color: #fbf5ea;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 52px 50px;
  position: relative;
  overflow: hidden;
}

.lux-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 24%, rgba(215, 178, 115, 0.16), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.035) 0, rgba(255, 253, 248, 0.035) 1px, transparent 1px, transparent 86px),
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.025) 0, rgba(255, 253, 248, 0.025) 1px, transparent 1px, transparent 86px);
  opacity: 1;
}

.public-duty-page .lux-hero-card::before {
  background:
    radial-gradient(circle at 80% 28%, rgba(215, 178, 115, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.04) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.035) 0, rgba(255, 253, 248, 0.035) 1px, transparent 1px, transparent 76px);
  opacity: 1;
}

.business-risk-page .lux-hero-card::before {
  background:
    radial-gradient(circle at 82% 28%, rgba(72, 104, 88, 0.32), transparent 26%),
    linear-gradient(135deg, transparent 0 46%, rgba(215, 178, 115, 0.08) 46% 46.5%, transparent 46.5%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.032) 0, rgba(255, 253, 248, 0.032) 1px, transparent 1px, transparent 92px);
  opacity: 1;
}

.fees-page .lux-hero-card::before,
.faq-page .lux-hero-card::before {
  background:
    radial-gradient(circle at 84% 26%, rgba(215, 178, 115, 0.14), transparent 25%),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.032) 0, rgba(255, 253, 248, 0.032) 1px, transparent 1px, transparent 82px),
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.022) 0, rgba(255, 253, 248, 0.022) 1px, transparent 1px, transparent 82px);
  opacity: 1;
}

.lux-hero-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(215, 178, 115, 0.26);
  border-radius: 6px;
  pointer-events: none;
}

.lux-hero-card > * {
  position: relative;
  z-index: 1;
}

.lux-eyebrow {
  display: inline-block;
  color: #d7b273;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.lux-hero-card h1 {
  color: #f7f3ea;
  margin: 0 0 18px;
  font-weight: 600;
}

.lux-hero-card .lead {
  color: rgba(243, 239, 230, 0.84);
  max-width: 46em;
  font-size: 1.05rem;
}

.lux-hero-card p {
  color: rgba(243, 239, 230, 0.72);
  max-width: 46em;
}

.lux-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 22px;
}

.lux-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(25, 35, 31, 0.12);
  border: 1px solid rgba(25, 35, 31, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 26px;
}

.lux-strip > div {
  background: rgba(255, 253, 248, 0.96);
  padding: 22px 20px;
}

.lux-strip a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.lux-strip strong {
  display: block;
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: 1.08rem;
  color: var(--accent-deep);
  margin-bottom: 6px;
  font-weight: 600;
}

.lux-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.lux-strip a:hover strong {
  color: #8f7044;
}

.lux-cta {
  background: linear-gradient(135deg, #16221e, #3a5648);
  color: #fbf5ea;
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lux-cta h2 {
  color: #f7f3ea;
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.lux-cta p {
  margin: 0;
  color: rgba(243, 239, 230, 0.78);
  max-width: 38em;
}

.lux-cta .button {
  background: var(--gold);
  color: #fffdf7;
}

.lux-cta .button-secondary {
  border-color: rgba(201, 168, 106, 0.5);
  color: #f0e8d6;
  background: transparent;
}

@media (max-width: 980px) {
  .hero-grid,
  .content-grid,
  .dual-grid,
  .source-grid,
  .footer-grid,
  .entity-strip,
  .evidence-layout {
    grid-template-columns: 1fr;
  }

  .entity-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .entity-strip > div:last-child {
    border-bottom: 0;
  }

  .lux-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-visual {
    min-height: 320px;
  }

  .lux-hero-card {
    padding: 34px 26px;
  }

  .lux-cta {
    padding: 30px 26px;
  }

  .hero-card,
  .hero-side {
    padding: 28px;
  }

  .hero-home-main {
    padding-right: 28px;
  }
}

@media (max-width: 900px) {
  .topbar {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .section {
    padding-top: 18px;
  }

  h1 {
    font-size: 2rem;
  }

  .contact-rail {
    display: none;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .evidence-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
