:root {
  --ink: #171b18;
  --forest: #233229;
  --forest-deep: #132019;
  --moss: #6f806b;
  --paper: #f2f0e9;
  --paper-dark: #e4e1d7;
  --ember: #e85b2f;
  --ember-dark: #b83f20;
  --gold: #d5aa58;
  --white: #fffdf8;
  --line: rgba(23, 27, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  height: 76px;
  padding: 0 4.5vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.topbar.is-scrolled,
.topbar.is-open {
  color: var(--ink);
  background: rgba(242, 240, 233, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  width: fit-content;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 34px;
  margin-right: 10px;
}

.brand-mark::before,
.brand-mark span {
  content: "";
  position: absolute;
  display: block;
  background: var(--ember);
  transform: rotate(45deg);
}

.brand-mark::before {
  width: 19px;
  height: 19px;
  border-radius: 2px 12px 2px 12px;
}

.brand-mark span {
  bottom: 3px;
  width: 12px;
  height: 12px;
  border-radius: 2px 8px 2px 8px;
  background: var(--gold);
}

.brand-name {
  font-family: STKaiti, KaiTi, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.brand-tagline {
  margin-left: 13px;
  padding-left: 13px;
  font-size: 11px;
  opacity: 0.66;
  border-left: 1px solid currentColor;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 27px 0 24px;
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .is-current {
  opacity: 1;
}

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

.nav-action {
  justify-self: end;
  padding: 10px 0 8px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.nav-action span,
.primary-cta span,
.light-cta span,
.planning-cta span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.nav-action:hover span,
.light-cta:hover span,
.planning-cta:hover span {
  transform: translateX(5px);
}

.nav-action-placeholder {
  cursor: default;
}

.nav-action-placeholder:hover span {
  transform: none;
}

.nav-mobile-action {
  display: none;
}

.account-menu {
  position: relative;
  justify-self: end;
}

.account-menu > summary {
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.account-menu > summary::-webkit-details-marker {
  display: none;
}

.account-menu[open] > summary span {
  transform: rotate(90deg);
}

.account-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  width: 276px;
  padding: 14px;
  color: var(--ink);
  background: rgba(242, 240, 233, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.account-popover > p {
  margin: 0 0 10px;
  color: rgba(23, 27, 24, 0.5);
  font-size: 10px;
  font-weight: 700;
}

.account-module {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 27, 24, 0.12);
}

.account-module-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  background: var(--forest);
  border-radius: 4px;
}

.account-module-copy {
  display: grid;
  min-width: 0;
}

.account-module-copy strong {
  font-size: 13px;
}

.account-module-copy small {
  margin-top: 3px;
  color: rgba(23, 27, 24, 0.5);
  font-size: 10px;
}

.account-module em {
  color: var(--ember-dark);
  font-size: 10px;
  font-style: normal;
  white-space: nowrap;
}

a.account-module {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a.account-module:hover,
a.account-module:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(153, 63, 38, 0.36);
  transform: translateY(-1px);
}

.nav-mobile-account {
  display: none;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-hero {
  position: relative;
  min-height: 650px;
  height: min(82svh, 820px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(19, 32, 25, 0.98) 0%, rgba(28, 43, 34, 0.91) 51%, rgba(35, 50, 41, 0.64) 100%),
    var(--forest-deep);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(19, 32, 25, 0.74), transparent);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.service-hero-image {
  position: absolute;
  z-index: 1;
  right: 3vw;
  bottom: -8%;
  width: min(48vw, 630px);
  height: 91%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.62;
  filter: saturate(0.72) drop-shadow(0 24px 22px rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

body[data-service="oriented-nco"] .service-hero-image {
  transform: translateX(5%);
}

body[data-service="conscription"] .service-hero-image {
  transform: translateX(-2%);
}

body[data-category-key="study"] .service-hero-image,
body[data-category-key="career"] .service-hero-image {
  right: 8vw;
  bottom: 0;
  width: min(39vw, 490px);
  height: 84%;
  opacity: 0.55;
}

.hero-shell,
.section-shell {
  width: min(1180px, calc(100% - 9vw));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  z-index: 3;
  height: 100%;
  padding-top: 112px;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--white);
}

.breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(610px, 56vw);
  transform: translateY(-43%);
}

.eyebrow,
.section-index,
.module-label {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 24px 0 20px;
  font-family: STKaiti, KaiTi, serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: STKaiti, KaiTi, serif;
  font-size: 22px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.primary-cta,
.light-cta,
.planning-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--ember);
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible,
.light-cta:hover,
.light-cta:focus-visible,
.planning-cta:hover,
.planning-cta:focus-visible {
  background: var(--ember-dark);
}

.primary-cta:hover span {
  transform: translateY(4px);
}

.hero-actions .text-link {
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  border-bottom: 1px solid currentColor;
}

.hero-actions .text-link:hover,
.hero-actions .text-link:focus-visible {
  color: var(--white);
}

.hero-boundary {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  margin: 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.service-intro {
  padding: 118px 0 132px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.5fr) 1.45fr 0.9fr;
  gap: 38px;
  align-items: end;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.section-heading .section-index,
.switcher-heading .section-index {
  color: var(--ember-dark);
}

.section-heading h2,
.planning-heading h2,
.switcher-heading h2,
.assessment-copy h2 {
  margin: 0;
  font-family: STKaiti, KaiTi, serif;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.planning-heading > p:last-child {
  margin: 0;
  color: rgba(23, 27, 24, 0.62);
  font-size: 14px;
}

.service-module {
  display: grid;
  grid-template-columns: 60px minmax(240px, 0.72fr) minmax(420px, 1.28fr);
  gap: 34px;
  margin-top: 52px;
  padding: 42px 0 0;
}

.module-number {
  color: var(--ember-dark);
  font-family: Georgia, serif;
  font-size: 12px;
}

.module-copy .module-label {
  color: var(--moss);
  font-size: 10px;
}

.module-copy h2 {
  margin: 9px 0 18px;
  font-family: STKaiti, KaiTi, serif;
  font-size: 32px;
  line-height: 1.2;
}

.module-copy > p:last-child {
  max-width: 390px;
  margin: 0;
  color: rgba(23, 27, 24, 0.64);
  font-size: 14px;
}

.sync-scope {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sync-scope div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 3px 10px;
  align-content: center;
  min-height: 108px;
  padding: 18px 20px;
  background: var(--paper);
  transition: color 180ms ease, background-color 180ms ease;
}

.sync-scope div:hover {
  color: var(--white);
  background: var(--forest);
}

.sync-scope span {
  grid-row: 1 / 3;
  color: var(--ember-dark);
  font-family: Georgia, serif;
  font-size: 10px;
}

.sync-scope div:hover span {
  color: var(--gold);
}

.sync-scope strong {
  font-family: STKaiti, KaiTi, serif;
  font-size: 18px;
}

.sync-scope small {
  color: rgba(23, 27, 24, 0.48);
  font-size: 10px;
}

.sync-scope div:hover small {
  color: rgba(255, 255, 255, 0.56);
}

.module-status {
  grid-column: 3;
  margin: -14px 0 0;
  color: rgba(23, 27, 24, 0.45);
  font-size: 10px;
}

.module-status span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--ember);
  border-radius: 50%;
}

.assessment-section {
  padding: 120px 0;
  color: var(--white);
  background: var(--forest);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 9vw;
  align-items: center;
}

.assessment-copy .section-index {
  color: var(--gold);
}

.assessment-copy h2 {
  margin: 20px 0 24px;
  font-size: 48px;
}

.assessment-copy > p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.assessment-copy .light-cta {
  margin-top: 34px;
}

.assessment-copy > small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.assessment-fields {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.assessment-fields > p {
  margin: 0;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.assessment-fields ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.assessment-fields li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.assessment-fields li:nth-child(even) {
  border-right: 0;
}

.assessment-fields li span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
}

.assessment-fields li strong {
  font-family: STKaiti, KaiTi, serif;
  font-size: 18px;
}

.planning-section {
  padding: 124px 0 132px;
  background: var(--paper-dark);
}

.planning-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.5fr) 0.72fr 1fr;
  gap: 38px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.planning-heading .section-index {
  color: var(--ember-dark);
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.planning-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  align-content: center;
  min-height: 126px;
  padding: 22px 24px;
  background: var(--paper-dark);
  transition: color 180ms ease, background-color 180ms ease;
}

.planning-grid > div:hover {
  color: var(--white);
  background: var(--forest);
}

.planning-grid span {
  grid-row: 1 / 3;
  color: var(--ember-dark);
  font-family: Georgia, serif;
  font-size: 10px;
}

.planning-grid > div:hover span {
  color: var(--gold);
}

.planning-grid strong {
  font-family: STKaiti, KaiTi, serif;
  font-size: 20px;
}

.planning-grid small {
  color: rgba(23, 27, 24, 0.5);
  font-size: 10px;
}

.planning-grid > div:hover small {
  color: rgba(255, 255, 255, 0.58);
}

.planning-cta {
  margin-top: 32px;
}

.service-switcher {
  padding: 116px 0 126px;
  background: var(--paper);
}

.switcher-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.switcher-heading h2 {
  font-size: 36px;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.service-links a {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 24px 25px;
  background: var(--paper);
  transition: color 180ms ease, background-color 180ms ease;
}

.service-links a:hover,
.service-links a:focus-visible,
.service-links a.is-current {
  color: var(--white);
  background: var(--forest);
}

.service-links a span {
  align-self: start;
  color: var(--ember-dark);
  font-size: 10px;
}

.service-links a:hover span,
.service-links a:focus-visible span,
.service-links a.is-current span {
  color: var(--gold);
}

.service-links a strong {
  align-self: end;
  font-family: STKaiti, KaiTi, serif;
  font-size: 20px;
}

.service-links a i {
  position: absolute;
  right: 22px;
  bottom: 22px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-links a:hover i,
.service-links a:focus-visible i,
.service-links a.is-current i {
  opacity: 1;
  transform: translateX(0);
}

.service-note {
  color: var(--white);
  background: #202a25;
}

.service-note .section-shell {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 34px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-note strong {
  color: var(--gold);
  font-size: 12px;
}

.service-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: end;
  padding: 76px 4.5vw 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  font-family: STKaiti, KaiTi, serif;
  font-size: 34px;
}

footer > p {
  margin: 0;
  color: var(--gold);
  font-family: STKaiti, KaiTi, serif;
  font-size: 22px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .brand-tagline,
  .account-menu {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px 4.5vw 18px;
    color: var(--ink);
    background: rgba(242, 240, 233, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .topbar.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    right: auto;
    bottom: 11px;
    width: 30px;
  }

  .nav-mobile-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    color: rgba(23, 27, 24, 0.54);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
  }

  .nav-mobile-account {
    display: grid;
    gap: 10px;
    padding: 14px 0 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-mobile-account > strong {
    font-size: 14px;
  }

  .nav-mobile-account .account-module {
    margin-bottom: 8px;
  }

  .service-hero-image {
    right: -6vw;
    width: 54vw;
    opacity: 0.48;
  }

  body[data-category-key="study"] .service-hero-image,
  body[data-category-key="career"] .service-hero-image {
    right: 2vw;
    width: 43vw;
  }

  .hero-copy h1 {
    font-size: 76px;
  }

  .section-heading,
  .planning-heading {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .section-heading > p:last-child,
  .planning-heading > p:last-child {
    grid-column: 2;
  }

  .service-module {
    grid-template-columns: 44px 1fr;
  }

  .sync-scope,
  .module-status {
    grid-column: 2;
  }

  .assessment-layout {
    gap: 6vw;
  }

  .planning-grid,
  .service-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 64px;
    padding: 0 22px;
  }

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

  .nav-links {
    top: 64px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-hero {
    min-height: 660px;
    height: 88svh;
  }

  .service-hero-image,
  body[data-category-key="study"] .service-hero-image,
  body[data-category-key="career"] .service-hero-image {
    right: -12vw;
    bottom: -3%;
    width: 72vw;
    height: 58%;
    opacity: 0.3;
  }

  .hero-shell,
  .section-shell {
    width: calc(100% - 44px);
  }

  .hero-shell {
    padding-top: 94px;
  }

  .hero-copy {
    top: 45%;
    width: 100%;
  }

  .hero-copy h1 {
    margin-top: 20px;
    font-size: 58px;
  }

  .hero-summary {
    max-width: 92%;
    font-size: 19px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .hero-boundary {
    bottom: 20px;
  }

  .service-intro,
  .assessment-section,
  .planning-section,
  .service-switcher {
    padding: 82px 0 88px;
  }

  .section-heading,
  .planning-heading {
    display: block;
    padding-bottom: 30px;
  }

  .section-heading h2,
  .planning-heading h2,
  .assessment-copy h2 {
    margin: 16px 0 18px;
    font-size: 36px;
  }

  .service-module {
    display: block;
    margin-top: 38px;
    padding-top: 0;
  }

  .module-number {
    display: none;
  }

  .module-copy {
    margin-bottom: 28px;
  }

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

  .sync-scope div {
    min-height: 88px;
  }

  .module-status {
    margin-top: 14px;
  }

  .assessment-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .assessment-fields ol {
    grid-template-columns: 1fr;
  }

  .assessment-fields li {
    min-height: 78px;
    border-right: 0;
  }

  .planning-grid,
  .service-links {
    grid-template-columns: 1fr;
  }

  .planning-grid > div {
    min-height: 96px;
  }

  .switcher-heading {
    display: block;
    padding-bottom: 28px;
  }

  .switcher-heading h2 {
    margin-top: 14px;
    font-size: 32px;
  }

  .service-links a {
    min-height: 106px;
  }

  .service-note .section-shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 60px 22px 28px;
  }

  footer > p {
    font-size: 19px;
  }

  .footer-meta {
    display: grid;
    gap: 7px;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
