/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--lb-paper);
  color: var(--lb-ink);
  font-family: var(--lb-font-body);
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== Variables ===== */
:root {
  --lb-deep: #0A1F44;
  --lb-gold: #C9A227;
  --lb-red: #B71C1C;
  --lb-paper: #F5F3EF;
  --lb-ink: #111111;
  --lb-gray: #6E6A67;
  --lb-line: #D8D2C8;
  --lb-silver: #B6C3D6;

  --lb-font-head: "Noto Sans SC", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  --lb-font-body: "Noto Serif SC", "Source Han Serif CN", "Songti SC", "SimSun", serif;
  --lb-font-data: "SF Mono", "Cascadia Code", "Consolas", monospace;

  --lb-space-1: 4px;
  --lb-space-2: 8px;
  --lb-space-3: 16px;
  --lb-space-4: 24px;
  --lb-space-5: 40px;
  --lb-space-6: 64px;
  --lb-space-7: 96px;

  --lb-content: 1280px;
  --lb-transition: 300ms ease;
}

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

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

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--lb-font-head);
  font-weight: 900;
  line-height: 1.18;
  color: var(--lb-deep);
  margin: 0 0 var(--lb-space-3);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--lb-space-3);
}

a {
  color: var(--lb-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lb-transition);
}

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

ul,
ol {
  margin-bottom: var(--lb-space-3);
  padding-left: 1.25em;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: var(--lb-space-3);
  z-index: 9999;
  background: var(--lb-gold);
  color: var(--lb-deep);
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 24px;
  text-decoration: none;
  transition: top var(--lb-transition);
}

.skip-link:focus {
  top: var(--lb-space-3);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--lb-gold);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  pointer-events: none;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--lb-deep);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.25);
}

.site-header__inner {
  max-width: var(--lb-content);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 clamp(var(--lb-space-3), 3vw, var(--lb-space-5));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--lb-space-3), 2vw, var(--lb-space-4));
  border-left: 2px solid rgba(182, 195, 214, 0.35);
  border-right: 2px solid rgba(182, 195, 214, 0.35);
  position: relative;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lb-paper);
  text-decoration: none;
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  flex: 0 0 auto;
}

.brand:hover {
  color: var(--lb-paper);
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--lb-gold);
  color: var(--lb-deep);
  font-family: var(--lb-font-head);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  flex: 0 0 auto;
}

.brand__name {
  font-weight: 700;
  white-space: nowrap;
}

.brand__accent {
  color: var(--lb-gold);
  font-weight: 900;
}

/* Nav */
.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(var(--lb-space-2), 1.5vw, var(--lb-space-4));
}

.site-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.site-nav__link {
  display: inline-block;
  padding: 12px 10px;
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(245, 243, 239, 0.82);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color var(--lb-transition);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--lb-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--lb-transition);
}

.site-nav__link:hover {
  color: var(--lb-gold);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__link[aria-current="page"] {
  color: var(--lb-gold);
}

/* Search */
.site-search {
  position: relative;
  flex: 0 0 auto;
}

.site-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search__input {
  width: 168px;
  padding: 8px 12px 8px 30px;
  background: transparent;
  border: 1px solid rgba(182, 195, 214, 0.4);
  border-bottom: 2px solid var(--lb-gold);
  color: var(--lb-paper);
  font-family: var(--lb-font-body);
  font-size: 0.8125rem;
  outline: none;
  transition: border-color var(--lb-transition), width var(--lb-transition);
}

.site-search__input::placeholder {
  color: rgba(245, 243, 239, 0.45);
}

.site-search__input:focus {
  border-color: var(--lb-gold);
  width: 200px;
}

.site-search::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid var(--lb-gold);
  border-radius: 50%;
  transform: translateY(-65%);
  pointer-events: none;
}

.site-search::after {
  content: "";
  position: absolute;
  left: 15px;
  top: calc(50% + 4px);
  width: 5px;
  height: 2px;
  background: var(--lb-gold);
  transform: rotate(45deg);
  pointer-events: none;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lb-paper);
  transition: transform var(--lb-transition), opacity var(--lb-transition), background var(--lb-transition);
}

.nav-toggle:hover .nav-toggle__bar {
  background: var(--lb-gold);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--lb-deep);
  color: var(--lb-paper);
  margin-top: var(--lb-space-7);
  border-top: 3px solid var(--lb-gold);
  border-bottom: 4px solid var(--lb-red);
}

.site-footer a {
  color: rgba(245, 243, 239, 0.82);
  text-decoration: none;
}

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

.site-footer__inner {
  max-width: var(--lb-content);
  margin: 0 auto;
  padding: 0 clamp(var(--lb-space-3), 3vw, var(--lb-space-5));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 48px;
  padding: var(--lb-space-6) 0 var(--lb-space-5);
}

.site-footer__block--brand .brand {
  margin-bottom: var(--lb-space-3);
}

.site-footer__statement {
  margin: var(--lb-space-3) 0 0;
  padding-top: var(--lb-space-3);
  border-top: 1px solid rgba(245, 243, 239, 0.18);
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(245, 243, 239, 0.6);
}

.site-footer__heading {
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  color: var(--lb-gold);
  margin: 0 0 var(--lb-space-3);
  padding-left: 12px;
  border-left: 3px solid var(--lb-gold);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__list a {
  display: inline-block;
  font-family: var(--lb-font-body);
  font-size: 0.9375rem;
  padding: 2px 0;
  transition: color var(--lb-transition), padding-left var(--lb-transition);
}

.site-footer__list a:hover {
  color: var(--lb-gold);
  padding-left: 4px;
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: var(--lb-font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.85);
}

.site-footer__bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 243, 239, 0.14);
  font-family: var(--lb-font-head);
  font-size: 0.8125rem;
  color: rgba(245, 243, 239, 0.5);
}

.site-footer__bar p {
  margin: 0;
}

/* ===== Main / Containers ===== */
.lb-main {
  min-height: 60vh;
  padding: var(--lb-space-6) 0 var(--lb-space-7);
  outline: none;
  scroll-margin-top: 90px;
}

#main-content {
  outline: none;
  scroll-margin-top: 90px;
}

section[id] {
  scroll-margin-top: 90px;
}

.lb-container {
  width: 100%;
  max-width: var(--lb-content);
  margin: 0 auto;
  padding: 0 clamp(var(--lb-space-3), 4vw, var(--lb-space-5));
}

.lb-container--narrow {
  max-width: 920px;
}

.lb-container--wide {
  max-width: 1600px;
}

.lb-main > .lb-container:first-child {
  padding-top: var(--lb-space-2);
}

/* ===== Sections ===== */
.lb-section {
  padding: var(--lb-space-6) 0;
}

.lb-section--tinted {
  background: rgba(182, 195, 214, 0.16);
  border-top: 1px solid var(--lb-line);
  border-bottom: 1px solid var(--lb-line);
}

.lb-section--dark {
  background: var(--lb-deep);
  border-top: 4px solid var(--lb-gold);
  border-bottom: 4px solid var(--lb-gold);
}

.lb-section--dark h1,
.lb-section--dark h2,
.lb-section--dark h3,
.lb-section--dark h4 {
  color: var(--lb-paper);
}

.lb-section--dark .lb-kicker,
.lb-section--dark .lb-label {
  color: var(--lb-gold);
}

/* ===== Editorial Grid ===== */
.lb-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--lb-space-4);
}

.lb-grid > * {
  grid-column: span 6;
  min-width: 0;
}

.lb-grid > .lb-grid__wide {
  grid-column: span 8;
}

.lb-grid > .lb-grid__narrow {
  grid-column: span 4;
}

.lb-grid > .lb-grid__full {
  grid-column: span 12;
}

/* ===== Kicker / Annotate ===== */
.lb-kicker {
  display: inline-block;
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--lb-gold);
  border-left: 3px solid var(--lb-gold);
  padding-left: 10px;
  margin-bottom: 12px;
}

.lb-annotate {
  font-family: var(--lb-font-head);
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--lb-gray);
  border-left: 3px solid var(--lb-gold);
  padding-left: var(--lb-space-3);
  margin: var(--lb-space-3) 0 var(--lb-space-4);
}

/* ===== Panel / Card ===== */
.lb-panel {
  position: relative;
  background: var(--lb-paper);
  border: 2px solid var(--lb-deep);
  padding: var(--lb-space-5);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.lb-panel--dark {
  background: var(--lb-deep);
  border-color: var(--lb-gold);
}

.lb-panel--dark h1,
.lb-panel--dark h2,
.lb-panel--dark h3,
.lb-panel--dark h4 {
  color: var(--lb-paper);
}

.lb-card {
  position: relative;
  background: var(--lb-paper);
  border: 1px solid var(--lb-line);
  padding: var(--lb-space-4) var(--lb-space-5);
  transition: box-shadow var(--lb-transition), transform var(--lb-transition);
}

.lb-card:hover {
  box-shadow: 6px 6px 0 var(--lb-deep);
  transform: translate(-2px, -2px);
}

/* ===== Tags ===== */
.lb-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  background: var(--lb-silver);
  color: var(--lb-deep);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
  border: 0;
}

.lb-tag:hover {
  color: var(--lb-deep);
}

.lb-tag--gold {
  background: var(--lb-gold);
  color: var(--lb-deep);
}

.lb-tag--gold:hover {
  background: var(--lb-deep);
  color: var(--lb-gold);
}

.lb-tag--red {
  background: var(--lb-red);
  color: var(--lb-paper);
}

.lb-tag--red:hover {
  background: var(--lb-paper);
  color: var(--lb-red);
}

.lb-tag--ghost {
  background: transparent;
  border: 1px solid var(--lb-line);
  clip-path: none;
}

/* ===== Buttons ===== */
.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  text-decoration: none;
  background: var(--lb-deep);
  color: var(--lb-paper);
  border: 2px solid var(--lb-deep);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  cursor: pointer;
  transition: background var(--lb-transition), color var(--lb-transition), border-color var(--lb-transition);
}

.lb-btn:hover {
  background: var(--lb-paper);
  color: var(--lb-deep);
}

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

.lb-btn--gold:hover {
  background: var(--lb-deep);
  border-color: var(--lb-deep);
  color: var(--lb-gold);
}

.lb-btn--ghost {
  background: transparent;
  border: 2px solid var(--lb-deep);
  color: var(--lb-deep);
}

.lb-btn--ghost:hover {
  background: var(--lb-deep);
  color: var(--lb-paper);
}

/* ===== Breadcrumbs ===== */
.lb-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 var(--lb-space-5);
  padding: 0;
  font-family: var(--lb-font-head);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.lb-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lb-gray);
}

.lb-crumbs li + li::before {
  content: "/";
  color: var(--lb-line);
  font-weight: 400;
}

.lb-crumbs a {
  color: var(--lb-deep);
  text-decoration: none;
  transition: color var(--lb-transition);
}

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

.lb-crumbs [aria-current="page"] {
  color: var(--lb-gray);
}

/* ===== Divider ===== */
.lb-divider {
  display: flex;
  align-items: center;
  gap: var(--lb-space-3);
  margin: var(--lb-space-6) 0;
  border: 0;
}

.lb-divider::before {
  content: "";
  width: 48px;
  height: 4px;
  background: var(--lb-gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  flex: 0 0 auto;
}

.lb-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lb-line);
}

.diagonal-line {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--lb-gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

/* ===== Media / Image Placeholder ===== */
.lb-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--lb-silver);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(10, 31, 68, 0.06) 8px,
    rgba(10, 31, 68, 0.06) 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.lb-media::before {
  content: attr(data-feature);
  display: inline-block;
  padding: 6px 14px;
  background: var(--lb-paper);
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--lb-deep);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  z-index: 1;
}

.lb-media::after {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 3px 12px;
  background: var(--lb-gold);
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--lb-deep);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  opacity: 0;
  transition: opacity var(--lb-transition);
  z-index: 2;
}

.lb-media:hover::after {
  opacity: 1;
}

.lb-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.lb-media--portrait {
  aspect-ratio: 3 / 4;
}

.lb-media--wide {
  aspect-ratio: 21 / 9;
}

/* ===== Stats ===== */
.lb-stat {
  font-family: var(--lb-font-data);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--lb-deep);
  letter-spacing: -0.02em;
  display: block;
}

.lb-stat--gold {
  color: var(--lb-gold);
}

.lb-stat__label {
  display: block;
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--lb-gray);
  margin-top: 8px;
}

/* ===== Table ===== */
.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.lb-table thead th {
  font-family: var(--lb-font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--lb-deep);
  color: var(--lb-deep);
  white-space: nowrap;
}

.lb-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--lb-line);
}

.lb-table tbody tr {
  transition: background var(--lb-transition);
}

.lb-table tbody tr:hover {
  background: rgba(201, 162, 39, 0.08);
}

/* ===== Label ===== */
.lb-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lb-font-data);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--lb-gray);
}

.lb-label::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--lb-gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

/* ===== Reveal Motion ===== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js [data-reveal="in"] {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .site-search__input {
    width: 120px;
  }

  .site-search__input:focus {
    width: 150px;
  }

  .site-nav__link {
    padding: 12px 7px;
    font-size: 0.781rem;
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
    min-height: 64px;
    border-left: 0;
    border-right: 0;
  }

  .brand__name {
    white-space: normal;
  }

  .brand {
    flex: 1;
  }

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

  .site-nav {
    flex: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--lb-deep);
    padding: var(--lb-space-3) clamp(var(--lb-space-3), 3vw, var(--lb-space-5)) var(--lb-space-4);
    border-top: 1px solid rgba(201, 162, 39, 0.4);
    border-bottom: 3px solid var(--lb-gold);
    box-shadow: 0 20px 32px rgba(10, 31, 68, 0.32);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--lb-transition), transform var(--lb-transition), visibility 0s ease var(--lb-transition);
  }

  .site-nav[data-open] {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity var(--lb-transition), transform var(--lb-transition);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__item {
    width: 100%;
  }

  .site-nav__link {
    display: block;
    padding: 15px 4px;
    font-size: 1rem;
    color: rgba(245, 243, 239, 0.85);
    border-bottom: 1px solid rgba(245, 243, 239, 0.12);
  }

  .site-nav__link::after {
    left: 0;
    right: auto;
    width: 0;
    height: 100%;
    background: rgba(201, 162, 39, 0.18);
    transform: none;
    transition: width var(--lb-transition);
    bottom: 0;
  }

  .site-nav__link:hover::after,
  .site-nav__link[aria-current="page"]::after {
    width: 4px;
  }

  .site-nav__link[aria-current="page"] {
    color: var(--lb-gold);
  }

  .site-search {
    margin-top: var(--lb-space-3);
  }

  .site-search__input,
  .site-search__input:focus {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
    padding: var(--lb-space-6) 0 var(--lb-space-5);
  }

  .site-footer__block--brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__block--brand {
    grid-column: span 1;
  }

  .site-footer__bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .lb-grid {
    grid-template-columns: 1fr;
    gap: var(--lb-space-3);
  }

  .lb-grid > *,
  .lb-grid > .lb-grid__wide,
  .lb-grid > .lb-grid__narrow,
  .lb-grid > .lb-grid__full {
    grid-column: span 1;
  }

  .lb-section {
    padding: var(--lb-space-5) 0;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .scroll-progress {
    transition: none;
  }
}
