/* ============ RESET & VARIABLES ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  background-color: #F5F0E8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Arial Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0;
  line-height: 1.2;
  font-weight: 900;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

a:hover {
  color: #F2622A;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

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

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
  width: 100%;
}

main {
  display: block;
}

:root {
  --color-primary: #0B4D3A;
  --color-primary-deep: #0A2A20;
  --color-accent: #F2622A;
  --color-accent-deep: #D9701A;
  --color-gold: #C8A24B;
  --color-cream: #F5F0E8;
  --color-chalk: #E8E0D2;
  --color-ink: #1A1A1A;
  --color-white: #FFFFFF;
  --color-red: #8E2D3C;
  --bg-body: #F5F0E8;
  --bg-dark: #0B4D3A;
  --bg-darker: #0A2A20;
  --text-body: #1A1A1A;
  --font-heading: "Arial Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Microsoft YaHei", "PingFang SC", sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --container-max: 1440px;
  --container-pad: clamp(16px, 4vw, 64px);
  --border-ink: 2px solid #1A1A1A;
  --shadow-brutal: 4px 4px 0 #1A1A1A;
  --shadow-brutal-lg: 8px 8px 0 #1A1A1A;
  --transition-base: 0.2s ease-out;
}

/* ============ FOCUS & REDUCED MOTION ============ */
:focus-visible {
  outline: 3px solid #F2622A;
  outline-offset: 3px;
}

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

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

  .btn:hover,
  .btn:active,
  .card:hover,
  .nav-link:hover,
  .nav-cta:hover {
    transform: none;
    box-shadow: var(--shadow-brutal);
  }
}

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

.skip-link {
  position: fixed;
  top: -120px;
  left: 24px;
  z-index: 1300;
  background: #F2622A;
  color: #FFFFFF;
  padding: 10px 20px;
  font-weight: 700;
  border: 2px solid #1A1A1A;
  box-shadow: 3px 3px 0 #1A1A1A;
  transition: top 0.2s ease-out;
  pointer-events: auto;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid #C8A24B;
  outline-offset: 2px;
}

/* ============ LAYOUT CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

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

#main-content {
  padding-top: clamp(84px, 10vw, 128px);
  min-height: 60vh;
}

/* ============ SPLIT GRID ============ */
.split {
  display: grid;
  grid-template-columns: 28% 72%;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.split--reverse {
  grid-template-columns: 72% 28%;
}

.split-aside {
  min-width: 0;
  padding-right: clamp(16px, 2vw, 32px);
  border-right: 3px solid #E8E0D2;
}

.split-main {
  min-width: 0;
}

@media (max-width: 959px) {
  .split,
  .split--reverse {
    display: block;
  }

  .split-aside {
    border-right: none;
    border-bottom: 3px solid #E8E0D2;
    padding: 0 0 24px 0;
    margin-bottom: 32px;
  }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 24px;
  pointer-events: none;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #E8E0D2;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: repeating-linear-gradient(90deg, #F2622A 0 20px, #C8A24B 20px 40px);
  transition: width 0.1s ease-out;
}

.nav-capsule {
  pointer-events: auto;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 6px 20px;
  background: rgba(245, 240, 232, 0.97);
  border: 2px solid #1A1A1A;
  border-radius: 999px;
  box-shadow: 6px 6px 0 rgba(26, 26, 26, 0.25);
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 4px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  background: #F2622A;
  color: #FFFFFF;
  border: 2px solid #1A1A1A;
  box-shadow: 2px 2px 0 #1A1A1A;
  transform: skewX(-6deg) rotate(-2deg);
}

.brand-lockup {
  display: block;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0B4D3A;
}

.brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #D9701A;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  width: 100%;
}

.nav-link {
  display: inline-block;
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #1A1A1A;
  border: 2px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-link:hover {
  background: #0B4D3A;
  color: #F5F0E8;
  border-color: #1A1A1A;
  box-shadow: 2px 2px 0 #1A1A1A;
}

.nav-link[aria-current="page"],
.nav-link[aria-current="true"] {
  background: #F2622A;
  color: #FFFFFF;
  border-color: #1A1A1A;
  box-shadow: 3px 3px 0 #1A1A1A;
}

.nav-link[aria-current="page"]:hover,
.nav-link[aria-current="true"]:hover {
  background: #D9701A;
  color: #FFFFFF;
}

.nav-cta {
  flex-shrink: 0;
  margin-left: 4px;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1A1A1A;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #1A1A1A;
}

.nav-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #1A1A1A;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  background: #E8E0D2;
  box-shadow: 3px 3px 0 #1A1A1A;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #1A1A1A;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

[data-nav][data-open="true"] .nav-toggle {
  background: #F5F0E8;
}

[data-nav][data-open="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

[data-nav][data-open="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

[data-nav][data-open="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 959px) {
  .site-header {
    padding: 10px 16px;
  }

  .nav-capsule {
    flex-wrap: wrap;
    padding: 10px 14px;
    border-radius: 20px;
    gap: 0;
  }

  .brand {
    order: 0;
  }

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

  .nav-menu {
    order: 2;
    display: none;
    flex: 1 0 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px dashed #C8A24B;
  }

  [data-nav][data-open="true"] .nav-menu {
    display: flex;
  }

  [data-nav][data-open="true"] {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 8px;
    border-color: transparent;
  }

  .nav-cta {
    order: 3;
    display: none;
    width: 100%;
    justify-content: center;
    margin: 12px 0 4px;
    border-radius: 8px;
  }

  [data-nav][data-open="true"] .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .brand-tagline {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 18px;
  }

  .brand-name {
    font-size: 16px;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  background: #0A2A20;
  color: #F5F0E8;
  border-top: 3px solid #1A1A1A;
  padding: 88px clamp(20px, 4vw, 64px) 28px;
  margin-top: clamp(48px, 8vw, 96px);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 9px;
  background: repeating-linear-gradient(
    100deg,
    #F2622A 0 20px,
    #C8A24B 20px 40px
  );
  border-bottom: 3px solid #1A1A1A;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.footer-brand-block {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  background: #F2622A;
  color: #FFFFFF;
  border: 2px solid #1A1A1A;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  transform: skewX(-6deg) rotate(-2deg);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #C8A24B;
}

.footer-contact-block,
.footer-link-block {
  min-width: 0;
}

.footer-heading {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 2px solid #C8A24B;
}

.footer-address {
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-address-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-address-label {
  flex: 0 0 auto;
  width: 32px;
  font-weight: 700;
  color: #F2622A;
}

.footer-address-value {
  color: rgba(245, 240, 232, 0.92);
}

.footer-links {
  display: grid;
  gap: 2px;
}

.footer-links a {
  display: inline-block;
  padding: 6px 0;
  color: #F5F0E8;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #F2622A;
  border-bottom-color: #F2622A;
}

.footer-bottom {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 20px;
  border-top: 1px dashed rgba(245, 240, 232, 0.35);
  display: grid;
  gap: 16px;
}

.footer-statement {
  max-width: 72ch;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.65);
}

.footer-copy {
  font-weight: 700;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links a {
  padding: 2px 0;
  color: rgba(245, 240, 232, 0.8);
  border-bottom: 1px solid transparent;
}

.footer-bottom-links a:hover {
  color: #C8A24B;
  border-bottom-color: #C8A24B;
}

.footer-icp {
  margin: 0;
}

@media (max-width: 959px) {
  .site-footer {
    padding-top: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  border: 2px solid #1A1A1A;
  border-radius: 4px;
  background: transparent;
  color: #1A1A1A;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #1A1A1A;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #1A1A1A;
}

.btn--solid {
  background: #F2622A;
  color: #FFFFFF;
}

.btn--solid:hover {
  background: #D9701A;
  color: #FFFFFF;
}

.btn--ghost {
  background: transparent;
  color: #0B4D3A;
  border-color: #0B4D3A;
}

.btn--ghost:hover {
  background: #0B4D3A;
  color: #F5F0E8;
}

.btn--dark {
  background: #0B4D3A;
  color: #FFFFFF;
}

.btn--dark:hover {
  background: #0A2A20;
  color: #FFFFFF;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: #0A2A20;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.breadcrumb-current {
  font-weight: 700;
  color: #1A1A1A;
}

.breadcrumb-divider {
  color: #C8A24B;
  font-weight: 700;
}

/* ============ COMPONENTS ============ */
.section-block {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.section-block + .section-block {
  border-top: 1px dashed #E8E0D2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F2622A;
}

.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #F2622A;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D9701A;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #F2622A;
}

.page-heading {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: #0B4D3A;
  padding-bottom: 12px;
}

.page-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 12px;
  background: repeating-linear-gradient(
    135deg,
    #F2622A 0 6px,
    #C8A24B 6px 12px
  );
}

.intro {
  font-size: 18px;
  line-height: 1.75;
  max-width: 38em;
  color: #1A1A1A;
}

.prose {
  max-width: 65ch;
  color: #1A1A1A;
}

.prose > * + * {
  margin-top: 1.25em;
}

.prose h2 {
  font-size: 24px;
  margin-top: 2em;
  color: #0B4D3A;
}

.prose h3 {
  font-size: 18px;
  margin-top: 1.5em;
  color: #0B4D3A;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5em;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #0B4D3A;
  border-bottom: 2px solid #F2622A;
  padding-bottom: 2px;
}

.link-more:hover {
  color: #F2622A;
}

.link-more::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease-out;
}

.link-more:hover::after {
  transform: translateX(4px);
}

/* ============ CHAPTER ============ */
.chapter {
  position: relative;
  padding-left: clamp(64px, 8vw, 110px);
  margin-bottom: clamp(48px, 6vw, 96px);
}

.chapter-num {
  position: absolute;
  left: 0;
  top: -10px;
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 900;
  line-height: 1;
  color: #C8A24B;
  text-shadow: 3px 3px 0 #1A1A1A;
  pointer-events: none;
}

.chapter-num::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -18px;
  width: 5px;
  height: calc(100% - 4px);
  background: repeating-linear-gradient(
    to bottom,
    #F2622A 0 6px,
    transparent 6px 12px
  );
}

.chapter-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #1A1A1A;
  line-height: 1.2;
}

.chapter-desc {
  margin-top: 8px;
  max-width: 72ch;
  color: #1A1A1A;
  font-size: 15px;
  line-height: 1.7;
}

/* ============ CARD ============ */
.card {
  display: block;
  background: #F5F0E8;
  border: 2px solid #1A1A1A;
  border-radius: 4px;
  padding: clamp(16px, 2.5vw, 32px);
  box-shadow: var(--shadow-brutal);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
  border-color: #F2622A;
}

.card--white {
  background: #FFFFFF;
}

.card--dark {
  background: #0B4D3A;
  color: #F5F0E8;
  border-color: #1A1A1A;
}

.card--dark:hover {
  border-color: #C8A24B;
}

/* ============ BADGE ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border: 2px solid #1A1A1A;
  border-radius: 2px;
  white-space: nowrap;
}

.badge--orange {
  background: #F2622A;
  color: #FFFFFF;
}

.badge--gold {
  background: #C8A24B;
  color: #1A1A1A;
}

.badge--green {
  background: #0B4D3A;
  color: #F5F0E8;
}

.badge--red {
  background: #8E2D3C;
  color: #FFFFFF;
}

/* ============ STAT / DASHBOARD ============ */
.stat {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #E8E0D2;
  border-left: 6px solid #F2622A;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.25);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: #0B4D3A;
  font-style: normal;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}

/* ============ IMAGE FRAME ============ */
.img-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #E8E0D2;
  border: 2px solid #1A1A1A;
  box-shadow: var(--shadow-brutal);
  --ratio: 56.25%;
}

.img-frame::before {
  content: "";
  display: block;
  padding-top: var(--ratio);
}

.img-frame > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame--16-9 {
  --ratio: 56.25%;
}

.img-frame--4-3 {
  --ratio: 75%;
}

.img-frame--1-1 {
  --ratio: 100%;
}

.img-frame--3-4 {
  --ratio: 133.33%;
}

.img-frame--accent {
  border-color: #F2622A;
  box-shadow: 6px 6px 0 #F2622A;
}

/* ============ DECORATIVE ============ */
.speed-lines {
  height: 8px;
  border-top: 2px solid #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
  background: repeating-linear-gradient(
    100deg,
    #F2622A 0 12px,
    transparent 12px 24px,
    #C8A24B 24px 40px,
    transparent 40px 52px
  );
}

.divider-diagonal {
  height: 20px;
  border-top: 2px solid #1A1A1A;
  border-bottom: 2px solid #1A1A1A;
  background: repeating-linear-gradient(
    -153deg,
    #0B4D3A 0 14px,
    #F2622A 14px 28px,
    #C8A24B 28px 42px
  );
}

/* ============ TABLE ============ */
.table-wrap {
  overflow-x: auto;
  border: 2px solid #1A1A1A;
  box-shadow: var(--shadow-brutal);
  background: #FFFFFF;
}

.table-wrap table {
  min-width: 560px;
  font-size: 14px;
}

.table-wrap th,
.table-wrap td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #E8E0D2;
}

.table-wrap th {
  background: #0B4D3A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
}

.table-wrap tr:last-child td {
  border-bottom: none;
}

/* ============ RESPONSIVE BASE ============ */
@media (max-width: 959px) {
  body {
    font-size: 15px;
  }

  .intro {
    font-size: 16px;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

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