*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul[class],
ol[class] {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

:root {
  --moss: #0C3B2E;
  --moss-deep: #07281F;
  --gold: #D4AF37;
  --gold-soft: #E3C667;
  --crimson: #6E1423;
  --crimson-bright: #A02B3A;
  --rock: #6C7275;
  --clay: #9C5D3E;
  --cream: #F4EFE6;
  --ink: #0A1410;
  --mist: #D8E0DA;
  --font-display: 'Arial Black', 'Roboto Condensed', 'Noto Sans SC', 'PingFang SC', sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --container: 1240px;
  --header-offset: 92px;
  --ease-out: cubic-bezier(.33, 1, .68, 1);
  --duration: .25s;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  padding-top: var(--header-offset);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(36px, 6vw, 68px);
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--moss);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--clay);
}

#main-content {
  display: block;
  scroll-margin-top: 110px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 64px, var(--container));
  }
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 2000;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top .2s var(--ease-out);
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--cream);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .05em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease-out), color var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}

.btn--ghost {
  border-color: rgba(244, 239, 230, .35);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, .08);
}

.btn--cta {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--sm {
  padding: 6px 14px;
  font-size: 12px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 28px;
  padding: 0;
  font-size: 13px;
  color: var(--rock);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--gold);
  font-weight: 900;
}

.breadcrumb a {
  color: var(--moss);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--rock);
  font-weight: 700;
}

.page-section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .page-section {
    padding: 96px 0;
  }
}

@media (min-width: 1100px) {
  .page-section {
    padding: 128px 0;
  }
}

.page-section--moss {
  background: var(--moss);
  color: var(--cream);
}

.page-section--moss h1,
.page-section--moss h2,
.page-section--moss h3 {
  color: var(--cream);
}

.page-section--ink {
  background: var(--ink);
  color: var(--mist);
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 20px;
}

.section-heading__index {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--gold);
  background: var(--moss);
  padding: 3px 8px;
  line-height: 1.4;
  flex-shrink: 0;
}

.section-heading__title {
  flex: 1;
  margin: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--rock);
  max-width: 64ch;
}

.content-body {
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.8;
}

.content-body p {
  margin-bottom: 1.2em;
}

.data-text {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.grid-page {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-8 {
  grid-column: span 8;
}

@media (max-width: 1023px) {
  .grid-page {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-span-3 {
    grid-column: span 3;
  }

  .grid-span-4,
  .grid-span-5,
  .grid-span-6,
  .grid-span-8 {
    grid-column: span 4;
  }
}

@media (max-width: 640px) {
  .grid-page {
    grid-template-columns: 1fr;
  }

  .grid-span-3,
  .grid-span-4,
  .grid-span-5,
  .grid-span-6,
  .grid-span-8 {
    grid-column: span 1;
  }
}

.media-frame {
  position: relative;
  background: var(--ink);
  border: 1px solid rgba(212, 175, 55, .35);
  aspect-ratio: 4 / 3;
  min-height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, .35);
  z-index: 1;
  pointer-events: none;
}

.media-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 22px solid var(--gold);
  border-left: 22px solid transparent;
  opacity: .9;
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
}

.media-frame--tall {
  aspect-ratio: 3 / 4;
  min-height: 280px;
}

.data-panel {
  background: var(--ink);
  border: 1px solid rgba(212, 175, 55, .4);
  color: var(--mist);
  padding: 24px;
}

.data-panel__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
}

.data-panel__body {
  font-size: 14px;
}

.data-panel p:last-child {
  margin-bottom: 0;
}

.data-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--crimson);
  color: var(--cream);
  font-style: normal;
}

.data-tag--gold {
  background: var(--gold);
  color: var(--ink);
}

.data-tag--clay {
  background: var(--clay);
  color: var(--cream);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(212, 175, 55, .35);
}

.timeline > li {
  position: relative;
  padding: 0 0 26px 34px;
}

.timeline > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  background: var(--moss);
}

.timeline > li.is-live::before {
  background: var(--crimson-bright);
  box-shadow: 0 0 0 4px rgba(160, 43, 58, .2);
}

.folding {
  border: 1px solid rgba(212, 175, 55, .45);
  background: var(--cream);
  margin-bottom: 16px;
}

.folding__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 15px;
  color: var(--moss);
}

.folding__summary::-webkit-details-marker {
  display: none;
}

.folding__summary::before {
  content: "＋";
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  order: 2;
  transition: transform .2s var(--ease-out);
}

.folding[open] .folding__summary::before {
  content: "－";
}

.folding__body {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--mist);
  font-size: 14px;
}

.progress-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
  background: rgba(212, 175, 55, .12);
  pointer-events: none;
}

.progress-ticker__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  padding: 12px 0 0;
}

.site-header {
  width: min(100% - 24px, var(--container));
  margin-inline: auto;
  pointer-events: auto;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 16px;
  background: rgba(12, 59, 46, .96);
  border: 1px solid rgba(212, 175, 55, .4);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(10, 20, 16, .3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.site-header__inner::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 21px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
  flex-shrink: 0;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--cream);
  line-height: 1.1;
}

.brand__tagline {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--gold);
  white-space: nowrap;
  font-style: normal;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-inline: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(244, 239, 230, .86);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration) var(--ease-out), background-color var(--duration) var(--ease-out);
}

.nav-link__num {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  line-height: 1;
  color: var(--gold);
  opacity: .8;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, .08);
}

.nav-link[aria-current="page"] {
  color: var(--gold);
  background: rgba(212, 175, 55, .12);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-link[aria-current="page"] .nav-link__num {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.follow-entry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(212, 175, 55, .5);
  background: rgba(212, 175, 55, .06);
  color: var(--gold);
  text-decoration: none;
  transition: background-color var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}

.follow-entry:hover {
  background: var(--gold);
  color: var(--ink);
}

.follow-entry__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson-bright);
  flex-shrink: 0;
  animation: follow-pulse 2s ease-in-out infinite;
}

@keyframes follow-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(160, 43, 58, .45);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(160, 43, 58, 0);
  }
}

.follow-entry__text {
  display: grid;
  line-height: 1.2;
}

.follow-entry__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 1.2;
}

.follow-entry__meta {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: .04em;
  color: rgba(212, 175, 55, .7);
  white-space: nowrap;
  line-height: 1.4;
}

.follow-entry:hover .follow-entry__meta {
  color: rgba(10, 20, 16, .6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, .55);
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__line {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: transform .22s var(--ease-out), opacity .22s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .site-header-wrap {
    padding-top: 8px;
  }

  .site-header__inner {
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 10px 10px 10px 14px;
    gap: 8px;
  }

  .main-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 4px 0 0;
    padding: 10px 4px 6px;
    border-top: 1px solid rgba(212, 175, 55, .22);
  }

  .main-nav[data-open] {
    display: flex;
  }

  .main-nav .nav-link {
    justify-content: flex-start;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(244, 239, 230, .08);
  }

  .main-nav .nav-link:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .follow-entry__meta {
    display: none;
  }

  .follow-entry {
    padding: 7px 12px;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    border-radius: 18px;
    padding: 8px 8px 8px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand__name {
    font-size: 16px;
    letter-spacing: .04em;
  }

  .brand__tagline {
    display: none;
  }

  .follow-entry {
    padding: 6px 10px;
  }

  .follow-entry__label {
    font-size: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

.site-footer {
  background: var(--ink);
  color: var(--mist);
  font-size: 14px;
}

.site-footer__top {
  border-top: 3px solid var(--gold);
  padding: 48px 0 40px;
  position: relative;
}

.site-footer__top::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  opacity: .4;
  pointer-events: none;
}

.site-footer__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 6fr 3fr 4fr;
    gap: 32px;
  }
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-wordmark {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-wordmark__text {
  display: grid;
  gap: 4px;
}

.footer-wordmark__box {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
  flex-shrink: 0;
}

.footer-wordmark__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  color: var(--cream);
  line-height: 1;
  margin: 0;
}

.footer-wordmark__sub {
  margin: 0;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .04em;
}

.footer-summary {
  max-width: 48ch;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(244, 239, 230, .65);
  margin: 0;
}

.footer-nav {
  display: grid;
  gap: 4px;
  align-content: start;
}

.footer-nav__title,
.footer-contact__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: var(--mist);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a::before {
  content: "→";
  color: var(--gold);
  transition: transform .2s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-nav a:hover::before {
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 6px;
  align-content: start;
}

.footer-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(244, 239, 230, .7);
  font-size: 13px;
}

.footer-contact__item::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}

.footer-contact__item--phone {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.footer-contact__note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(244, 239, 230, .12);
  font-size: 12px;
  color: rgba(244, 239, 230, .45);
}

.site-footer__bottom {
  border-top: 1px solid rgba(244, 239, 230, .12);
  padding: 18px 0;
  font-size: 12px;
  color: rgba(244, 239, 230, .45);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer__copyright {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.site-footer__icp {
  margin: 0;
}

.site-footer__trust {
  margin: 0;
  color: rgba(244, 239, 230, .35);
}

@media (max-width: 767px) {
  .site-footer__grid {
    gap: 32px;
  }

  .site-footer__bottom-inner {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
