:root {
  --gold: #D9A441;
  --gold-light: #F0D58C;
  --red: #B03A2E;
  --red-dark: #7C2A22;
  --ink: #121820;
  --navy: #1A2733;
  --ivory: #F4EDE4;
  --slate: #6E7B8A;
  --clay: #A5673F;
  --moss: #5E6B5A;
  --serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --display: "Noto Serif SC", "Songti SC", "STKaiti", "KaiTi", serif;
  --sans: "Noto Sans SC", "HarmonyOS Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", "Cascadia Code", Consolas, monospace;
  --container: 1280px;
  --radius: 1rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink);
  background-image:
    radial-gradient(circle at 85% 10%, rgba(217, 164, 65, 0.10), transparent 35%),
    radial-gradient(circle at 10% 20%, rgba(176, 58, 46, 0.08), transparent 25%),
    linear-gradient(180deg, #101820, #0c1218);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  line-height: 1.3;
  color: var(--ivory);
  font-weight: 700;
}

a { color: var(--gold); }

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

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

[hidden] { display: none !important; }

button { font-family: inherit; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.container--narrow { max-width: 840px; }

.section { padding-block: clamp(4rem, 8vw, 7rem); }

.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-kicker {
  display: block;
  margin-bottom: .6rem;
  font-size: .75rem;
  font-family: var(--sans);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ivory);
  letter-spacing: .02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lede {
  font-size: 1.05rem;
  color: rgba(244, 237, 228, 0.82);
  max-width: 62ch;
}

.meta-label {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .08em;
}

.divider-gold {
  border: 0;
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.8), transparent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-12 { grid-column: 1 / -1; }

.card {
  position: relative;
  background: rgba(244, 237, 228, 0.04);
  border: 1px solid rgba(244, 237, 228, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2vw, 2rem);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius) 0 0;
  opacity: .45;
  transition: opacity .25s;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 164, 65, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card:hover::after { opacity: 1; }

.card--gold {
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.14), rgba(217, 164, 65, 0.03));
}

.card--red {
  background: linear-gradient(135deg, rgba(176, 58, 46, 0.2), rgba(176, 58, 46, 0.05));
  border-color: rgba(176, 58, 46, 0.35);
}

.card-title {
  margin: .5rem 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ivory);
}

.card-text {
  color: rgba(244, 237, 228, 0.8);
  font-size: .95rem;
}

.panel {
  background: var(--navy);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.cut-corner {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.cut-corner--alt {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.cut-corner--both {
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  padding: .7rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.btn:hover { transform: translateY(-1px); }

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

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  border-color: var(--gold-light);
  box-shadow: 0 6px 18px rgba(217, 164, 65, 0.35);
}

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

.btn--outline:hover {
  background: rgba(217, 164, 65, 0.12);
  color: var(--gold-light);
}

.btn--danger {
  background: var(--red);
  color: var(--ivory);
  border-color: var(--red);
}

.btn--danger:hover {
  background: var(--red-dark);
  color: var(--ivory);
}

.btn--small {
  padding: .45rem 1rem;
  font-size: .82rem;
}

.breadcrumbs {
  margin: 0;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  font-size: .84rem;
  color: var(--slate);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--slate);
  opacity: .6;
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}

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

.breadcrumbs [aria-current="page"] { color: var(--ivory); }

.tag {
  display: inline-block;
  padding: .2rem .65rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.14);
  border: 1px solid rgba(217, 164, 65, 0.4);
  color: var(--gold-light);
}

.tag--red {
  background: rgba(176, 58, 46, 0.18);
  border-color: rgba(176, 58, 46, 0.55);
  color: #F2CAC4;
}

.tag--clay {
  background: rgba(165, 103, 63, 0.18);
  border-color: rgba(165, 103, 63, 0.55);
  color: #E6C1A3;
}

.tag--moss {
  background: rgba(94, 107, 90, 0.22);
  border-color: rgba(94, 107, 90, 0.55);
  color: #C2D0BF;
}

.media-frame {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--ratio, 16 / 9);
  background: linear-gradient(145deg, rgba(217, 164, 65, 0.12), rgba(176, 58, 46, 0.04));
  border: 1px solid rgba(244, 237, 228, 0.1);
  border-radius: var(--radius);
}

.media-frame::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(244, 237, 228, 0.45);
  font-size: .85rem;
  letter-spacing: .2em;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(217, 164, 65, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.bg-navy { background: var(--navy); }
.bg-ink { background: var(--ink); }
.text-gold { color: var(--gold); }

.bg-ivory {
  background: var(--ivory);
  color: var(--ink);
}

.bg-ivory h1,
.bg-ivory h2,
.bg-ivory h3,
.bg-ivory .section-title,
.bg-ivory .card-title { color: var(--ink); }

.bg-ivory a { color: var(--red); }
.bg-ivory a:hover { color: var(--red-dark); }
.bg-ivory .card { background: rgba(18, 24, 32, 0.06); border-color: rgba(18, 24, 32, 0.15); }
.bg-ivory .lede { color: rgba(18, 24, 32, 0.8); }
.bg-ivory .media-frame { background: rgba(18, 24, 32, 0.08); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  pointer-events: none;
  padding: 0.75rem clamp(0.75rem, 2vw, 2rem);
  background: linear-gradient(180deg, rgba(18, 24, 32, 0.9) 0%, rgba(18, 24, 32, 0.55) 60%, transparent 100%);
}

.skip-link {
  pointer-events: auto;
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1100;
  background: var(--gold);
  color: var(--ink);
  padding: .6rem 1.2rem;
  border-radius: 0 0 .75rem .75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: top .25s var(--ease);
}

.skip-link:focus { top: 0; }

.scroll-progress {
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100%;
  background: rgba(217, 164, 65, 0.12);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width .1s linear;
}

.header-bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 auto;
  max-width: var(--container);
  padding: .4rem .5rem .4rem 1rem;
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 999px;
  background: rgba(26, 39, 51, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: max-width .35s var(--ease), padding .35s var(--ease), background .35s, border-color .35s;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle, rgba(217, 164, 65, 0.3) 40%, transparent 70%);
  flex: 0 0 auto;
}

.logo-mark::before {
  content: "";
  display: block;
  width: .85rem;
  height: .85rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: .3rem;
  border: 1px dashed rgba(217, 164, 65, 0.7);
  border-radius: 50%;
  animation: coin-spin 14s linear infinite;
}

@keyframes coin-spin {
  to { transform: rotate(360deg); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold);
  white-space: nowrap;
}

.site-tagline {
  font-size: .68rem;
  letter-spacing: .34em;
  color: var(--slate);
  white-space: nowrap;
  text-transform: uppercase;
}

.site-nav {
  margin-inline: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: .15rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: .35rem .7rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ivory);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .2s, color .2s, transform .2s;
}

.nav-link:hover {
  background: rgba(217, 164, 65, 0.14);
  color: var(--gold-light);
}

.nav-link[aria-current="page"] {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.header-search {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(244, 237, 228, 0.08);
  border: 1px solid rgba(244, 237, 228, 0.16);
  border-radius: 999px;
  padding: .18rem .35rem .18rem .8rem;
  transition: all .3s var(--ease);
}

.header-search input {
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
  width: 6.5rem;
  color: var(--ivory);
  padding: .25rem 0;
  font-size: .85rem;
}

.header-search input::placeholder { color: var(--slate); }

.header-search input:focus { width: 9rem; }

.header-search-icon {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.header-link {
  display: inline-flex;
  align-items: center;
  padding: .35rem .6rem;
  color: var(--ivory);
  font-size: .85rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

.header-link:hover {
  background: rgba(244, 237, 228, 0.1);
  color: var(--gold-light);
}

.header-link--member { color: var(--gold); }

.btn--legacy {
  display: inline-flex;
  align-items: center;
  padding: .45rem .95rem;
  border: 1px solid rgba(244, 237, 228, 0.3);
  border-radius: 999px;
  background: var(--red);
  color: var(--ivory);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(176, 58, 46, 0.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn--legacy:hover {
  background: var(--red-dark);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(176, 58, 46, 0.4);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.08);
  cursor: pointer;
  transition: background .2s;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 2px 0;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
  transform-origin: center;
}

.nav-toggle:hover { background: rgba(217, 164, 65, 0.16); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(.3rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.3rem) rotate(-45deg); }

.site-header[data-scrolled] .header-bar {
  background: rgba(18, 24, 32, 0.95);
  border-color: rgba(217, 164, 65, 0.7);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1180px) {
  .site-header[data-scrolled] .header-bar {
    max-width: 42rem;
    margin-left: auto;
    margin-right: 1.5rem;
    padding: .3rem .55rem .3rem .8rem;
  }

  .site-header[data-scrolled] .site-tagline { display: none; }

  .site-header[data-scrolled] .header-search {
    opacity: 0;
    width: 0;
    padding: 0;
    border: 0;
    margin: 0;
    overflow: hidden;
  }

  .site-header[data-scrolled] .header-link--member { display: none; }

  .site-header[data-scrolled] .nav-link {
    padding: .25rem .6rem;
    font-size: .8rem;
  }

  .site-header[data-scrolled] .btn--legacy {
    padding: .33rem .75rem;
    font-size: .78rem;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #0B1017;
  border-top: 1px solid rgba(217, 164, 65, 0.25);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.8) 20%, rgba(217, 164, 65, 0.8) 80%, transparent);
}

.footer-decor {
  position: absolute;
  right: -10%;
  bottom: -15%;
  width: 45vw;
  height: 45vw;
  max-width: 38rem;
  max-height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.1), transparent 65%);
  pointer-events: none;
}

.footer-decor::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(217, 164, 65, 0.2);
  border-radius: 50%;
}

.footer-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem clamp(1rem, 3vw, 2rem) 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
}

.logo-mark--small {
  width: 1.9rem;
  height: 1.9rem;
  border-width: 1px;
}

.logo-mark--small::before {
  width: .6rem;
  height: .6rem;
  border-width: 1px;
}

.logo-mark--small::after { inset: .2rem; }

.footer-blurb {
  max-width: 36rem;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.75;
}

.footer-links-column,
.footer-contact-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  margin: 0 0 .8rem;
  font-size: .75rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}

.footer-links a {
  color: var(--ivory);
  text-decoration: none;
  font-size: .9rem;
  opacity: .85;
  transition: opacity .2s, color .2s;
}

.footer-links a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.footer-contact {
  margin: .2rem 0 0;
  color: var(--ivory);
  font-size: .88rem;
  line-height: 1.9;
}

.footer-contact span { display: block; }

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(244, 237, 228, 0.12);
  font-size: .8rem;
  color: var(--slate);
}

.footer-bottom .footer-copy { color: rgba(244, 237, 228, 0.65); }
.footer-icp { letter-spacing: .05em; }

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(217, 164, 65, 0.6);
  border-radius: 50%;
  background: rgba(18, 24, 32, 0.85);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}

.to-top:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold-light);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js [data-reveal][data-visible] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .site-header {
    padding: .5rem .75rem;
  }

  .header-bar {
    flex-wrap: wrap;
    border-radius: 1.25rem;
    padding: .5rem .75rem;
    gap: .5rem;
  }

  .site-brand { order: 1; }
  .nav-toggle { order: 2; margin-left: auto; display: inline-flex; }

  .header-actions {
    order: 3;
    flex-basis: 100%;
    justify-content: space-between;
    padding-top: .45rem;
    margin-top: .45rem;
    border-top: 1px solid rgba(217, 164, 65, 0.22);
  }

  .site-nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    margin-top: .4rem;
    padding-top: .5rem;
    border-top: 1px solid rgba(217, 164, 65, 0.22);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: .1rem;
  }

  .nav-link {
    padding: .65rem .75rem;
    border-radius: .5rem;
  }

  .header-search { flex: 1 1 10rem; }
  .header-search input { width: 100%; }

  .scroll-progress {
    bottom: auto;
    top: 0;
  }

  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .col-7,
  .col-8,
  .col-9 { grid-column: span 6; }

  .col-12 { grid-column: 1 / -1; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-brand .site-tagline { display: none; }
  .site-name { font-size: 1.05rem; }

  .header-actions {
    flex-wrap: wrap;
    gap: .4rem;
  }

  .header-search {
    flex: 1 1 100%;
    margin-bottom: .2rem;
  }

  .header-search input { width: 100%; }

  .header-link--member {
    font-size: .78rem;
    padding: .25rem .5rem;
  }

  .btn--legacy {
    font-size: .78rem;
    padding: .35rem .7rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid > * { grid-column: 1 / -1; }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links-column { grid-column: 1 / -1; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact-column { grid-column: 1 / -1; }

  .to-top {
    right: .8rem;
    bottom: .8rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

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

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

  .logo-mark::after { animation: none; }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
