:root {
  --pine: #163f35;
  --pine-deep: #0d2a24;
  --moss: #55766b;
  --amber: #d79b32;
  --amber-pale: #f4e5c7;
  --rust: #994b42;
  --teal: #397783;
  --blue-gray: #647b8a;
  --ink: #18211e;
  --body: #46524e;
  --muted: #6f7a76;
  --line: #d8dfdb;
  --line-dark: #7f918a;
  --mist: #e8f0ec;
  --paper: #f7f8f5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 42, 36, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

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

.site-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 28px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--pine-deep);
  transform: translateY(-160%);
}

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

.utility-bar {
  height: 36px;
  color: #d9e4df;
  background: var(--pine-deep);
  font-size: 12px;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.utility-bar p {
  margin: 0;
}

.utility-bar nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.utility-bar nav a,
.utility-bar nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding-inline: 14px;
  color: inherit;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.utility-bar nav button {
  width: 42px;
  padding: 0;
}

.utility-bar nav svg {
  width: 16px;
  height: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(13, 42, 36, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  min-width: 180px;
  color: var(--pine);
  line-height: 1.15;
}

.site-brand span {
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  font-weight: 700;
}

.site-brand small {
  margin-top: 5px;
  color: var(--moss);
  font-family: "Instrument Sans", "Noto Sans KR", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: auto;
}

.desktop-nav__group {
  position: relative;
  display: flex;
  align-items: center;
  height: 82px;
  border-bottom: 3px solid transparent;
}

.desktop-nav__group.is-current {
  border-bottom-color: var(--amber);
}

.desktop-nav__group > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 44px;
  padding: 0;
  background: transparent;
}

.nav-chevron svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}

.desktop-nav__group:hover .nav-dropdown,
.desktop-nav__group:focus-within .nav-dropdown,
.desktop-nav__group.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.desktop-nav__group.is-open .nav-chevron svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 250px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown p {
  margin: 0 0 10px;
  color: var(--moss);
  font-family: "Instrument Sans", "Noto Sans KR", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 8px 4px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--rust);
}

.nav-dropdown .inline-icon {
  width: 16px;
  height: 16px;
}

.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  min-height: 48px;
  margin-left: 18px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--pine);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.header-quote svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: 10px;
  padding: 0;
  color: var(--pine);
  background: var(--mist);
}

.mobile-menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2100;
  width: min(420px, calc(100vw - 34px));
  height: 100dvh;
  padding: 0 24px 28px;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav__top button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--mist);
}

.mobile-nav__top button svg {
  width: 22px;
  height: 22px;
}

.mobile-nav nav {
  padding-top: 18px;
}

.mobile-nav__group {
  border-bottom: 1px solid var(--line);
}

.mobile-nav__group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.mobile-nav__group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__group summary svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.mobile-nav__group[open] summary svg {
  transform: rotate(180deg);
}

.mobile-nav__group > div {
  display: grid;
  gap: 2px;
  padding: 0 0 16px 14px;
}

.mobile-nav__group > div a {
  display: flex;
  align-items: center;
  min-height: 42px;
  color: var(--body);
  font-size: 14px;
}

.mobile-nav__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  margin-top: 24px;
  color: var(--white);
  background: var(--pine);
  border-radius: 4px;
  font-weight: 700;
}

.mobile-nav__quote svg {
  width: 19px;
  height: 19px;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 42, 36, 0.58);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-nav-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--moss);
  font-family: "Instrument Sans", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
  line-height: 1.32;
}

.section-heading > p:not(.section-kicker),
.section-heading--split > p {
  margin: 22px 0 0;
  color: var(--body);
  line-height: 1.8;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading--split > p,
.section-heading--split > .text-link {
  width: min(440px, 44%);
  margin-bottom: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--pine);
  font-weight: 700;
}

.text-link .inline-icon {
  width: 18px;
  height: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.button .button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button--accent {
  color: var(--pine-deep);
  background: var(--amber);
}

.button--dark {
  color: var(--white);
  background: var(--pine);
}

.button--light {
  color: var(--pine);
  background: var(--white);
}

.button--outline {
  color: var(--pine);
  background: transparent;
  border-color: var(--pine);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.58);
}

.home-hero {
  position: relative;
  height: clamp(560px, calc(100svh - 140px), 680px);
  min-height: 560px;
  color: var(--white);
  background: var(--pine-deep);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transition: opacity 500ms ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(9, 30, 25, 0.74);
}

.hero-slide--city {
  background-image: url("/assets/seoul.jpg");
}

.hero-slide--document {
  background-image: url("/assets/document.jpg");
}

.hero-slide--office {
  background-image: url("/assets/office.jpg");
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 92px;
}

.hero-problem {
  max-width: 720px;
  margin: 0 0 24px;
  color: #d9e7e1;
  font-size: 17px;
  font-weight: 600;
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 940px;
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 64px;
  line-height: 1.2;
}

.hero-slide h1 span,
.hero-slide h2 span {
  color: #f0c36c;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 34px;
  color: #e1e9e6;
  font-size: 18px;
  line-height: 1.8;
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-dots button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
}

.hero-dots button::before {
  width: 28px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.is-active::before {
  background: var(--amber);
}

.hero-arrows {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-arrows button svg {
  width: 19px;
  height: 19px;
}

.hero-arrows span {
  min-width: 58px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  text-align: center;
}

.hero-arrows strong {
  color: var(--white);
  font-size: 16px;
}

.notice-strip {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.notice-strip__inner {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto 48px;
  align-items: center;
  min-height: 66px;
}

.notice-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rust);
  font-size: 13px;
}

.notice-strip strong svg {
  width: 17px;
  height: 17px;
}

.notice-strip > div > a:not(.notice-strip__more) {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-strip time {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
}

.notice-strip__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  justify-self: end;
}

.notice-strip__more svg {
  width: 18px;
  height: 18px;
}

.quick-paths,
.service-overview {
  padding: 112px 0;
  background: var(--paper);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.service-card {
  position: relative;
  min-height: 332px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top-width: 4px;
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card--grant {
  border-top-color: var(--amber);
}

.service-card--rnd {
  border-top-color: var(--teal);
}

.service-card--local {
  border-top-color: var(--rust);
}

.service-card--audit {
  border-top-color: var(--blue-gray);
}

.service-card__number {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.service-card__icon {
  width: 32px;
  height: 32px;
  margin: 24px 0 28px;
  color: var(--pine);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.service-card p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
}

.service-card .text-link {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  justify-content: space-between;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.proof-band {
  color: var(--white);
  background: var(--pine);
}

.proof-band__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.2fr;
  align-items: center;
  min-height: 150px;
}

.proof-band__inner > div {
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-band strong {
  display: block;
  color: #f1c56e;
  font-family: "Instrument Sans", "Noto Sans KR", sans-serif;
  font-size: 34px;
  line-height: 1.1;
}

.proof-band span {
  display: block;
  margin-top: 7px;
  color: #d9e4df;
  font-size: 13px;
}

.proof-band p {
  margin: 0;
  padding-left: 34px;
  color: #b9ccc4;
  font-size: 12px;
  line-height: 1.7;
}

.center-overview {
  padding: 120px 0;
  background: var(--white);
}

.center-overview__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.center-overview .section-heading {
  align-self: start;
  position: sticky;
  top: 126px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: var(--body);
}

.resource-hub {
  padding: 112px 0;
  background: var(--mist);
}

.resource-hub__head {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: end;
  gap: 70px;
}

.resource-hub__head h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
}

.resource-hub__head > div > p:last-child {
  margin: 18px 0 0;
  color: var(--body);
}

.home-search {
  display: grid;
  grid-template-columns: 1fr 82px;
  height: 58px;
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.home-search label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 16px;
}

.home-search label svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.home-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

.home-search button {
  color: var(--white);
  background: var(--pine);
  font-weight: 700;
}

.resource-feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  margin-top: 48px;
}

.resource-feature--main {
  min-height: 380px;
  padding: 42px;
  color: var(--white);
  background: var(--pine);
  border-radius: 6px;
}

.resource-feature--main > span {
  display: block;
  color: #f1c56e;
  font-size: 12px;
  font-weight: 700;
}

.resource-feature--main h3 {
  margin: 44px 0 20px;
  font-family: "Noto Serif KR", serif;
  font-size: 31px;
  line-height: 1.45;
}

.resource-feature--main p {
  max-width: 420px;
  margin: 0;
  color: #d5e2dc;
}

.resource-feature--main > strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  font-size: 14px;
}

.resource-feature--main .inline-icon {
  width: 18px;
  height: 18px;
}

.resource-latest {
  background: var(--white);
  border-top: 2px solid var(--pine);
}

.resource-latest a {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 18px;
  min-height: 95px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.resource-latest a > span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}

.resource-latest a > strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-latest time {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
}

.resource-latest svg {
  width: 17px;
  height: 17px;
  color: var(--moss);
}

.resource-hub__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.resource-hub__foot .text-link {
  margin: 0;
}

.latest-grid-section {
  padding: 112px 0;
  background: var(--white);
}

.latest-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 2px solid var(--pine);
  border-bottom: 1px solid var(--line);
}

.latest-columns article {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.latest-columns article:last-child {
  border-right: 0;
}

.latest-columns__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 8px;
}

.latest-columns__head h3 {
  margin: 0;
  font-size: 18px;
}

.latest-columns__head > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.latest-columns__head svg {
  width: 15px;
  height: 15px;
}

.latest-columns article > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.latest-columns article > a strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-columns article > a time {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
}

.corporate-band,
.dual-role {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--pine-deep);
}

.corporate-band__image,
.dual-role__image {
  min-height: 600px;
  background-image: url("/assets/office.jpg");
  background-position: center;
  background-size: cover;
}

.dual-role__image {
  background-image: url("/assets/seoul.jpg");
}

.corporate-band__copy,
.dual-role__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 70px 8vw 70px 70px;
  color: var(--white);
}

.corporate-band__copy .section-kicker,
.dual-role__copy .section-kicker {
  color: #f0c36c;
}

.corporate-band__copy h2,
.dual-role__copy h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
  line-height: 1.4;
}

.corporate-band__copy > p:not(.section-kicker),
.dual-role__copy > p:not(.section-kicker) {
  margin: 24px 0 30px;
  color: #cbdad4;
}

.corporate-band__copy ul {
  display: grid;
  gap: 18px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.corporate-band__copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.corporate-band__copy li > svg {
  width: 24px;
  height: 24px;
  color: #f0c36c;
}

.corporate-band__copy li strong,
.corporate-band__copy li small {
  display: block;
}

.corporate-band__copy li small {
  margin-top: 3px;
  color: #b9cbc4;
}

.corporate-band__copy .button {
  align-self: flex-start;
  color: var(--pine-deep);
  background: var(--white);
}

.activity-preview,
.activity-board {
  padding: 112px 0;
  background: var(--paper);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.activity-grid > a {
  display: block;
  min-width: 0;
  padding-bottom: 24px;
  background: var(--white);
  border-bottom: 3px solid var(--pine);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.activity-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.activity-grid a > span,
.activity-grid a > h3,
.activity-grid a > p {
  display: block;
  margin-right: 22px;
  margin-left: 22px;
}

.activity-grid a > span {
  margin-top: 21px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}

.activity-grid h3 {
  margin-top: 9px;
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.5;
}

.activity-grid p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--body);
  font-size: 13px;
}

.activity-grid--board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.faq-preview {
  padding: 112px 0;
  background: var(--white);
}

.faq-preview__grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 90px;
}

.faq-list {
  border-top: 2px solid var(--pine);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 78px;
  padding: 18px 6px;
  background: transparent;
  text-align: left;
}

.faq-item > button > span {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
}

.faq-item > button em {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--pine);
}

.faq-item__answer {
  padding: 0 52px 26px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--body);
}

.faq-item__answer small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  padding: 82px 0;
  color: var(--white);
  background: var(--pine);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-band .section-kicker {
  color: #f0c36c;
}

.cta-band h2 {
  max-width: 750px;
}

.cta-band p:not(.section-kicker) {
  max-width: 700px;
  margin: 16px 0 0;
  color: #c9d9d3;
}

.cta-band .button-row {
  flex: 0 0 auto;
}

.site-footer {
  padding-top: 76px;
  color: #dce7e2;
  background: var(--pine-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 62px;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  font-family: "Noto Serif KR", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-brand span {
  margin-top: 7px;
  color: #9eb6ad;
  font-family: "Instrument Sans", "Noto Sans KR", sans-serif;
  font-size: 11px;
}

.footer-intro > p {
  max-width: 330px;
  margin: 22px 0;
  color: #aabeb6;
  font-size: 14px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0c36c;
  font-weight: 700;
}

.footer-cta .inline-icon {
  width: 17px;
  height: 17px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 14px;
}

.footer-column a {
  color: #aabeb6;
  font-size: 13px;
}

.footer-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-company p {
  margin: 0;
  color: #9eb3aa;
  font-size: 12px;
}

.footer-company strong {
  color: var(--white);
}

.footer-company nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-company nav a {
  color: #9eb3aa;
  font-size: 11px;
}

.demo-disclosure {
  margin: 0;
  padding: 10px 24px;
  color: #59635f;
  background: #edf0ee;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 112px;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--pine-deep);
  background: var(--amber);
  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(13, 42, 36, 0.2);
  font-size: 13px;
  font-weight: 700;
}

.floating-quote svg {
  width: 18px;
  height: 18px;
}

.popup-open .floating-quote {
  display: none;
}

.notice-popup {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1800;
  width: min(410px, calc(100vw - 40px));
  padding: 28px;
  color: var(--white);
  background: var(--pine-deep);
  border-top: 4px solid var(--amber);
  box-shadow: var(--shadow);
}

.notice-popup__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.notice-popup__head p {
  margin: 0 0 6px;
  color: #f0c36c;
  font-size: 12px;
  font-weight: 700;
}

.notice-popup__head h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
}

.notice-popup__head button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}

.notice-popup__head button svg {
  width: 20px;
  height: 20px;
}

.notice-popup > p {
  margin: 22px 0;
  color: #c7d8d1;
  font-size: 14px;
}

.notice-popup > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0c36c;
  font-weight: 700;
}

.notice-popup > a svg {
  width: 17px;
  height: 17px;
}

.notice-popup > label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #aabfb6;
  font-size: 12px;
  cursor: pointer;
}

.search-dialog {
  width: min(700px, calc(100vw - 40px));
  padding: 32px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-top: 5px solid var(--amber);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(13, 42, 36, 0.72);
}

.search-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.search-dialog__head p {
  margin: 0 0 6px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}

.search-dialog__head h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 28px;
}

.search-dialog__head button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--mist);
}

.search-dialog__head svg {
  width: 21px;
  height: 21px;
}

.global-search {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  margin-top: 28px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
}

.global-search svg {
  width: 20px;
  height: 20px;
}

.global-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.search-shortcuts {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.search-shortcuts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.search-shortcuts a[hidden] {
  display: none;
}

.search-shortcuts svg {
  width: 17px;
  height: 17px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 54px;
  font-size: 12px;
}

.breadcrumbs > *:not(:first-child)::before {
  margin-right: 9px;
  color: currentColor;
  content: "/";
}

.breadcrumbs svg {
  width: 16px;
  height: 16px;
}

.subhero {
  padding: 68px 0 84px;
  background: var(--mist);
  overflow: hidden;
}

.subhero .site-container {
  position: relative;
  z-index: 1;
}

.subhero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 54px;
  line-height: 1.25;
}

.subhero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.8;
}

.subhero--image {
  position: relative;
  color: var(--white);
  background-image: var(--subhero-image);
  background-position: center;
  background-size: cover;
}

.subhero--image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(10, 34, 28, 0.78);
}

.subhero--image .section-kicker {
  color: #f0c36c;
}

.subhero--image .subhero__lead,
.subhero--image .breadcrumbs {
  color: #d5e1dc;
}

.about-statement,
.service-intro,
.center-mission {
  padding: 112px 0;
}

.about-statement__grid,
.service-intro__grid,
.center-mission__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-statement h2,
.service-intro h2,
.center-mission h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
  line-height: 1.4;
}

.large-copy {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.7;
}

.about-statement__grid > div:last-child > p:last-child,
.center-mission__grid > div:last-child > p:last-child {
  margin: 24px 0 0;
  color: var(--body);
}

.principles,
.center-menu,
.comparison-section {
  padding: 112px 0;
  background: var(--paper);
}

.principle-grid,
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 2px solid var(--pine);
}

.principle-grid article,
.concern-grid article {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article:first-child,
.concern-grid article:first-child {
  border-left: 1px solid var(--line);
}

.principle-grid span,
.concern-grid span {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.principle-grid h3,
.concern-grid h3 {
  margin: 56px 0 14px;
  font-size: 21px;
}

.principle-grid p,
.concern-grid p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
}

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

.dual-role__copy {
  max-width: 680px;
}

.role-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.role-row > span,
.scope-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  line-height: 0;
  flex: 0 0 auto;
}

.role-row > span {
  color: var(--pine-deep);
  background: var(--amber);
}

.role-row > span > svg,
.scope-list article > span > svg {
  display: block;
  width: 21px;
  height: 21px;
  margin: 0;
}

.role-row h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.role-row p {
  margin: 0;
  color: #b9cbc4;
  font-size: 14px;
}

.dual-role__copy .button-row {
  margin-top: 28px;
}

.dual-role__copy .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.company-profile {
  padding: 112px 0;
}

.company-profile__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.company-profile dl {
  margin: 0;
  border-top: 2px solid var(--pine);
}

.company-profile dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.company-profile dt,
.company-profile dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 18px;
}

.company-profile dt {
  background: var(--paper);
  font-weight: 700;
}

.company-profile dd {
  color: var(--body);
}

.comparison-table {
  margin-top: 46px;
  border-top: 2px solid var(--pine);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.comparison-table [role="row"] > * {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.comparison-table [role="row"] > *:last-child {
  border-right: 0;
}

.comparison-table__head {
  color: var(--white);
  background: var(--pine);
  font-weight: 700;
}

.comparison-table [role="row"]:not(.comparison-table__head) strong {
  background: var(--paper);
}

.comparison-table [role="row"]:not(.comparison-table__head) span {
  color: var(--body);
}

.process-preview,
.quote-next {
  padding: 112px 0;
}

.horizontal-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--pine);
}

.horizontal-process li {
  position: relative;
  min-height: 190px;
  padding: 26px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.horizontal-process li:first-child {
  border-left: 1px solid var(--line);
}

.horizontal-process span {
  display: block;
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.horizontal-process strong {
  display: block;
  margin-top: 46px;
  font-size: 18px;
}

.horizontal-process p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.source-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  background: var(--mist);
  border-left: 3px solid var(--moss);
}

.source-note svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--pine);
}

.source-note p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
}

.concern-band {
  padding: 112px 0;
  background: var(--paper);
}

.concern-band--grant .concern-grid {
  border-top-color: var(--amber);
}

.concern-band--rnd .concern-grid {
  border-top-color: var(--teal);
}

.concern-band--local .concern-grid {
  border-top-color: var(--rust);
}

.concern-band--audit .concern-grid {
  border-top-color: var(--blue-gray);
}

.scope-section {
  padding: 112px 0;
}

.scope-section__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.scope-list {
  border-top: 2px solid var(--pine);
}

.scope-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.scope-list article > span {
  color: var(--pine);
  background: var(--mist);
}

.scope-list small {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.scope-list h3 {
  margin: 2px 0 7px;
  font-size: 20px;
}

.scope-list p {
  margin: 0;
  color: var(--body);
}

.document-section {
  padding: 112px 0;
  background: var(--mist);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.document-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 600;
}

.document-grid svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--rust);
}

.official-links {
  color: var(--white);
  background: var(--pine-deep);
}

.official-links__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 260px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.official-links .section-kicker {
  color: #f0c36c;
}

.official-links h2 {
  max-width: 520px;
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 34px;
  line-height: 1.45;
}

.official-links__inner > div:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.official-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  color: #dce6e2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.official-links a svg {
  width: 18px;
  height: 18px;
}

.center-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.center-menu__grid > a {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.center-menu__grid > a > svg:first-child {
  width: 30px;
  height: 30px;
  color: var(--pine);
}

.center-menu__grid small {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.center-menu__grid h3 {
  margin: 20px 0 8px;
  font-size: 21px;
}

.center-menu__grid p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
}

.center-menu__grid .corner-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 20px;
  height: 20px;
}

.operation-principles {
  padding: 112px 0;
}

.operation-principles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.operation-principles__image {
  min-height: 540px;
  background-image: url("/assets/document.jpg");
  background-position: center;
  background-size: cover;
}

.operation-principles h2 {
  margin: 0 0 34px;
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
}

.operation-principles ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--pine);
}

.operation-principles li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.operation-principles li > svg {
  width: 21px;
  height: 21px;
  color: var(--rust);
}

.operation-principles strong,
.operation-principles small {
  display: block;
}

.operation-principles small {
  margin-top: 5px;
  color: var(--body);
}

.timeline-section {
  padding: 100px 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--pine);
}

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 240px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.timeline > li > span {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.timeline h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 34px;
}

.timeline p:not(.section-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--body);
}

.timeline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--pine);
  font-weight: 700;
}

.timeline a svg {
  width: 17px;
  height: 17px;
}

.process-note {
  padding: 80px 0;
  background: var(--mist);
}

.process-note__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.process-note__grid > div {
  padding: 34px;
  background: var(--white);
  border-left: 4px solid var(--amber);
}

.process-note__grid > div:last-child {
  border-left-color: var(--teal);
}

.process-note svg {
  width: 28px;
  height: 28px;
  color: var(--pine);
}

.process-note h2 {
  margin: 26px 0 10px;
  font-size: 21px;
}

.process-note p {
  margin: 0;
  color: var(--body);
}

.checklist-section {
  padding: 100px 0;
}

.checklist-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.checklist-progress {
  position: sticky;
  top: 126px;
  padding: 30px;
  background: var(--mist);
  border-top: 4px solid var(--pine);
}

.checklist-progress > strong {
  display: block;
  margin: 18px 0;
  font-family: "Instrument Sans", "Noto Sans KR", sans-serif;
  font-size: 42px;
}

.checklist-progress > div {
  height: 8px;
  background: #cbd8d2;
  overflow: hidden;
}

.checklist-progress > div span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--amber);
  transition: width 180ms ease;
}

.checklist-progress > p:not(.section-kicker) {
  margin: 16px 0 24px;
  color: var(--body);
  font-size: 12px;
}

.checklist-progress .button {
  width: 100%;
}

.checklist-groups {
  display: grid;
  gap: 46px;
}

.checklist-groups section {
  border-top: 2px solid var(--pine);
}

.checklist-groups section > div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.checklist-groups section > div > span {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.checklist-groups h2 {
  margin: 0;
  font-size: 22px;
}

.checklist-groups label {
  display: block;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.checklist-groups label > input {
  position: absolute;
  opacity: 0;
}

.checklist-groups label > span {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  color: var(--body);
  font-weight: 600;
}

.checklist-groups label svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: transparent;
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.checklist-groups label > input:checked + span {
  color: var(--pine);
}

.checklist-groups label > input:checked + span svg {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.checklist-groups label > input:focus-visible + span {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.privacy-callout {
  padding: 62px 0;
  color: var(--white);
  background: var(--pine-deep);
}

.privacy-callout__inner,
.faq-source__inner {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: start;
}

.privacy-callout__inner > svg,
.faq-source__inner > svg {
  width: 34px;
  height: 34px;
  color: #f0c36c;
}

.privacy-callout h2 {
  margin: 0;
  font-size: 22px;
}

.privacy-callout p {
  margin: 8px 0 0;
  color: #c4d5ce;
}

.board-intro {
  padding: 90px 0 0;
  background: var(--paper);
}

.resource-board,
.notice-board,
.qna-section,
.faq-page {
  padding: 90px 0 110px;
}

.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-chips button,
.faq-tabs button {
  min-height: 44px;
  padding: 9px 17px;
  color: var(--body);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}

.filter-chips button.is-active,
.faq-tabs button.is-active {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.board-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 290px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
}

.board-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.board-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.board-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-top: 2px solid var(--pine);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.board-summary p {
  margin: 0;
}

.board-summary strong {
  color: var(--rust);
}

.board-summary span {
  color: var(--muted);
}

.resource-row {
  display: grid;
  grid-template-columns: 50px 128px minmax(0, 1fr) 108px 28px;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
}

.resource-row:hover,
.resource-row:focus-visible {
  background: var(--paper);
}

.resource-row__number {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
}

.resource-row__type {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}

.resource-row__copy {
  min-width: 0;
}

.resource-row__copy strong,
.resource-row__copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-row__copy strong {
  font-size: 16px;
}

.resource-row__copy small {
  margin-top: 7px;
  color: var(--body);
  font-size: 12px;
}

.resource-row__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
}

.resource-row__meta svg,
.resource-row__arrow {
  width: 17px;
  height: 17px;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
}

.empty-state svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  color: var(--moss);
}

.empty-state h2 {
  margin: 0;
  font-size: 20px;
}

.empty-state p {
  margin: 8px 0 0;
  color: var(--body);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}

.pagination a,
.pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
}

.pagination a.is-current {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.pagination button:disabled {
  color: #b8c0bd;
  cursor: not-allowed;
}

.pagination svg {
  width: 17px;
  height: 17px;
}

.board-guide {
  padding: 72px 0;
  background: var(--mist);
}

.board-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.board-guide__grid > div {
  padding: 26px;
  background: var(--white);
  border-radius: 5px;
}

.board-guide svg {
  width: 27px;
  height: 27px;
  color: var(--rust);
}

.board-guide h2 {
  margin: 24px 0 8px;
  font-size: 19px;
}

.board-guide p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
}

.board-detail__head {
  padding-top: 64px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
}

.board-detail__head .breadcrumbs {
  margin-bottom: 58px;
}

.board-detail__category {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}

.board-detail__head h1 {
  max-width: 900px;
  margin: 18px 0 26px;
  font-family: "Noto Serif KR", serif;
  font-size: 48px;
  line-height: 1.35;
}

.board-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.board-detail__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.board-detail__meta svg {
  width: 15px;
  height: 15px;
}

.board-detail__body {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 90px;
}

.board-detail__body--single {
  grid-template-columns: minmax(0, 800px);
  justify-content: center;
}

.board-detail__body > aside {
  position: sticky;
  top: 126px;
  align-self: start;
  padding: 24px;
  background: var(--paper);
  border-top: 3px solid var(--pine);
}

.board-detail__body > aside p {
  margin: 0 0 15px;
  font-weight: 700;
}

.board-detail__body > aside a {
  display: block;
  padding: 9px 0;
  color: var(--body);
  font-size: 13px;
}

.article-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--mist);
  border-left: 3px solid var(--moss);
}

.article-notice svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--pine);
}

.article-notice p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
}

.article-lead {
  margin: 40px 0;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
  line-height: 1.8;
}

.article-content h2 {
  margin: 56px 0 14px;
  font-size: 24px;
  scroll-margin-top: 120px;
}

.article-content > p:not(.article-lead) {
  color: var(--body);
}

.article-content ul {
  padding-left: 22px;
  color: var(--body);
}

.article-content li + li {
  margin-top: 9px;
}

.attachment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.attachment-box > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.attachment-box > div > svg {
  width: 22px;
  height: 22px;
  color: var(--rust);
}

.attachment-box strong,
.attachment-box small {
  display: block;
}

.attachment-box small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.attachment-box > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--pine);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}

.attachment-box > a svg {
  width: 16px;
  height: 16px;
}

.official-source {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.official-source p {
  margin: 26px 0 8px;
  font-weight: 700;
}

.official-source a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 13px;
}

.official-source a svg {
  width: 16px;
  height: 16px;
}

.board-detail__nav {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
  min-height: 94px;
  margin-bottom: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.board-detail__nav > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
}

.board-detail__nav > a:last-child {
  justify-content: flex-end;
  border-left: 1px solid var(--line);
  text-align: right;
}

.board-detail__nav svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.board-detail__nav span,
.board-detail__nav small {
  display: block;
}

.board-detail__nav small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.qna-list {
  border-top: 2px solid var(--pine);
}

.qna-item {
  border-bottom: 1px solid var(--line);
}

.qna-item > button {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 18px 8px;
  background: transparent;
  text-align: left;
}

.qna-item__tag {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
}

.qna-item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}

.qna-item__question em {
  color: var(--pine);
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
}

.qna-item__icon {
  width: 20px;
  height: 20px;
}

.qna-item__answer {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 26px 36px 28px 8px;
  background: var(--paper);
}

.qna-item__answer > span {
  color: var(--rust);
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.qna-item__answer p {
  margin: 0;
  color: var(--body);
}

.qna-item__answer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pine);
  font-size: 13px;
  font-weight: 700;
}

.qna-item__answer a svg {
  width: 16px;
  height: 16px;
}

.notice-list {
  border-top: 2px solid var(--pine);
}

.notice-list > a {
  display: grid;
  grid-template-columns: 44px 64px minmax(0, 1fr) 24px 96px 24px;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
}

.notice-list > a > span:first-child {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
}

.notice-list__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: var(--body);
  background: var(--paper);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
}

.notice-list__badge.is-important {
  color: var(--white);
  background: var(--rust);
}

.notice-list > a > span:nth-child(3) {
  min-width: 0;
}

.notice-list small,
.notice-list strong {
  display: block;
}

.notice-list small {
  color: var(--moss);
  font-size: 11px;
}

.notice-list strong {
  overflow: hidden;
  margin-top: 4px;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-list > a > svg {
  width: 17px;
  height: 17px;
  color: var(--moss);
}

.notice-list time {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  text-align: right;
}

.notice-list .notice-list__arrow {
  color: var(--ink);
}

.faq-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 40px;
}

.faq-tabs button {
  min-width: 180px;
  min-height: 50px;
}

.faq-source {
  padding: 52px 0;
  background: var(--mist);
}

.faq-source__inner {
  grid-template-columns: 48px 1fr auto;
  align-items: center;
}

.faq-source__inner > svg {
  color: var(--pine);
}

.faq-source h2 {
  margin: 0;
  font-size: 20px;
}

.faq-source p {
  margin: 5px 0 0;
  color: var(--body);
  font-size: 13px;
}

.faq-source .text-link {
  margin: 0;
}

.quote-page {
  padding: 90px 0 110px;
  background: var(--paper);
}

.quote-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 126px;
  padding: 30px;
  color: var(--white);
  background: var(--pine);
}

.quote-aside .section-kicker {
  color: #f0c36c;
}

.quote-aside h2 {
  margin: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 26px;
  line-height: 1.55;
}

.quote-aside ul {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 26px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5e2dd;
  font-size: 13px;
}

.quote-aside li svg {
  width: 17px;
  height: 17px;
  color: #f0c36c;
}

.quote-aside__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-aside__note svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #f0c36c;
}

.quote-aside__note p {
  margin: 0;
  color: #b9cbc4;
  font-size: 12px;
}

.quote-form,
.contact-form {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
}

.form-section + .form-section {
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.form-section__title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.form-section__title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--pine);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.form-section__title h2 {
  margin: 0;
  font-size: 21px;
}

.form-section__title p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-grid label {
  min-width: 0;
}

.form-grid label > span,
.upload-field > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.form-grid label > span em,
.consent em {
  color: var(--rust);
  font-size: 11px;
  font-style: normal;
}

.form-grid input:not([type="file"]),
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  outline: 0;
}

.form-grid textarea {
  min-height: 148px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(22, 63, 53, 0.1);
}

.form-grid input.is-invalid,
.form-grid select.is-invalid,
.form-grid textarea.is-invalid {
  border-color: var(--rust);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--rust);
  font-size: 11px;
}

.is-invalid + .field-error {
  display: block;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.upload-field {
  position: relative;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-field__box {
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
  min-height: 82px;
  margin: 0 !important;
  padding: 15px;
  color: var(--body);
  background: var(--paper);
  border: 1px dashed var(--line-dark);
  cursor: pointer;
}

.upload-field__box svg {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  color: var(--pine);
}

.upload-field__box strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-field__box small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 30px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
}

.consent > input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--pine);
}

.consent > span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 2px 8px;
}

.consent > span > svg {
  grid-row: 1 / 3;
  width: 18px;
  height: 18px;
  color: var(--pine);
}

.consent strong,
.consent small {
  display: block;
}

.consent strong {
  font-size: 13px;
}

.consent small {
  color: var(--muted);
  font-size: 11px;
}

.consent.is-invalid {
  border-color: var(--rust);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.form-submit-row p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-submit-row p svg {
  width: 17px;
  height: 17px;
}

.form-success {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 22px;
  color: var(--white);
  background: var(--pine);
}

.form-success > svg {
  width: 28px;
  height: 28px;
  color: #f0c36c;
}

.form-success h2 {
  margin: 0;
  font-size: 18px;
}

.form-success p {
  margin: 4px 0 0;
  color: #c7d8d1;
  font-size: 12px;
}

.form-success button {
  min-height: 44px;
  padding: 9px 14px;
  color: var(--pine);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.location-section {
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.location-visual {
  position: relative;
  min-height: 500px;
  background: var(--mist);
  overflow: hidden;
}

.location-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.location-visual > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 82px;
  padding: 18px;
  color: var(--white);
  background: rgba(13, 42, 36, 0.92);
}

.location-visual > div > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: #f0c36c;
}

.location-visual small,
.location-visual strong {
  display: block;
}

.location-visual small {
  color: #a9beb5;
  font-family: "Instrument Sans", sans-serif;
  font-size: 10px;
}

.location-info h2 {
  margin: 0 0 34px;
  font-family: "Noto Serif KR", serif;
  font-size: 38px;
}

.location-info dl {
  margin: 0;
  border-top: 2px solid var(--pine);
}

.location-info dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.location-info dt,
.location-info dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 4px;
}

.location-info dt {
  font-weight: 700;
}

.location-info dd {
  color: var(--body);
}

.location-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form-section {
  padding: 100px 0;
  background: var(--paper);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-form .button {
  margin-top: 26px;
}

.policy-page {
  padding: 90px 0 110px;
}

.policy-page > .site-container {
  max-width: 900px;
}

.policy-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 50px;
  padding: 22px;
  background: var(--mist);
  border-left: 3px solid var(--moss);
}

.policy-alert svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--pine);
}

.policy-alert p {
  margin: 0;
  color: var(--body);
}

.policy-page .site-container > section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.policy-page h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.policy-page section p {
  margin: 0;
  color: var(--body);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .header-quote {
    margin-left: auto;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-hub__head {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .site-container {
    padding-inline: 24px;
  }

  .section-heading h2,
  .cta-band h2,
  .resource-hub__head h2,
  .about-statement h2,
  .service-intro h2,
  .center-mission h2,
  .operation-principles h2 {
    font-size: 36px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 50px;
  }

  .proof-band__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-band__inner > p {
    grid-column: 1 / -1;
    padding: 13px 28px 20px;
  }

  .center-overview__grid,
  .faq-preview__grid,
  .about-statement__grid,
  .service-intro__grid,
  .center-mission__grid,
  .scope-section__grid,
  .company-profile__grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .center-overview .section-heading,
  .checklist-progress,
  .quote-aside {
    position: static;
  }

  .resource-hub__head,
  .resource-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-search {
    width: 100%;
  }

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

  .latest-columns article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .corporate-band,
  .dual-role {
    grid-template-columns: 1fr;
  }

  .corporate-band__image,
  .dual-role__image {
    min-height: 460px;
  }

  .corporate-band__copy,
  .dual-role__copy {
    max-width: none;
    padding: 70px 8vw;
  }

  .activity-grid,
  .activity-grid--board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
  }

  .operation-principles__grid,
  .official-links__inner,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .operation-principles__image {
    min-height: 420px;
  }

  .checklist-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checklist-progress {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 22px;
    align-items: center;
  }

  .checklist-progress .section-kicker,
  .checklist-progress > div,
  .checklist-progress > p {
    grid-column: 1 / 2;
  }

  .checklist-progress > strong,
  .checklist-progress .button {
    grid-column: 2 / 3;
  }

  .checklist-progress > strong {
    grid-row: 1 / 3;
    margin: 0;
  }

  .checklist-progress .button {
    grid-row: 3 / 5;
  }

  .board-detail__body {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 40px;
  }

  .quote-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }

  .quote-aside .section-kicker,
  .quote-aside h2 {
    grid-column: 1 / 2;
  }

  .quote-aside ul,
  .quote-aside__note {
    grid-column: 2 / 3;
  }

  .quote-aside ul {
    grid-row: 1 / 4;
    margin: 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-container {
    padding-inline: 20px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    height: 72px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand span {
    font-size: 20px;
  }

  .site-brand small {
    font-size: 9px;
  }

  .header-quote {
    min-width: 48px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
  }

  .header-quote span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .home-hero {
    height: max(560px, calc(100svh - 104px));
    min-height: 560px;
    max-height: 680px;
  }

  .hero-slide__inner {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .hero-problem {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 40px;
    line-height: 1.28;
  }

  .hero-lead {
    margin: 22px 0 28px;
    font-size: 15px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .hero-dots button {
    width: 34px;
  }

  .hero-dots button::before {
    width: 22px;
  }

  .hero-arrows {
    gap: 7px;
  }

  .hero-arrows button {
    width: 44px;
    height: 44px;
  }

  .hero-arrows span {
    display: none;
  }

  .button-row {
    width: 100%;
  }

  .hero-slide .button {
    min-height: 48px;
    padding: 11px 15px;
    font-size: 13px;
  }

  .notice-strip__inner {
    grid-template-columns: 70px minmax(0, 1fr) 44px;
  }

  .notice-strip time {
    display: none;
  }

  .quick-paths,
  .service-overview,
  .center-overview,
  .resource-hub,
  .latest-grid-section,
  .activity-preview,
  .activity-board,
  .faq-preview,
  .about-statement,
  .service-intro,
  .center-mission,
  .principles,
  .center-menu,
  .comparison-section,
  .company-profile,
  .process-preview,
  .quote-next,
  .concern-band,
  .scope-section,
  .document-section,
  .operation-principles {
    padding: 76px 0;
  }

  .section-heading h2,
  .cta-band h2,
  .resource-hub__head h2,
  .about-statement h2,
  .service-intro h2,
  .center-mission h2,
  .operation-principles h2 {
    font-size: 31px;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading--split > p,
  .section-heading--split > .text-link {
    width: 100%;
    margin-top: 0;
  }

  .service-card-grid,
  .activity-grid,
  .activity-grid--board,
  .principle-grid,
  .concern-grid,
  .center-menu__grid,
  .document-grid,
  .board-guide__grid,
  .process-note__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .proof-band__inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
  }

  .proof-band__inner > div {
    padding: 18px 12px;
  }

  .proof-band__inner > div:nth-child(2) {
    border-right: 0;
  }

  .proof-band__inner > div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
  }

  .proof-band__inner > p {
    padding: 10px 12px 22px;
  }

  .center-overview__grid,
  .faq-preview__grid,
  .about-statement__grid,
  .service-intro__grid,
  .center-mission__grid,
  .scope-section__grid,
  .company-profile__grid,
  .contact-form-grid {
    gap: 40px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .resource-feature--main {
    min-height: 360px;
    padding: 28px;
  }

  .resource-feature--main h3 {
    font-size: 25px;
  }

  .resource-latest a {
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    padding: 16px;
  }

  .resource-latest a > span {
    grid-column: 1 / 2;
  }

  .resource-latest a > strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .resource-latest a > time {
    grid-row: 1;
    grid-column: 2;
  }

  .resource-latest a > svg {
    display: none;
  }

  .resource-hub__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .corporate-band,
  .dual-role {
    min-height: 0;
  }

  .corporate-band__image,
  .dual-role__image {
    min-height: 330px;
  }

  .corporate-band__copy,
  .dual-role__copy {
    padding: 60px 20px;
  }

  .corporate-band__copy h2,
  .dual-role__copy h2 {
    font-size: 31px;
  }

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

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

  .footer-company {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-company nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .floating-quote.is-visible {
    display: inline-flex;
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-quote span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .notice-popup {
    right: 20px;
    bottom: 20px;
  }

  .subhero {
    padding: 46px 0 62px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .subhero h1 {
    font-size: 40px;
  }

  .subhero__lead {
    font-size: 15px;
  }

  .large-copy {
    font-size: 21px;
  }

  .principle-grid article,
  .concern-grid article {
    min-height: 220px;
    border-left: 1px solid var(--line);
  }

  .company-profile dl > div {
    grid-template-columns: 120px 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 130px 280px 280px;
    width: 690px;
  }

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

  .horizontal-process li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .official-links__inner {
    gap: 30px;
  }

  .operation-principles__image {
    min-height: 330px;
  }

  .timeline-section {
    padding: 76px 0;
  }

  .timeline li {
    grid-template-columns: 70px 1fr;
    min-height: 210px;
    padding: 34px 0;
  }

  .timeline > li > span {
    font-size: 30px;
  }

  .timeline h2 {
    font-size: 27px;
  }

  .checklist-section {
    padding: 76px 0;
  }

  .checklist-progress {
    display: block;
  }

  .checklist-progress > strong {
    margin: 16px 0;
  }

  .checklist-progress .button {
    margin-top: 20px;
  }

  .privacy-callout__inner {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .privacy-callout h2 {
    font-size: 18px;
  }

  .board-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .board-search {
    width: 100%;
  }

  .resource-row {
    grid-template-columns: 82px minmax(0, 1fr) 24px;
    gap: 8px 12px;
    padding: 18px 4px;
  }

  .resource-row__number {
    display: none;
  }

  .resource-row__type {
    grid-column: 1;
  }

  .resource-row__copy {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .resource-row__meta {
    grid-column: 2;
    grid-row: 1;
  }

  .resource-row__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .resource-row__copy strong,
  .resource-row__copy small {
    white-space: normal;
  }

  .board-detail__head h1 {
    font-size: 36px;
  }

  .board-detail__body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .board-detail__body > aside {
    position: static;
  }

  .article-lead {
    font-size: 20px;
  }

  .attachment-box {
    align-items: stretch;
    flex-direction: column;
  }

  .attachment-box > a {
    justify-content: center;
  }

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

  .board-detail__nav > a:last-child {
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .qna-item > button {
    grid-template-columns: 1fr 24px;
    gap: 8px;
  }

  .qna-item__tag {
    grid-column: 1;
  }

  .qna-item__question {
    grid-column: 1;
    grid-row: 2;
  }

  .qna-item__icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .qna-item__answer {
    grid-template-columns: 32px 1fr;
    padding: 22px 18px;
  }

  .qna-item__answer a {
    grid-column: 2;
  }

  .notice-list > a {
    grid-template-columns: 52px minmax(0, 1fr) 70px 22px;
    gap: 10px;
  }

  .notice-list > a > span:first-child,
  .notice-list > a > svg:not(.notice-list__arrow) {
    display: none;
  }

  .notice-list > a > span:nth-child(3) {
    grid-column: 2;
  }

  .notice-list time {
    grid-column: 3;
  }

  .notice-list__arrow {
    grid-column: 4;
  }

  .faq-source__inner {
    grid-template-columns: 36px 1fr;
  }

  .faq-source .text-link {
    grid-column: 2;
  }

  .quote-aside {
    display: block;
  }

  .quote-aside ul {
    margin: 28px 0;
  }

  .quote-form,
  .contact-form {
    padding: 26px 20px;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .form-success {
    grid-template-columns: 36px 1fr;
  }

  .form-success button {
    grid-column: 2;
    justify-self: start;
  }

  .location-section,
  .contact-form-section {
    padding: 76px 0;
  }

  .location-visual,
  .location-visual img {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 480px) {
  .site-container {
    padding-inline: 18px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 34px;
  }

  .hero-slide .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-slide .button {
    width: 100%;
  }

  .hero-dots {
    gap: 0;
  }

  .notice-strip__inner {
    grid-template-columns: 60px minmax(0, 1fr) 42px;
  }

  .section-heading h2,
  .cta-band h2,
  .resource-hub__head h2,
  .about-statement h2,
  .service-intro h2,
  .center-mission h2,
  .operation-principles h2 {
    font-size: 28px;
  }

  .proof-band strong {
    font-size: 28px;
  }

  .latest-columns article {
    padding: 22px 16px;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .subhero h1 {
    font-size: 34px;
  }

  .company-profile dl > div,
  .location-info dl > div {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .company-profile dt,
  .company-profile dd,
  .location-info dt,
  .location-info dd {
    padding: 4px 0;
  }

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

  .horizontal-process li,
  .horizontal-process li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .timeline li {
    grid-template-columns: 48px 1fr;
  }

  .filter-chips button {
    flex: 1 1 calc(50% - 7px);
    padding-inline: 10px;
  }

  .faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .faq-tabs button {
    min-width: 0;
    padding-inline: 8px;
  }

  .faq-item > button > span {
    gap: 12px;
    font-size: 14px;
  }

  .faq-item__answer {
    padding-right: 12px;
    padding-left: 36px;
  }

  .notice-list > a {
    grid-template-columns: 48px minmax(0, 1fr) 22px;
  }

  .notice-list time {
    display: none;
  }

  .notice-list__arrow {
    grid-column: 3;
  }

  .notice-popup {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    padding: 22px;
  }

  .floating-quote {
    right: 14px;
    bottom: 14px;
  }
}

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

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