:root {
  color-scheme: light;
  --bg: #eef2f6;
  --surface: #ffffff;
  --surface-alt: #f5f7fa;
  --surface-soft: #fafbfd;
  --navy: #111c28;
  --navy-soft: #1a2a3b;
  --ink: #162537;
  --copy: #435162;
  --muted: #6d7c8e;
  --accent: #b28c58;
  --accent-strong: #8c6939;
  --line: #d7e0e8;
  --line-strong: #c4ced8;
  --shadow: 0 34px 70px rgba(10, 18, 28, 0.12);
  --shadow-soft: 0 18px 40px rgba(10, 18, 28, 0.08);
  --font-serif: "Cormorant Garamond", "Noto Serif SC", serif;
  --font-copy: "Source Sans 3", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-copy);
  color: var(--copy);
  background: linear-gradient(180deg, #edf2f6 0%, #ffffff 22rem, #eef3f6 100%);
}

body[data-lang="zh"] .lang-en,
body[data-lang="en"] .lang-zh {
  display: none !important;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(22, 35, 51, 0.1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(10, 18, 28, 0.07);
}

.topline {
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: rgba(255, 249, 239, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topline .container {
  padding: 0.78rem 0;
}

.nav-wrap {
  min-height: 6.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-mark {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
  padding: 0.72rem;
  border-radius: 0.14rem;
  background:
    linear-gradient(145deg, var(--navy) 0%, #243649 100%);
  box-shadow: 0 14px 30px rgba(14, 24, 35, 0.18);
}

.brand-mark span {
  display: block;
  height: 0.22rem;
  background: rgba(255, 248, 235, 0.95);
}

.brand-mark .broken {
  position: relative;
  background: transparent;
}

.brand-mark .broken::before,
.brand-mark .broken::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 248, 235, 0.95);
}

.brand-mark .broken::after {
  right: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  display: block;
  color: var(--navy);
  line-height: 0.96;
}

.brand-title.lang-zh {
  font-family: var(--font-serif);
  font-size: clamp(1.36rem, 1.9vw, 1.92rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.brand-title.lang-en {
  margin-top: 0.18rem;
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-domain {
  display: block;
  margin-top: 0.34rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.25rem 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.22rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: var(--navy);
}

.lang-switch,
.menu-toggle,
.button,
.pill-link {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-switch,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 2.65rem;
  padding: 0 0.95rem;
  border: 1px solid transparent;
  border-radius: 0.14rem;
  background: var(--navy);
  color: #f7f3eb;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--navy);
  border-radius: 0.14rem;
  background: var(--navy);
  color: #f9f6f0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(10, 18, 28, 0.14);
}

.button.secondary {
  background: transparent;
  color: #f9f6f0;
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.lang-switch:hover,
.menu-toggle:hover,
.button:hover,
.pill-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.page-main {
  padding-bottom: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 5rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(178, 139, 87, 0.26), transparent 26%),
    radial-gradient(circle at 85% 28%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #111b27 0%, #18293b 52%, #23384d 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 100%);
  background-size: 120px 100%;
  opacity: 0.18;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  color: rgba(245, 248, 252, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.55;
}

.page-kicker,
.section-tag,
.mini-label,
.article-meta,
.issue-meta,
.role-meta,
.stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-kicker::before,
.section-tag::before {
  content: "";
  width: 3.15rem;
  height: 2px;
  background: currentColor;
}

.hero-grid,
.split-layout,
.article-layout,
.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 1.8rem;
  align-items: start;
}

.hero-copy,
.hero-aside,
.content-card,
.issue-panel,
.article-card,
.issue-card,
.board-card,
.callout-card,
.guideline-card,
.submission-panel,
.timeline-card,
.archive-panel {
  border: 1px solid var(--line);
  border-top: 5px solid rgba(178, 139, 87, 0.88);
  border-radius: 0.14rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 2.25rem 2.35rem;
  border-color: rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: #edf3f8;
  box-shadow: 0 24px 56px rgba(8, 14, 22, 0.16);
  backdrop-filter: blur(8px);
}

.hero-copy .page-kicker {
  color: rgba(234, 194, 140, 0.92);
}

.page-title {
  margin: 0.72rem 0 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 6.5vw, 5.7rem);
  line-height: 0.88;
}

.page-lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(237, 243, 248, 0.88);
  font-size: 1.12rem;
  line-height: 1.82;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-aside {
  overflow: hidden;
}

.issue-panel {
  padding: 1.65rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.issue-cover {
  position: relative;
  min-height: 19.4rem;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.14rem;
  background:
    radial-gradient(circle at 70% 22%, rgba(178, 139, 87, 0.18), transparent 24%),
    linear-gradient(180deg, #101b27 0%, #1b2c3f 100%);
  color: #fff9f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.issue-cover::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.cover-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cover-title {
  margin: 1.05rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  line-height: 0.92;
}

.cover-subtitle {
  max-width: 18rem;
  margin-top: 0.6rem;
  color: rgba(255, 249, 240, 0.75);
  line-height: 1.65;
}

.cover-lines {
  display: grid;
  gap: 0.45rem;
  width: 5.6rem;
  margin-top: 2rem;
}

.cover-lines span {
  display: block;
  height: 0.32rem;
  background: rgba(255, 249, 240, 0.9);
}

.cover-lines .broken {
  position: relative;
  background: transparent;
}

.cover-lines .broken::before,
.cover-lines .broken::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 249, 240, 0.9);
}

.cover-lines .broken::after {
  right: 0;
}

.journal-badge {
  min-width: 3.3rem;
  min-height: 3.3rem;
  display: grid;
  place-items: center;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 249, 240, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meta-grid,
.card-grid,
.detail-grid,
.board-grid,
.article-grid,
.archive-grid,
.timeline-grid,
.guideline-grid {
  display: grid;
  gap: 1.25rem;
}

.meta-grid {
  margin-top: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(178, 139, 87, 0.8);
  background: var(--surface-soft);
}

.stat-value {
  display: block;
  margin-top: 0.36rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
}

.section {
  padding: 4.8rem 0;
}

.section.soft {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  border-top: 1px solid rgba(22, 35, 51, 0.06);
  border-bottom: 1px solid rgba(22, 35, 51, 0.06);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 2.1rem;
}

.section-title {
  margin: 0.65rem 0 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 4.4vw, 4.25rem);
  line-height: 0.92;
}

.section-copy {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

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

.detail-grid,
.article-grid,
.archive-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

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

.content-card,
.article-card,
.issue-card,
.board-card,
.callout-card,
.guideline-card,
.submission-panel,
.timeline-card,
.archive-panel {
  padding: 1.7rem;
}

.content-card h3,
.article-card h3,
.issue-card h3,
.board-card h3,
.callout-card h3,
.guideline-card h3,
.submission-panel h3,
.timeline-card h3,
.archive-panel h3,
.issue-panel h3 {
  margin: 0.8rem 0 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.95rem;
  line-height: 1;
}

.content-card p,
.article-card p,
.issue-card p,
.board-card p,
.callout-card p,
.guideline-card p,
.submission-panel p,
.timeline-card p,
.archive-panel p,
.issue-panel p {
  margin: 0.82rem 0 0;
  line-height: 1.78;
}

.content-card,
.issue-card,
.board-card,
.guideline-card,
.timeline-card,
.article-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.callout-card,
.archive-panel {
  background: linear-gradient(180deg, var(--navy) 0%, #16283a 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.callout-card h3,
.archive-panel h3,
.callout-card p,
.archive-panel p {
  color: rgba(245, 248, 252, 0.92);
}

.callout-card .section-tag,
.archive-panel .section-tag {
  color: rgba(234, 194, 140, 0.92);
}

.signal-list,
.detail-list,
.issue-list,
.case-points,
.form-notes {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.signal-list li,
.detail-list li,
.issue-list li,
.case-points li,
.form-notes li {
  position: relative;
  padding-left: 1.15rem;
}

.signal-list li::before,
.detail-list li::before,
.issue-list li::before,
.case-points li::before,
.form-notes li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--accent);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  min-height: 2.2rem;
  padding: 0 0.4rem;
  background: rgba(178, 139, 87, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card {
  position: relative;
  overflow: hidden;
}

.article-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.6rem;
  height: 0.24rem;
  background: rgba(178, 139, 87, 0.95);
}

.article-byline,
.article-status {
  color: var(--muted);
  line-height: 1.68;
}

.article-byline {
  margin: 0.72rem 0 0;
}

.article-status {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.article-status.is-error {
  color: #8a3528;
  border-left-color: #b65445;
}

.article-empty-card {
  grid-column: 1 / -1;
}

.article-actions,
.issue-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.58rem 0.95rem;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(10, 18, 28, 0.05);
}

.pill-link:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #f8f4ec;
}

.pill-link.is-disabled {
  opacity: 0.72;
}

.submission-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #0f1824 0%, #182839 100%);
  color: rgba(238, 243, 248, 0.9);
}

.submission-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(178, 139, 87, 0.15), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 100%);
  background-size: auto, 72px 100%;
  opacity: 0.22;
  pointer-events: none;
}

.submission-panel .mini-label,
.submission-panel h3,
.submission-panel p {
  position: relative;
  z-index: 1;
  color: rgba(245, 248, 252, 0.92);
}

.submission-panel .mini-label {
  color: rgba(234, 194, 140, 0.92);
}

.submission-form {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field,
.field-wide {
  display: grid;
  gap: 0.45rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field-wide label {
  color: rgba(245, 248, 252, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
}

.field input,
.field select,
.field-wide textarea,
.field-wide input {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.field input:focus,
.field select:focus,
.field-wide textarea:focus,
.field-wide input:focus {
  outline: 2px solid rgba(178, 139, 87, 0.45);
  outline-offset: 1px;
}

.field-wide textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.status-note {
  min-height: 1.5rem;
  color: rgba(245, 248, 252, 0.72);
  font-size: 0.92rem;
}

.note-strip {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid rgba(234, 194, 140, 0.92);
  background: rgba(255, 255, 255, 0.1);
}

.issue-shell {
  display: grid;
  gap: 1rem;
}

.archive-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 2.2rem;
  padding: 0 0.65rem;
  background: rgba(178, 139, 87, 0.14);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  padding: 3.8rem 0 4.4rem;
  background: linear-gradient(180deg, #0d1722 0%, #152738 100%);
  color: rgba(231, 237, 243, 0.78);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-copy {
  max-width: 40rem;
}

.footer-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 2.15rem;
  line-height: 1;
}

.footer-copy p {
  margin: 0.8rem 0 0;
  line-height: 1.78;
}

.footer .pill-link {
  border-color: rgba(234, 194, 140, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 248, 252, 0.92);
}

.footer .pill-link:hover {
  border-color: rgba(234, 194, 140, 0.85);
  background: rgba(178, 139, 87, 0.18);
  color: #ffffff;
}

@media (max-width: 960px) {
  .nav-wrap {
    min-height: auto;
    padding: 0.9rem 0;
    align-items: start;
  }

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

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-top: 4px solid rgba(178, 139, 87, 0.8);
    border-radius: 0.24rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.45rem 0;
  }

  .nav-links a::after {
    bottom: -0.1rem;
  }

  .hero-grid,
  .split-layout,
  .article-layout,
  .archive-layout,
  .card-grid,
  .detail-grid,
  .board-grid,
  .article-grid,
  .archive-grid,
  .timeline-grid,
  .guideline-grid,
  .meta-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-grid,
  .form-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1220px, calc(100% - 1.4rem));
  }

  .topline {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
    padding: 0.6rem;
  }

  .brand-title.lang-zh {
    font-size: 1.18rem;
  }

  .brand-title.lang-en {
    font-size: 0.78rem;
  }

  .brand-domain {
    font-size: 0.68rem;
  }

  .page-hero {
    padding: 4.1rem 0 3.2rem;
  }

  .page-title {
    font-size: 2.9rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .content-card h3,
  .article-card h3,
  .issue-card h3,
  .board-card h3,
  .callout-card h3,
  .guideline-card h3,
  .submission-panel h3,
  .timeline-card h3,
  .archive-panel h3,
  .issue-panel h3 {
    font-size: 1.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lang-switch,
  .menu-toggle,
  .button,
  .pill-link,
  .nav-links a::after {
    transition: none;
  }
}
