:root {
  --navy-950: #03101e;
  --navy-900: #061728;
  --navy-850: #092038;
  --navy-800: #0b2a49;
  --navy-700: #16476f;
  --blue-500: #1a6ca5;
  --gold-500: #a77b25;
  --gold-400: #d9bd78;
  --gold-300: #ead79f;
  --ink: #102136;
  --muted: #5d6a78;
  --line: #dce3e9;
  --surface: #f3f6f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(3, 16, 30, .1);
  --shell: min(1280px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 18px rgba(3, 16, 30, .08);
}

.utility-bar { color: #dce6ef; background: var(--navy-950); }

.utility-bar__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .75rem;
  letter-spacing: .01em;
}

.utility-bar__inner > span { color: rgba(255, 255, 255, .62); }
.utility-bar nav { display: flex; align-items: center; height: 32px; }

.utility-bar nav a {
  position: relative;
  padding: 0 13px;
  color: #dce6ef;
}

.utility-bar nav a:last-child { padding-right: 0; }

.utility-bar nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, .24);
  transform: translateY(-50%);
}

.utility-bar nav a:hover,
.utility-bar nav a:focus-visible { color: var(--gold-400); }

.main-header { background: rgba(255, 255, 255, .985); }

.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  box-shadow: none;
  transition: box-shadow .32s ease;
}
.home-page .utility-bar {
  max-height: 32px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(3, 16, 30, .45);
  backdrop-filter: blur(10px);
  transition: max-height .32s ease, opacity .28s ease, transform .32s ease;
}
.home-page .main-header { border-bottom: 1px solid rgba(255, 255, 255, .15); background: linear-gradient(180deg, rgba(3, 16, 30, .58), rgba(3, 16, 30, .18)); backdrop-filter: blur(9px); transition: background .32s ease, border-color .32s ease; }
.home-page .brand__text strong,
.home-page .global-nav__item > a { color: var(--white); transition: color .32s ease; }
.home-page .brand__text span { color: rgba(255, 255, 255, .62); transition: color .32s ease; }
.home-page .global-nav__item > a::after { background: var(--gold-400); }
.home-page .menu-toggle { color: var(--white); transition: color .32s ease; }
.home-page .site-header.is-scrolled { box-shadow: 0 3px 18px rgba(3, 16, 30, .12); }
.home-page .site-header.is-scrolled .utility-bar { max-height: 0; opacity: 0; transform: translateY(-100%); }
.home-page .site-header.is-scrolled .main-header { border-bottom-color: var(--line); background: rgba(255, 255, 255, .98); }
.home-page .site-header.is-scrolled .brand__text strong,
.home-page .site-header.is-scrolled .global-nav__item > a,
.home-page .site-header.is-scrolled .menu-toggle { color: var(--navy-900); }
.home-page .site-header.is-scrolled .brand__text span { color: #697787; }

.main-header__inner {
  min-height: 82px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  min-width: 310px;
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand img { width: 52px; height: 52px; object-fit: contain; }

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand__text strong {
  color: var(--navy-900);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.brand__text span {
  margin-top: 6px;
  color: #697787;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.global-nav { max-width: 900px; flex: 1 1 auto; }

.global-nav__list {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(78px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.global-nav__item > a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: var(--navy-900);
  font-size: .95rem;
  font-weight: 750;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.global-nav__item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 4px;
  background: var(--gold-500);
  transition: left .2s ease, right .2s ease;
}

.global-nav__item:hover > a::after,
.global-nav__item:focus-within > a::after,
.global-nav__item.is-current > a::after { left: 15%; right: 15%; }

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 30;
  width: 220px;
  padding: 10px 0;
  background: var(--white);
  border-top: 3px solid var(--gold-500);
  box-shadow: 0 18px 42px rgba(3, 16, 30, .18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.global-nav__item:hover .submenu,
.global-nav__item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  display: block;
  padding: 9px 20px;
  color: #3d4c5d;
  font-size: .87rem;
  font-weight: 650;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a[aria-current="page"] { color: var(--navy-900); background: #f2f5f7; }

.menu-toggle {
  display: none;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
}

.home-hero {
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  position: relative;
  min-height: clamp(690px, calc(100svh - 70px), 880px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.home-hero__media,
.home-hero__veil,
.home-hero__glow,
.home-hero__gridlines,
.home-hero__network,
.home-hero__scan { position: absolute; inset: 0; }

.home-hero__media {
  z-index: -7;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate3d(var(--hero-pan-x), var(--hero-pan-y), 0) scale(1.045);
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.home-hero__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.12);
  filter: saturate(.78) contrast(1.08);
  transition: opacity 1.45s ease, filter 1.45s ease;
  will-change: opacity, transform;
}

.home-hero__scene:nth-child(2) { object-position: center center; }
.home-hero__scene:nth-child(3) { object-position: center center; }
.home-hero__scene.is-active { opacity: 1; filter: saturate(1) contrast(1.03); }

.home-hero__veil {
  z-index: -6;
  background:
    linear-gradient(90deg, rgba(3, 16, 30, .98) 0%, rgba(3, 16, 30, .9) 35%, rgba(3, 16, 30, .5) 66%, rgba(3, 16, 30, .2) 100%),
    linear-gradient(0deg, rgba(3, 16, 30, .74), transparent 48%, rgba(3, 16, 30, .22));
}

.home-hero__glow {
  z-index: -5;
  background:
    radial-gradient(circle at 84% 40%, rgba(235, 202, 116, .27), transparent 22%),
    radial-gradient(circle at 62% 84%, rgba(24, 135, 216, .32), transparent 32%),
    linear-gradient(112deg, transparent 57%, rgba(217, 189, 120, .11) 57.2%, transparent 58%);
}

.home-hero__gridlines {
  z-index: -3;
  opacity: .27;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 17%, #000 62%, rgba(0, 0, 0, .2));
}

.home-hero__network {
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: .78;
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-hero__scan {
  z-index: -1;
  left: -38%;
  right: auto;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 166, .22), rgba(255, 255, 255, .08), transparent);
  filter: blur(11px);
  opacity: 0;
  transform: skewX(-18deg);
  pointer-events: none;
}

.home-hero__orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: clamp(-250px, -8vw, -80px);
  width: clamp(560px, 47vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(217, 189, 120, .045), 0 0 65px rgba(25, 118, 181, .08);
  opacity: .78;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-hero__orbit::before,
.home-hero__orbit::after { content: ""; position: absolute; inset: 50% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(217, 189, 120, .45), transparent); transform-origin: center; }
.home-hero__orbit::after { transform: rotate(90deg); }
.home-hero__orbit i { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; transform: translate(-50%, -50%); }
.home-hero__orbit i:nth-child(1) { width: 79%; height: 79%; }
.home-hero__orbit i:nth-child(2) { width: 53%; height: 53%; border-color: rgba(217, 189, 120, .36); border-style: dashed; border-top-color: var(--gold-400); }
.home-hero__orbit i:nth-child(3) { width: 25%; height: 25%; box-shadow: 0 0 45px rgba(217, 189, 120, .08); }
.home-hero__orbit span { position: absolute; top: 18%; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 10px rgba(217, 189, 120, .1), 0 0 30px rgba(217, 189, 120, .8); transform: translateX(-50%); }

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 5.5vw, 82px);
  padding-block: 92px 116px;
}

.home-hero__content { max-width: 760px; }

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-400);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.section-kicker { color: var(--gold-500); }

.home-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(3.6rem, 4.55vw, 4.75rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .28);
}

.home-hero h1 > span { display: block; }

@media (min-width: 721px) {
  .home-hero h1 > span { white-space: nowrap; }
}

.home-hero .eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; color: rgba(255, 255, 255, .72); }
.home-hero .eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold-400); }
.home-hero .eyebrow span { padding: 4px 8px; color: var(--navy-950); background: var(--gold-400); font-family: Georgia, serif; letter-spacing: .08em; }

.home-hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.03rem;
  line-height: 1.82;
}

.home-hero__actions { display: flex; gap: 11px; margin-top: 30px; }

.home-hero__motto {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.home-hero__motto span { display: block; color: var(--gold-400); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.home-hero__motto strong { display: block; margin-top: 11px; font-family: Georgia, "Noto Serif KR", serif; font-size: 1.48rem; line-height: 1.46; }

.home-hero__scene-panel {
  width: 100%;
  padding: 26px 27px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-top-color: rgba(217, 189, 120, .66);
  background: linear-gradient(145deg, rgba(6, 23, 40, .78), rgba(6, 23, 40, .42));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(13px);
}

.home-hero__scene-nav { display: grid; margin-top: 10px; }
.home-hero__scene-nav button {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 11px;
  padding: 11px 4px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .58);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color .3s ease, padding-left .3s ease, background .3s ease;
}
.home-hero__scene-nav button:last-child { border-bottom: 0; }
.home-hero__scene-nav button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(217, 189, 120, .15), transparent); opacity: 0; transform: translateX(-100%); transition: opacity .35s ease, transform .35s ease; }
.home-hero__scene-nav button > * { position: relative; }
.home-hero__scene-nav button > span { grid-row: 1 / 3; align-self: center; color: var(--gold-400); font-family: Georgia, serif; font-size: .74rem; }
.home-hero__scene-nav button > strong { color: inherit; font-size: .88rem; line-height: 1.35; }
.home-hero__scene-nav button > small { margin-top: 2px; color: rgba(255, 255, 255, .44); font-size: .72rem; line-height: 1.35; transition: color .3s ease; }
.home-hero__scene-nav button:hover,
.home-hero__scene-nav button:focus-visible,
.home-hero__scene-nav button[aria-current="true"] { padding-left: 12px; color: var(--white); }
.home-hero__scene-nav button:hover::before,
.home-hero__scene-nav button:focus-visible::before,
.home-hero__scene-nav button[aria-current="true"]::before { opacity: 1; transform: translateX(0); }
.home-hero__scene-nav button[aria-current="true"] > small { color: rgba(255, 255, 255, .72); }

.home-hero__timeline {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - 1280px) / 2));
  bottom: 45px;
  width: min(300px, calc(100% - 48px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.home-hero__timeline b { color: rgba(255, 255, 255, .65); font-family: Georgia, serif; font-size: .72rem; font-weight: 700; }
.home-hero__timeline > span { height: 2px; overflow: hidden; background: rgba(255, 255, 255, .24); }
.home-hero__timeline i { width: 100%; height: 100%; display: block; background: linear-gradient(90deg, var(--gold-400), #fff1c5); transform: scaleX(0); transform-origin: left center; }

.home-hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .67);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .03em;
}
.home-hero__scroll i { position: relative; width: 28px; height: 42px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 18px; }
.home-hero__scroll i::before { content: ""; position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; border-radius: 3px; background: var(--gold-400); transform: translateX(-50%); }

.home-hero__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400) 28%, rgba(217, 189, 120, .2) 70%, transparent);
  transform-origin: left center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button--gold { color: var(--navy-950); background: var(--gold-400); }
.button--gold:hover, .button--gold:focus-visible { background: var(--gold-300); }
.button--outline { color: var(--white); border-color: rgba(255, 255, 255, .58); background: rgba(3, 16, 30, .28); }
.button--outline:hover, .button--outline:focus-visible { border-color: var(--white); background: rgba(255, 255, 255, .11); }
.button--navy { color: var(--white); background: var(--navy-900); }
.button--navy:hover, .button--navy:focus-visible { background: var(--navy-700); }

.quick-links { position: relative; z-index: 5; margin-top: -44px; }

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(82px, auto));
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-links__grid > a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}

.quick-links__grid > a:first-child {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  min-height: 184px;
  padding: 30px 34px;
  color: var(--white);
  border-bottom: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}
.quick-links__grid > a:nth-child(3),
.quick-links__grid > a:nth-child(5) { border-right: 0; }
.quick-links__grid > a:nth-child(4),
.quick-links__grid > a:nth-child(5) { border-bottom: 0; }
.quick-links__grid > a:hover, .quick-links__grid > a:focus-visible { color: var(--white); background: var(--navy-800); }
.quick-links__grid strong { display: block; color: var(--navy-900); font-size: 1.02rem; transition: color .2s ease; }
.quick-links__grid small { display: block; margin-top: 3px; color: #667481; font-size: .82rem; transition: color .2s ease; }
.quick-links__grid b { color: #9aa5b0; font-size: 1.15rem; font-weight: 400; }
.quick-links__grid > a:first-child strong { color: var(--white); font-family: Georgia, "Noto Serif KR", serif; font-size: 1.55rem; }
.quick-links__grid > a:first-child small { margin-top: 7px; color: rgba(255, 255, 255, .68); }
.quick-links__grid > a:first-child b { color: var(--gold-400); font-size: 1.5rem; }
.quick-links__grid > a:hover strong, .quick-links__grid > a:focus-visible strong { color: var(--white); }
.quick-links__grid > a:hover small, .quick-links__grid > a:focus-visible small { color: rgba(255, 255, 255, .7); }
.quick-links__grid > a:hover b, .quick-links__grid > a:focus-visible b { color: var(--gold-400); }

.news-strip { margin-top: 24px; border-bottom: 1px solid var(--line); background: #f8fafb; }

.news-strip__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .91rem;
}

.news-strip__inner > strong { padding-right: 20px; border-right: 1px solid var(--line); color: var(--navy-900); }
.news-strip time { color: var(--gold-500); font-size: .82rem; font-weight: 800; }
.news-strip__inner > a:not(.news-strip__more) { overflow: hidden; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.news-strip__more { margin-left: auto; color: #697583; font-size: .8rem; white-space: nowrap; }
.news-strip__more span { margin-left: 7px; color: var(--navy-900); font-size: 1rem; }

.section { padding: 68px 0; }
.section--tight { padding: 32px 0; }
.section--tint { background: var(--surface); }
.section-heading { margin-bottom: 30px; }

.section-heading h2,
.home-about h2,
.business-banner h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.15rem, 3.2vw, 3.15rem);
  line-height: 1.28;
  letter-spacing: -.05em;
}

.section-heading--split { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 90px; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 54px; }
.section-heading--row > p { max-width: 460px; margin: 0 0 5px; color: var(--muted); }
.section-heading__copy { padding-bottom: 4px; }
.section-heading__copy p { margin: 0; color: var(--muted); line-height: 1.9; }
.section-heading--center { max-width: 720px; margin-inline: auto; text-align: center; }
.section-heading--center > p:last-child { margin: 15px 0 0; color: var(--muted); }

.text-link { display: inline-block; margin-top: 18px; color: var(--navy-800); font-size: .91rem; font-weight: 800; }
.text-link span { margin-left: 7px; color: var(--gold-500); }
.tag { color: var(--gold-500); font-size: .78rem; font-weight: 850; letter-spacing: .025em; }

.feature-card-grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr); gap: 18px; }

.feature-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 38px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 16, 30, .12), rgba(3, 16, 30, .92));
  transition: background .25s ease;
}

.feature-card--wind { background-image: url("/assets/agenda-wind.webp"); }
.feature-card--mine { background-image: url("/assets/agenda-detection.webp"); }
.feature-card:hover::before, .feature-card:focus-visible::before { background: linear-gradient(180deg, rgba(3, 16, 30, .03), rgba(3, 16, 30, .85)); }
.feature-card > span { color: var(--gold-400); font-size: .78rem; font-weight: 850; }
.feature-card h3 { margin: 10px 0 8px; font-family: Georgia, "Noto Serif KR", serif; font-size: 1.78rem; line-height: 1.35; }
.feature-card p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .75); }
.feature-card > b { position: absolute; top: 27px; right: 30px; color: rgba(255, 255, 255, .32); font-family: Georgia, serif; font-size: 1.15rem; }

.home-updates { padding-top: 64px; }
.updates-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.activity-preview,
.photo-preview { min-width: 0; border-top: 3px solid var(--navy-900); background: var(--surface); }
.panel-heading { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 25px; border-bottom: 1px solid var(--line); }
.panel-heading h3 { margin: 0; color: var(--navy-900); font-size: 1.1rem; }
.panel-heading a { color: var(--navy-700); font-size: .83rem; font-weight: 800; }
.panel-heading a:hover,
.panel-heading a:focus-visible { color: var(--gold-500); }

.home-activity-list { background: var(--white); }
.home-activity-list > a {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 5px 18px;
  padding: 15px 25px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.home-activity-list > a:last-child { border-bottom: 0; }
.home-activity-list > a:hover,
.home-activity-list > a:focus-visible { background: #f3f6f8; }
.home-activity-list__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #778493; font-size: .74rem; }
.home-activity-list__meta time { color: var(--gold-500); font-family: Georgia, serif; font-weight: 800; }
.home-activity-list__meta em { padding-left: 9px; border-left: 1px solid #ccd4db; font-style: normal; }
.home-activity-list > a > strong { color: var(--navy-900); font-size: .98rem; line-height: 1.45; }
.home-activity-list > a > b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #9aa6b2; font-size: .95rem; }
.home-activity-list > a:hover > strong,
.home-activity-list > a:focus-visible > strong,
.home-activity-list > a:hover > b,
.home-activity-list > a:focus-visible > b { color: var(--blue-500); }

.photo-carousel { min-width: 0; background: var(--white); }
.photo-carousel__viewport { overflow: hidden; }
.photo-carousel__track { display: flex; align-items: stretch; transform: translateX(0); transition: transform .58s cubic-bezier(.22, .7, .2, 1); }
.photo-carousel__slide { min-width: 100%; flex: 0 0 100%; }
.photo-carousel__compact-card { height: 100%; display: grid; grid-template-columns: minmax(250px, 1.08fr) 1fr; align-items: stretch; background: var(--white); }
.photo-carousel__compact-card figure { min-height: 230px; display: grid; place-items: center; margin: 0; overflow: hidden; background: var(--navy-950); }
.photo-carousel__compact-card img { width: 100%; height: 100%; max-height: 300px; object-fit: contain; }
.photo-carousel__compact-card > div { display: flex; flex-direction: column; justify-content: center; padding: 27px; }
.photo-carousel__compact-card time { color: var(--gold-500); font-size: .76rem; font-weight: 800; }
.photo-carousel__compact-card strong { margin-top: 7px; color: var(--navy-900); font-size: 1.04rem; line-height: 1.58; }
.photo-carousel__compact-card:hover strong,
.photo-carousel__compact-card:focus-visible strong { color: var(--blue-500); }

.photo-carousel__controls { min-height: 54px; display: none; align-items: center; justify-content: flex-end; gap: 9px; padding: 8px 14px; border-top: 1px solid var(--line); background: #f8fafb; }
.photo-carousel.is-ready .photo-carousel__controls { display: flex; }
.photo-carousel__arrow,
.photo-carousel__toggle,
.photo-carousel__dots button { border: 0; color: var(--navy-900); background: transparent; cursor: pointer; }
.photo-carousel__arrow { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #cfd8df; background: var(--white); font-size: 1.05rem; }
.photo-carousel__arrow:hover,
.photo-carousel__arrow:focus-visible { color: var(--white); border-color: var(--navy-800); background: var(--navy-800); }
.photo-carousel__dots { display: flex; align-items: center; gap: 7px; margin-right: 5px; }
.photo-carousel__dots button { width: 18px; height: 18px; display: grid; place-items: center; padding: 0; }
.photo-carousel__dots button::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #aeb9c2; transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.photo-carousel__dots button[aria-current="true"]::before { width: 20px; border-radius: 4px; background: var(--gold-500); }
.photo-carousel__status { min-width: 42px; color: #6d7985; font-family: Georgia, serif; font-size: .78rem; text-align: center; }
.photo-carousel__toggle { min-width: 58px; height: 34px; padding: 0 8px; color: #536170; font-size: .74rem; font-weight: 750; }
.photo-carousel__toggle:hover,
.photo-carousel__toggle:focus-visible { color: var(--navy-900); background: #e9eef2; }

.photo-placeholder {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 189, 120, .22), transparent 43%),
    linear-gradient(135deg, var(--navy-700), var(--navy-950));
  overflow: hidden;
}

.photo-placeholder b { font-family: Georgia, serif; font-size: 1.1rem; letter-spacing: .12em; }
.photo-placeholder small { margin-top: 2px; color: rgba(255, 255, 255, .65); font-size: .72rem; }

.column-preview { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--navy-900); border-bottom: 1px solid var(--line); background: var(--white); }
.column-preview > a { position: relative; min-height: 190px; padding: 25px 46px 25px 25px; border-right: 1px solid var(--line); transition: background .2s ease; }
.column-preview > a:last-child { border-right: 0; }
.column-preview > a:hover, .column-preview > a:focus-visible { background: #f5f8fa; }
.column-preview time { color: var(--gold-500); font-size: .78rem; font-weight: 800; }
.column-preview span { margin-left: 10px; color: var(--muted); font-size: .78rem; }
.column-preview h3 { margin: 22px 0 0; color: var(--navy-900); font-size: 1.05rem; line-height: 1.65; }
.column-preview b { position: absolute; right: 24px; bottom: 25px; color: var(--gold-500); font-weight: 600; }

.resource-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.resource-list > a {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border-top: 3px solid var(--navy-800);
  background: var(--white);
  box-shadow: 0 9px 28px rgba(3, 16, 30, .045);
  transition: transform .2s ease, box-shadow .2s ease;
}

.resource-list > a:hover,
.resource-list > a:focus-visible { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(3, 16, 30, .09); }
.resource-list time { margin-top: 26px; color: var(--gold-500); font-size: .78rem; font-weight: 800; }
.resource-list h3 { margin: 6px 42px 0 0; color: var(--navy-900); font-size: 1.12rem; line-height: 1.5; }
.resource-list p { margin: 12px 42px 0 0; color: var(--muted); font-size: .93rem; }
.resource-list b { position: absolute; right: 27px; bottom: 28px; color: var(--navy-700); font-size: 1.15rem; }
.resource-list--compact { grid-template-columns: repeat(3, 1fr); }
.resource-list--compact > a { min-height: 200px; }
.resource-list--compact h3 { font-size: 1rem; }

.home-knowledge { position: relative; overflow: hidden; }
.home-knowledge::before { content: ""; position: absolute; top: -170px; right: -120px; width: 470px; height: 470px; border: 1px solid rgba(167, 123, 37, .13); border-radius: 50%; box-shadow: 0 0 0 54px rgba(167, 123, 37, .035), 0 0 0 108px rgba(167, 123, 37, .025); pointer-events: none; }
.home-knowledge .section-heading { position: relative; }
.home-knowledge__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: 18px; }
.home-editorial,
.home-policy { min-width: 0; background: var(--white); box-shadow: 0 14px 38px rgba(3, 16, 30, .055); }
.home-knowledge__heading { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 26px; border-top: 3px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.home-knowledge__heading > span { color: var(--navy-900); font-size: 1.05rem; font-weight: 850; }
.home-knowledge__heading a { color: var(--navy-700); font-size: .8rem; font-weight: 800; }
.home-knowledge__heading a b { margin-left: 6px; color: var(--gold-500); }
.home-editorial__feature {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(3, 16, 30, .94), rgba(3, 16, 30, .64)),
    url("/assets/network.webp") center / cover;
}
.home-editorial__feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 82% 26%, rgba(217, 189, 120, .22), transparent 25%); transition: transform .7s ease, opacity .35s ease; }
.home-editorial__feature:hover::after,
.home-editorial__feature:focus-visible::after { opacity: .9; transform: scale(1.12); }
.home-editorial__number { position: absolute; top: 29px; right: 31px; color: rgba(255, 255, 255, .18); font-family: Georgia, serif; font-size: 4.8rem; font-weight: 700; line-height: 1; }
.home-editorial__feature > div { display: flex; align-items: center; gap: 12px; color: var(--gold-400); font-size: .76rem; font-weight: 800; }
.home-editorial__feature em { padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, .34); color: rgba(255, 255, 255, .65); font-style: normal; }
.home-editorial__feature h3 { max-width: 650px; margin: 14px 0 0; font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(1.55rem, 2.45vw, 2.35rem); line-height: 1.42; letter-spacing: -.035em; }
.home-editorial__feature p { margin: 15px 0 0; color: rgba(255, 255, 255, .7); font-size: .88rem; }
.home-editorial__feature > b { margin-top: 25px; color: var(--gold-400); font-size: .8rem; font-weight: 800; }
.home-editorial__more { display: grid; grid-template-columns: 1fr 1fr; }
.home-editorial__more > a { position: relative; min-height: 205px; display: flex; flex-direction: column; padding: 25px 48px 24px 26px; border-right: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.home-editorial__more > a:last-child { border-right: 0; }
.home-editorial__more > a:hover,
.home-editorial__more > a:focus-visible { color: var(--white); background: var(--navy-800); }
.home-editorial__more span { display: flex; flex-wrap: wrap; gap: 9px; color: var(--gold-500); font-size: .75rem; font-weight: 800; }
.home-editorial__more em { padding-left: 9px; border-left: 1px solid var(--line); color: var(--muted); font-style: normal; transition: color .25s ease, border-color .25s ease; }
.home-editorial__more strong { margin-top: 19px; color: var(--navy-900); font-size: 1rem; line-height: 1.55; transition: color .25s ease; }
.home-editorial__more small { margin-top: auto; padding-top: 17px; color: var(--muted); font-size: .76rem; transition: color .25s ease; }
.home-editorial__more b { position: absolute; right: 24px; bottom: 23px; color: var(--gold-500); }
.home-editorial__more > a:hover strong,
.home-editorial__more > a:focus-visible strong { color: var(--white); }
.home-editorial__more > a:hover em,
.home-editorial__more > a:focus-visible em,
.home-editorial__more > a:hover small,
.home-editorial__more > a:focus-visible small { color: rgba(255, 255, 255, .68); border-color: rgba(255, 255, 255, .3); }
.home-policy { align-self: stretch; background: var(--navy-950); }
.home-policy .home-knowledge__heading { border-top-color: var(--gold-400); border-bottom-color: rgba(255, 255, 255, .14); }
.home-policy .home-knowledge__heading > span,
.home-policy .home-knowledge__heading a { color: var(--white); }
.home-policy__list { display: grid; }
.home-policy__list > a { position: relative; min-height: 161px; display: flex; flex-direction: column; justify-content: center; padding: 26px 68px 26px 29px; border-bottom: 1px solid rgba(255, 255, 255, .13); color: var(--white); transition: background .25s ease, padding-left .25s ease; }
.home-policy__list > a:last-child { border-bottom: 0; }
.home-policy__list > a::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold-400); transform: scaleY(0); transform-origin: bottom; transition: transform .3s ease; }
.home-policy__list > a:hover,
.home-policy__list > a:focus-visible { padding-left: 38px; background: var(--navy-800); }
.home-policy__list > a:hover::before,
.home-policy__list > a:focus-visible::before { transform: scaleY(1); }
.home-policy__list span { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .56); font-size: .75rem; }
.home-policy__list em { color: var(--gold-400); font-style: normal; font-weight: 800; }
.home-policy__list time { padding-left: 12px; border-left: 1px solid rgba(255, 255, 255, .24); }
.home-policy__list strong { margin-top: 12px; font-family: Georgia, "Noto Serif KR", serif; font-size: 1.2rem; line-height: 1.5; }
.home-policy__list > a > b { position: absolute; right: 29px; top: 50%; color: var(--gold-400); font-weight: 500; transform: translateY(-50%); }

.content-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.content-hub-grid a { position: relative; min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 22px 62px 22px 25px; border-right: 1px solid var(--line); transition: color .2s ease, background .2s ease; }
.content-hub-grid a:last-child { border-right: 0; }
.content-hub-grid a:hover,
.content-hub-grid a:focus-visible { color: var(--white); background: var(--navy-800); }
.content-hub-grid span { color: var(--gold-500); font-family: Georgia, serif; font-size: .78rem; }
.content-hub-grid strong { margin-top: 8px; color: var(--navy-900); font-size: 1.05rem; transition: color .2s ease; }
.content-hub-grid small { margin-top: 3px; color: var(--muted); font-size: .82rem; transition: color .2s ease; }
.content-hub-grid b { position: absolute; right: 25px; top: 50%; color: var(--gold-500); transform: translateY(-50%); }
.content-hub-grid a:hover strong,
.content-hub-grid a:focus-visible strong { color: var(--white); }
.content-hub-grid a:hover small,
.content-hub-grid a:focus-visible small { color: rgba(255, 255, 255, .68); }

.home-disclosure { color: var(--white); background: #0d2942; }
.home-disclosure__inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-block: 40px; }
.home-disclosure h2 { margin: 0; color: var(--white); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(1.85rem, 3vw, 2.7rem); letter-spacing: -.045em; }
.home-disclosure p:not(.section-kicker) { margin: 12px 0 0; color: rgba(255, 255, 255, .72); }
.home-disclosure .button { flex: 0 0 auto; }

.home-about { color: var(--white); background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); }

.home-about__inner {
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 34px 90px;
  padding-block: 56px;
}

.home-about h2 { color: var(--white); }
.home-about__inner > div:nth-child(2) > p { max-width: 590px; margin: 0 0 24px; color: rgba(255, 255, 255, .74); }

.home-about__facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .75fr 1.5fr 1fr;
  margin: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.home-about__facts > div { padding: 20px 24px 20px 0; border-right: 1px solid rgba(255, 255, 255, .14); }
.home-about__facts > div:not(:first-child) { padding-left: 24px; }
.home-about__facts > div:last-child { border-right: 0; }
.home-about__facts dt { color: var(--gold-400); font-size: .76rem; font-weight: 800; }
.home-about__facts dd { margin: 5px 0 0; color: var(--white); font-weight: 750; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(217, 189, 120, .13), transparent 26%),
    linear-gradient(115deg, var(--navy-950), var(--navy-800));
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 10%, #000 70%, transparent);
}

.page-hero__inner { min-height: 280px; display: flex; flex-direction: column; justify-content: center; padding-block: 42px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; color: rgba(255, 255, 255, .55); font-size: .78rem; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--gold-400); }
.page-hero h1 { margin: 0; font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(2.8rem, 5vw, 4.3rem); line-height: 1.18; letter-spacing: -.055em; }
.page-hero__inner > p:last-child { max-width: 720px; margin: 17px 0 0; color: rgba(255, 255, 255, .76); font-size: 1.02rem; }

.local-nav { border-bottom: 1px solid var(--line); background: var(--white); }
.local-nav__inner { min-height: 65px; display: grid; grid-template-columns: repeat(var(--local-columns, 5), 1fr); }
.local-nav__inner--cols-2 { --local-columns: 2; }
.local-nav__inner--cols-3 { --local-columns: 3; }
.local-nav__inner--cols-5 { --local-columns: 5; }

.local-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: #506071;
  font-size: .9rem;
  font-weight: 700;
}

.local-nav a:first-child { border-left: 1px solid var(--line); }
.local-nav a[aria-current="page"] { color: var(--navy-900); background: #f5f7f9; }
.local-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 3px; background: var(--gold-500); }

.facts { display: grid; grid-template-columns: 1.25fr .85fr .85fr; gap: 12px; }
.facts article { position: relative; min-height: 164px; padding: 29px; background: var(--surface); overflow: hidden; }
.facts article:first-child { color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.facts article:first-child::after { content: "2019"; position: absolute; right: -5px; bottom: -31px; color: rgba(255, 255, 255, .06); font-family: Georgia, serif; font-size: 6.8rem; font-weight: 800; line-height: 1; }
.facts span { color: var(--gold-500); font-size: .78rem; font-weight: 800; }
.facts strong { display: block; margin-top: 7px; color: var(--navy-900); font-size: 1.08rem; }
.facts p { margin: 6px 0 0; color: #75808b; font-size: .89rem; }
.facts article:first-child span { color: var(--gold-400); }
.facts article:first-child strong { position: relative; color: var(--white); font-family: Georgia, "Noto Serif KR", serif; font-size: 1.42rem; }
.facts article:first-child p { position: relative; color: rgba(255, 255, 255, .68); }

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 30px);
  min-height: 330px;
  margin: 0;
  padding: 12px 0 0;
  list-style: none;
}

.process::before { content: ""; position: absolute; left: 26px; top: 152px; width: calc(100% - 52px); height: 2px; background: linear-gradient(90deg, var(--navy-700), var(--gold-400)); transform: rotate(-5.2deg); transform-origin: left center; }
.process li { position: relative; z-index: 1; min-height: 170px; padding: 0 4px; }
.process li:nth-child(1) { margin-top: 120px; }
.process li:nth-child(2) { margin-top: 90px; }
.process li:nth-child(3) { margin-top: 60px; }
.process li:nth-child(4) { margin-top: 30px; }
.process span { width: 54px; height: 54px; display: grid; place-items: center; border: 5px solid var(--surface); border-radius: 50%; color: var(--gold-400); background: var(--navy-900); box-shadow: 0 9px 24px rgba(3, 16, 30, .17); font-family: Georgia, serif; font-size: .8rem; }
.process strong { display: block; margin-top: 19px; color: var(--navy-900); font-size: 1.08rem; }
.process p { max-width: 190px; margin: 7px 0 0; color: var(--muted); font-size: .88rem; }

.people-showcase { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(245px, .68fr); gap: 14px; }
.people-feature {
  position: relative;
  min-height: 410px;
  display: block;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.people-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 16, 30, .04) 30%, rgba(3, 16, 30, .94) 100%); }
.people-feature figure { position: absolute; inset: 0; margin: 0; }
.people-feature img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.88); transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .35s ease; }
.people-feature:hover img, .people-feature:focus-visible img { transform: scale(1.045); filter: saturate(1); }
.people-feature__number { position: absolute; z-index: 2; top: 24px; left: 25px; color: var(--gold-400); font-family: Georgia, serif; font-size: .82rem; }
.people-feature > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 27px; }
.people-feature small { display: block; color: var(--gold-400); font-size: .8rem; font-weight: 800; }
.people-feature strong { display: block; margin-top: 5px; font-family: Georgia, "Noto Serif KR", serif; font-size: 2rem; line-height: 1.2; }
.people-feature b { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, .28); color: rgba(255, 255, 255, .75); font-size: .82rem; }
.people-feature b span { color: var(--gold-400); font-size: 1rem; }
.people-directory { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.people-directory a { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 0; padding: 27px; color: var(--navy-900); background: var(--surface); overflow: hidden; transition: color .25s ease, background .25s ease, transform .25s ease; }
.people-directory a:last-child { background: #eee3c7; }
.people-directory a:hover, .people-directory a:focus-visible { color: var(--white); background: var(--navy-800); transform: translateX(4px); }
.people-directory a > span { position: absolute; top: 22px; left: 27px; color: var(--gold-500); font-family: Georgia, serif; font-size: .82rem; }
.people-directory small { color: #75818d; font-size: .76rem; font-weight: 800; }
.people-directory strong { margin-top: 4px; font-size: 1.14rem; }
.people-directory p { margin: 5px 34px 0 0; color: var(--muted); font-size: .84rem; }
.people-directory b { position: absolute; right: 25px; bottom: 26px; color: var(--gold-500); font-weight: 500; }
.people-directory a:hover small, .people-directory a:focus-visible small,
.people-directory a:hover p, .people-directory a:focus-visible p { color: rgba(255, 255, 255, .68); }

.leader-profile__grid {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) 1.2fr;
  align-items: stretch;
  gap: 0;
  background: var(--surface);
  border-top: 3px solid var(--navy-900);
}

.leader-profile__portrait { min-height: 570px; margin: 0; overflow: hidden; background: #dce1e5; }
.leader-profile__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.92); }
.leader-gallery { min-width: 0; min-height: 570px; display: flex; flex-direction: column; color: var(--white); background: var(--navy-950); outline-offset: -3px; }
.leader-gallery .photo-carousel__viewport { min-height: 0; flex: 1; }
.leader-gallery .photo-carousel__track,
.leader-gallery__slide,
.leader-gallery__slide figure { height: 100%; }
.leader-gallery__slide figure { position: relative; margin: 0; overflow: hidden; background: #0b2033; }
.leader-gallery__slide figure::after { content: ""; position: absolute; inset: 28% 0 0; background: linear-gradient(180deg, transparent, rgba(3, 16, 30, .92)); pointer-events: none; }
.leader-gallery__slide img { width: 100%; height: 100%; object-fit: cover; object-position: var(--leader-position, center center); filter: saturate(.9) contrast(1.02); transform: scale(1.015); transition: transform 5.4s cubic-bezier(.2, .7, .2, 1), filter .5s ease; }
.leader-gallery__slide.is-active img { transform: scale(1.065); filter: saturate(1) contrast(1.035); }
.leader-gallery__slide--general { --leader-position: 61% center; }
.leader-gallery__slide--mayor { --leader-position: 64% center; }
.leader-gallery__slide--contain figure { background: radial-gradient(circle at 50% 28%, rgba(201, 160, 69, .18), transparent 34%), linear-gradient(145deg, #102b43, #061522 76%); }
.leader-gallery__slide--contain img { box-sizing: border-box; object-fit: contain; padding: 30px 48px 150px; filter: none; transform: none; image-rendering: auto; }
.leader-gallery__slide--contain.is-active img { filter: none; transform: none; }
.leader-gallery__slide figcaption { position: absolute; z-index: 1; right: 28px; bottom: 28px; left: 28px; display: grid; gap: 5px; text-shadow: 0 2px 14px rgba(0, 0, 0, .45); }
.leader-gallery__slide figcaption > span { color: var(--gold-400); font-family: Georgia, serif; font-size: .82rem; letter-spacing: .08em; }
.leader-gallery__slide figcaption strong { color: var(--white); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(1.45rem, 2.5vw, 2.1rem); line-height: 1.3; }
.leader-gallery__slide figcaption p { margin: 1px 0 0; color: rgba(255, 255, 255, .82); font-size: .84rem; line-height: 1.6; }
.leader-gallery__slide figcaption a,
.leader-gallery__slide figcaption small { justify-self: start; margin-top: 7px; color: rgba(255, 255, 255, .7); font-size: .71rem; line-height: 1.5; }
.leader-gallery__slide figcaption a { border-bottom: 1px solid rgba(255, 255, 255, .32); }
.leader-gallery__slide figcaption a:hover,
.leader-gallery__slide figcaption a:focus-visible { color: var(--white); border-bottom-color: var(--gold-400); }
.leader-gallery .photo-carousel__controls { border-top-color: rgba(255, 255, 255, .13); background: #071a2b; }
.leader-gallery .photo-carousel__arrow { color: var(--white); border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .06); }
.leader-gallery .photo-carousel__arrow:hover,
.leader-gallery .photo-carousel__arrow:focus-visible { color: var(--navy-950); border-color: var(--gold-400); background: var(--gold-400); }
.leader-gallery .photo-carousel__status,
.leader-gallery .photo-carousel__toggle { color: rgba(255, 255, 255, .76); }
.leader-gallery .photo-carousel__toggle:hover,
.leader-gallery .photo-carousel__toggle:focus-visible { color: var(--white); background: rgba(255, 255, 255, .1); }
.leader-profile__content { display: flex; flex-direction: column; justify-content: center; padding: 44px 52px; }
.leader-profile__content h2 { margin: 0; color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: 1.1; }
.leader-profile__roman { display: block; margin-top: 13px; color: #7a8793; font-family: Arial, sans-serif; font-size: .24em; font-weight: 750; letter-spacing: .08em; }
.leader-profile__biography { margin-top: 28px; padding: 20px 0 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.leader-profile__biography h3 { margin: 0 0 14px; color: var(--navy-900); font-size: .92rem; }
.leader-profile__timeline { margin: 0; padding: 0; list-style: none; }
.leader-profile__timeline li { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 8px 0 8px 17px; color: #526171; font-size: .9rem; line-height: 1.55; }
.leader-profile__timeline li::before { content: ""; position: absolute; left: 0; top: 1.08em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.leader-profile__timeline-year { color: var(--navy-900); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .01em; white-space: nowrap; }
.leader-profile__statement { margin: 28px 0 0; padding: 20px 0 20px 24px; border-left: 3px solid var(--gold-500); color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(1.5rem, 2.7vw, 2.15rem); line-height: 1.55; }
.leader-profile__message { max-width: 630px; margin: 20px 0 0; color: var(--muted); line-height: 1.85; }

.data-note { margin-top: 15px; color: #778390; font-size: .86rem; }
.officer-table-wrap { overflow-x: auto; border-top: 3px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.officer-table { width: 100%; border-collapse: collapse; background: var(--white); }
.officer-table th,
.officer-table td { padding: 15px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.officer-table thead th { color: #526171; background: var(--surface); font-size: .82rem; font-weight: 800; }
.officer-table thead th:first-child { width: 17%; }
.officer-table thead th:last-child { width: 16%; }
.officer-table tbody tr:last-child > * { border-bottom: 0; }
.officer-table tbody tr:hover { background: #f8fafb; }
.officer-table tbody th { color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: 1.04rem; }
.officer-table tbody td:nth-child(2) { color: #6f7b87; font-size: .88rem; }
.officer-table tbody td:last-child { color: var(--gold-500); font-size: .82rem; }
.officer-table tbody td:last-child strong { display: inline-block; padding: 4px 9px; background: #f4ead1; font-weight: 850; }
.officer-table__empty { color: #b4bdc5; }
.data-note--board { margin: 14px 0 0; }

.empty-state-section { min-height: 400px; display: grid; place-items: center; }
.empty-state { position: relative; max-width: 820px; margin-inline: auto; padding: 56px 40px; border-top: 3px solid var(--navy-900); background: var(--surface); text-align: center; overflow: hidden; }
.empty-state > span { position: absolute; right: 16px; bottom: -34px; color: rgba(6, 23, 40, .04); font-family: Georgia, serif; font-size: 8rem; font-weight: 800; line-height: 1; }
.empty-state h2 { position: relative; margin: 0; color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(2rem, 3.4vw, 3rem); }
.empty-state > p:not(.section-kicker) { position: relative; margin: 16px 0 25px; color: var(--muted); }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.role-grid article { position: relative; min-height: 210px; padding: 28px; background: var(--white); overflow: hidden; }
.role-grid article::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 4px; background: var(--gold-500); transition: width .24s ease; }
.role-grid article:hover::after { width: 100%; }
.role-grid span { color: var(--gold-500); font-family: Georgia, serif; font-size: .82rem; }
.role-grid h3 { margin: 45px 0 9px; color: var(--navy-900); font-size: 1.12rem; }
.role-grid p { margin: 0; color: var(--muted); font-size: .94rem; }

.business-banner { color: var(--white); background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); }
.business-banner__inner { min-height: 355px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; padding-block: 60px; }
.business-banner h2 { color: var(--white); }
.business-banner ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.business-banner li { min-height: 82px; display: flex; align-items: center; gap: 14px; padding: 17px; border: 1px solid rgba(255, 255, 255, .17); color: rgba(255, 255, 255, .82); }
.business-banner li span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; color: var(--navy-950); background: var(--gold-400); font-size: .8rem; font-weight: 850; }

.policy-scope { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 2px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.policy-scope span { min-height: 76px; display: grid; place-items: center; padding: 13px; border-right: 1px solid var(--line); color: var(--navy-800); font-size: .91rem; font-weight: 800; text-align: center; }
.policy-scope span:last-child { border-right: 0; }
.agenda-detail-section { padding-top: 48px; }
.agenda-detail { min-height: 520px; display: grid; grid-template-columns: 1fr 1fr; margin-top: 24px; background: var(--surface); border-top: 3px solid var(--navy-900); }
.agenda-detail + .agenda-detail { margin-top: 32px; }
.agenda-detail--reverse .agenda-detail__image { order: 2; }
.agenda-detail__image { min-height: 520px; overflow: hidden; }
.agenda-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.agenda-detail__content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 50px 58px; }
.agenda-number { position: absolute; top: 28px; right: 31px; color: rgba(6, 23, 40, .11); font-family: Georgia, serif; font-size: 2.5rem; font-weight: 800; }
.agenda-detail h3 { margin: 0; color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.3; letter-spacing: -.045em; }
.agenda-detail__content > p:not(.section-kicker) { margin: 18px 0 0; color: var(--muted); line-height: 1.9; }
.agenda-detail ul { margin: 22px 0 0; padding: 0; list-style: none; }
.agenda-detail li { position: relative; padding: 8px 0 8px 18px; border-bottom: 1px solid var(--line); color: #425264; font-size: .93rem; }
.agenda-detail li::before { content: ""; position: absolute; left: 0; top: 18px; width: 6px; height: 6px; background: var(--gold-500); }

.agenda-activity-list { border-top: 1px solid var(--line); }
.agenda-activity { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 28px; padding: 24px 28px; border-bottom: 1px solid var(--line); background: #f8fafb; }
.agenda-activity + .agenda-detail { margin-top: 70px; }
.agenda-activity time { color: var(--gold-500); font-family: Georgia, serif; font-size: .9rem; font-weight: 800; }
.agenda-activity strong { color: var(--navy-900); font-size: .98rem; }
.agenda-activity p { margin: 5px 0 0; color: var(--muted); font-size: .87rem; line-height: 1.65; }
.agenda-activity > a { color: var(--navy-800); font-size: .83rem; font-weight: 800; white-space: nowrap; }
.agenda-activity > a span { margin-left: 5px; color: var(--gold-500); }

.timeline { margin: 0; padding: 0; border-top: 2px solid var(--navy-900); list-style: none; }
.timeline li { display: grid; grid-template-columns: 125px 1fr; gap: 34px; padding: 29px 20px 29px 8px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.timeline li:hover { background: #f8fafb; }
.timeline time { display: flex; align-items: baseline; gap: 8px; color: var(--navy-900); }
.timeline time strong { font-family: Georgia, serif; font-size: 1.35rem; }
.timeline time span { color: #9aa5b0; font-size: .76rem; }
.timeline h3 { margin: 3px 0 5px; color: var(--navy-900); font-size: 1.1rem; }
.timeline p { margin: 0; color: var(--muted); font-size: .94rem; }
.timeline__links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 12px; }
.timeline__links .text-link { margin: 0; font-size: .84rem; }

.board-section { min-height: 420px; }
.board-toolbar { min-height: 68px; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid var(--line); border-bottom: 0; background: var(--surface); }
.board-toolbar > span { margin-right: auto; color: var(--muted); font-size: .88rem; }
.board-toolbar > span strong { color: var(--navy-900); }
.board-toolbar label { width: min(310px, 46%); }
.board-toolbar input { width: 100%; height: 40px; padding: 0 13px; border: 1px solid #cbd5dd; color: var(--ink); background: var(--white); }
.board-toolbar button { height: 40px; padding: 0 17px; border: 1px solid var(--navy-800); color: var(--white); background: var(--navy-800); font-size: .85rem; font-weight: 750; }
.board-toolbar :disabled { cursor: default; opacity: .68; }
.board-table { border-top: 2px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.board-table__head { min-height: 54px; display: grid; grid-template-columns: 90px 1fr 100px 130px; align-items: center; border-bottom: 1px solid var(--line); color: #566474; background: var(--surface); font-size: .82rem; font-weight: 800; text-align: center; }
.board-table__head--author { grid-template-columns: 90px 1fr 150px 130px; }
.board-table__head span:nth-child(2) { text-align: left; }
.board-empty { min-height: 215px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px 24px; color: var(--muted); background: var(--white); text-align: center; }
.board-empty strong { color: var(--navy-900); font-size: 1.02rem; }
.board-empty p { margin: 6px 0 0; font-size: .9rem; }
.board-disclaimer { margin: 14px 0 0; color: #73808d; font-size: .84rem; }

.contribution-list { border-top: 2px solid var(--navy-900); }
.contribution-list article { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 10px 42px; padding: 24px; border-bottom: 1px solid var(--line); }
.contribution-list__meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; color: var(--muted); font-size: .78rem; }
.contribution-list__meta time { color: var(--gold-500); font-weight: 800; }
.contribution-list__meta span { position: relative; }
.contribution-list__meta span::before { content: ""; position: absolute; left: -10px; top: 50%; width: 2px; height: 2px; border-radius: 50%; background: #9aa5b0; }
.contribution-list__meta .contribution-list__type { padding: 3px 8px; color: var(--navy-900); background: #e8edf2; font-weight: 800; }
.contribution-list__meta .contribution-list__type::before { display: none; }
.contribution-list h3 { margin: 7px 0 0; color: var(--navy-900); font-size: 1.2rem; line-height: 1.55; }
.contribution-list h3 b { margin-left: 6px; color: var(--gold-500); font-size: .9rem; }
.contribution-list article > p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.contribution-list__author { grid-row: 2 / 4; grid-column: 2; align-self: center; padding-left: 25px; border-left: 1px solid var(--line); }
.contribution-list__author strong, .contribution-list__author span { display: block; }
.contribution-list__author strong { color: var(--navy-900); }
.contribution-list__author span { margin-top: 5px; color: #7b8794; font-size: .78rem; letter-spacing: .04em; }

.photo-carousel--feature { border-top: 3px solid var(--navy-900); box-shadow: 0 16px 42px rgba(3, 16, 30, .07); }
.photo-carousel__feature-card { min-height: 500px; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr); background: var(--surface); }
.photo-carousel__feature-card figure { position: relative; min-height: 500px; display: grid; place-items: center; margin: 0; overflow: hidden; background: var(--navy-950); }
.photo-carousel__feature-card figure img { width: 100%; height: 100%; max-height: 620px; object-fit: contain; }
.photo-carousel__feature-card figcaption { position: absolute; right: 12px; bottom: 10px; padding: 4px 8px; color: rgba(255, 255, 255, .85); background: rgba(3, 16, 30, .72); font-size: .68rem; }
.photo-carousel__feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 42px; }
.photo-carousel__feature-copy time { color: var(--gold-500); font-size: .82rem; font-weight: 800; }
.photo-carousel__feature-copy h3 { margin: 10px 0 0; color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1.45; letter-spacing: -.035em; }
.photo-carousel__feature-copy p { margin: 18px 0 0; color: var(--muted); line-height: 1.8; }
.photo-carousel__feature-copy .text-link { align-self: flex-start; margin-top: 23px; }
.photo-news-reference { display: flex; align-items: center; justify-content: space-between; gap: 34px; margin-top: 18px; padding: 22px 28px; border-left: 3px solid var(--gold-500); background: var(--surface); }
.photo-news-reference time { color: var(--gold-500); font-size: .77rem; font-weight: 800; }
.photo-news-reference h3 { margin: 3px 0 0; color: var(--navy-900); font-size: 1.02rem; }
.photo-news-reference p { margin: 4px 0 0; color: var(--muted); font-size: .87rem; }
.photo-news-reference .text-link { flex: 0 0 auto; margin: 0; }

.disclosure-intro { padding-bottom: 66px; }
.disclosure-status { display: grid; grid-template-columns: 250px 1fr; gap: 55px; align-items: start; padding: 36px 0 45px; border-top: 3px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.disclosure-status > span { display: inline-flex; justify-self: start; padding: 8px 12px; color: var(--navy-950); background: var(--gold-400); font-size: .78rem; font-weight: 850; }
.disclosure-status h2 { margin: 0; color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.35; letter-spacing: -.045em; }
.disclosure-status p { margin: 15px 0 0; color: var(--muted); line-height: 1.85; }
.organization-data { display: grid; grid-template-columns: repeat(2, 1fr); margin: 42px 0 0; border-top: 1px solid var(--navy-900); }
.organization-data > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 16px; border-bottom: 1px solid var(--line); }
.organization-data > div:nth-child(odd) { border-right: 1px solid var(--line); }
.organization-data dt { color: var(--muted); font-size: .86rem; }
.organization-data dd { margin: 0; color: var(--navy-900); font-weight: 750; }
.public-interest-principles { margin-top: 54px; padding-top: 42px; border-top: 1px solid var(--line); }
.public-interest-principles__heading { display: grid; grid-template-columns: 250px 1fr; gap: 55px; align-items: start; }
.public-interest-principles__heading h3 { max-width: 820px; margin: 0; color: var(--navy-900); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(1.55rem, 2.6vw, 2.15rem); line-height: 1.45; letter-spacing: -.035em; }
.public-interest-principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 32px; border-top: 2px solid var(--navy-900); border-bottom: 1px solid var(--line); }
.public-interest-principles__grid article { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); }
.public-interest-principles__grid article:last-child { border-right: 0; }
.public-interest-principles__grid span { color: var(--gold-500); font-family: Georgia, serif; font-size: .8rem; }
.public-interest-principles__grid h4 { margin: 32px 0 10px; color: var(--navy-900); font-size: 1.05rem; }
.public-interest-principles__grid p { margin: 0; color: var(--muted); line-height: 1.75; }
.public-interest-principles__note { margin: 15px 0 0; color: #6e7b87; font-size: .84rem; }
.disclosure-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.disclosure-card-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 32px; border-top: 3px solid var(--navy-900); background: var(--white); }
.disclosure-card-grid article > span { color: var(--gold-500); font-family: Georgia, serif; font-size: .82rem; }
.disclosure-card-grid h3 { margin: 36px 0 8px; color: var(--navy-900); font-size: 1.2rem; }
.disclosure-card-grid p { margin: 0; color: var(--muted); }
.disclosure-card-grid b { align-self: flex-start; margin-top: auto; padding: 6px 10px; color: #5e6c79; background: #eef2f5; font-size: .75rem; }
.disclosure-note { margin: 18px 0 0; color: #6e7b87; font-size: .84rem; }
.integrity-report { color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); }
.integrity-report__inner { min-height: 310px; display: flex; align-items: center; justify-content: space-between; gap: 70px; padding-block: 55px; }
.integrity-report h2 { max-width: 760px; margin: 0; color: var(--white); font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.35; letter-spacing: -.045em; }
.integrity-report p:not(.section-kicker) { margin: 15px 0 0; color: rgba(255, 255, 255, .7); }
.integrity-report .button { flex: 0 0 auto; }
.official-guidance__inner { display: flex; align-items: center; gap: 26px; min-height: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.official-guidance__inner strong { color: var(--navy-900); }
.official-guidance__inner a { color: var(--navy-700); font-weight: 750; }
.official-guidance__inner a span { margin-left: 6px; color: var(--gold-500); }

.participation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.participation-grid article { min-height: 430px; display: flex; flex-direction: column; padding: 32px; border-top: 3px solid var(--navy-900); background: var(--surface); }
.participation-grid article > span { color: var(--gold-500); font-family: Georgia, serif; font-size: .85rem; }
.participation-grid h3 { margin: 42px 0 10px; color: var(--navy-900); font-size: 1.25rem; }
.participation-grid article > p { margin: 0; color: var(--muted); }
.participation-grid .button { align-self: flex-start; margin-top: auto; }
.participation-grid dl { margin: auto 0 0; }
.participation-grid dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.participation-grid dt { color: var(--muted); }
.participation-grid dd { margin: 0; color: var(--navy-900); font-weight: 800; text-align: right; }

.contact-panel { color: var(--white); background: linear-gradient(115deg, var(--navy-950), var(--navy-800)); }
.contact-panel__inner { min-height: 300px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 70px; padding-block: 55px; }
.contact-panel h2 { color: var(--white); }
.contact-panel__inner > div > p:last-child { margin: 15px 0 0; color: rgba(255, 255, 255, .68); }
.contact-panel dl { margin: 0; padding-left: 40px; border-left: 1px solid rgba(255, 255, 255, .25); }
.contact-panel dl > div { display: flex; justify-content: space-between; gap: 24px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.contact-panel dt { color: var(--gold-400); font-weight: 800; }
.contact-panel dd { margin: 0; }

.submission-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: start; }
.submission-steps { margin: 0; padding: 0; border-top: 3px solid var(--navy-900); list-style: none; }
.submission-steps li { display: grid; grid-template-columns: 58px 165px 1fr; gap: 22px; align-items: center; min-height: 86px; padding: 16px 8px; border-bottom: 1px solid var(--line); }
.submission-steps span { color: var(--gold-500); font-family: Georgia, serif; font-size: .8rem; }
.submission-steps strong { color: var(--navy-900); }
.submission-steps p { margin: 0; color: var(--muted); font-size: .88rem; }
.submission-panel { padding: 34px; border-top: 3px solid var(--gold-500); color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); box-shadow: var(--shadow); }
.status-badge { display: inline-flex; padding: 5px 10px; color: var(--navy-950); background: var(--gold-400); font-size: .72rem; font-weight: 850; }
.submission-panel h3 { margin: 21px 0 12px; font-family: Georgia, "Noto Serif KR", serif; font-size: 1.55rem; }
.submission-panel dl { margin: 0; }
.submission-panel dl > div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.submission-panel dt { color: rgba(255, 255, 255, .7); }
.submission-panel dd { margin: 0; color: var(--gold-300); font-size: .84rem; font-weight: 800; }
.submission-notice { margin: 25px 0; padding: 18px; background: rgba(255, 255, 255, .08); }
.submission-notice strong { color: var(--gold-300); }
.submission-notice p { margin: 6px 0 0; color: rgba(255, 255, 255, .72); font-size: .86rem; }
.submission-panel .button { width: 100%; border: 1px solid rgba(255, 255, 255, .24); color: rgba(255, 255, 255, .72); background: rgba(255, 255, 255, .08); cursor: default; }
.submission-rules { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px 70px; align-items: start; }
.submission-rules h2 { margin: 0; color: var(--navy-900); }
.submission-rules ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; padding: 0; background: var(--line); list-style: none; }
.submission-rules li { min-height: 72px; display: flex; align-items: center; padding: 15px 18px; color: var(--navy-900); background: var(--white); font-weight: 750; }
.submission-rules > p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .86rem; }

.site-footer { color: #b9c5d0; background: var(--navy-950); }
.site-footer__nav { min-height: 64px; display: flex; align-items: center; gap: 32px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.site-footer__nav a { color: #d9e1e8; font-size: .85rem; font-weight: 700; }
.site-footer__nav a:hover, .site-footer__nav a:focus-visible { color: var(--gold-400); }
.site-footer__top { display: grid; grid-template-columns: 380px 1fr; gap: 70px; align-items: center; padding-block: 49px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 62px; height: 62px; object-fit: contain; filter: grayscale(1) brightness(2.2); opacity: .8; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--white); font-family: Georgia, "Noto Serif KR", serif; font-size: 1.05rem; }
.footer-brand span { margin-top: 5px; font-size: .59rem; letter-spacing: .09em; }
.footer-contact p { margin: 4px 0; font-size: .86rem; }
.footer-contact strong { margin-right: 7px; color: var(--white); }
.footer-contact strong:not(:first-child) { margin-left: 20px; }
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--gold-400); }
.site-footer__bottom { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .78rem; }
.site-footer__bottom p { margin: 0; }

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 10px 25px rgba(3, 16, 30, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  cursor: pointer;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
:focus-visible { outline: 3px solid var(--navy-900); outline-offset: 3px; }
.home-hero :focus-visible,
.page-hero :focus-visible,
.home-disclosure :focus-visible,
.home-about :focus-visible,
.business-banner :focus-visible,
.contact-panel :focus-visible,
.integrity-report :focus-visible,
.site-footer :focus-visible {
  outline-color: #f0cc72;
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero__scene.is-active { animation: hero-scene 7.4s linear both; }
  .home-hero__veil { animation: hero-veil 1.8s ease-out both; }
  .home-hero__glow { animation: hero-glow 5.5s 1.2s ease-in-out infinite alternate; }
  .home-hero__gridlines { animation: hero-grid-drift 16s linear infinite; }
  .home-hero__scan { animation: hero-scan 6.8s .45s cubic-bezier(.18, .65, .22, 1) infinite; }
  .home-hero__orbit { animation: hero-orbit 24s 1.2s linear infinite; }
  .home-hero__orbit i:nth-child(2) { animation: hero-orbit-reverse 15s linear infinite; }
  .home-hero__orbit span { animation: hero-signal 2.1s ease-in-out infinite; }
  .home-hero__content > .eyebrow { animation: hero-kicker .72s .16s ease-out both; }
  .home-hero h1 > span { animation: hero-title 1s cubic-bezier(.16, .76, .22, 1) both; }
  .home-hero h1 > span:first-child { animation-delay: .3s; }
  .home-hero h1 > span:nth-child(2) { animation-delay: .48s; }
  .home-hero__lead { animation: hero-content .82s .76s ease-out both; }
  .home-hero__actions { animation: hero-content .82s .94s ease-out both; }
  .home-hero__scene-panel { animation: hero-panel .92s .72s ease-out both; }
  .home-hero__timeline { animation: hero-content .82s 1.05s ease-out both; }
  .home-hero__timeline i.is-running { animation: hero-progress 7.2s linear both; }
  .home-hero__scroll i::before { animation: hero-scroll 1.7s ease-in-out infinite; }
  .home-hero__line { animation: hero-line 1.6s .55s ease-out both; }
  .quick-links { animation: hero-content .86s 1.05s ease-out both; }
  .reveal-ready [data-reveal-group] > * { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s cubic-bezier(.2, .7, .2, 1); }
  .reveal-ready [data-reveal-group].is-revealed > * { opacity: 1; transform: translateY(0); }
  .reveal-ready [data-reveal-group].is-revealed > *:nth-child(2) { transition-delay: .08s; }
  .reveal-ready [data-reveal-group].is-revealed > *:nth-child(3) { transition-delay: .16s; }
  .reveal-ready [data-reveal-group].is-revealed > *:nth-child(4) { transition-delay: .24s; }
  .reveal-ready [data-reveal-group].is-revealed > *:nth-child(5) { transition-delay: .32s; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-page .site-header,
  .home-page .utility-bar,
  .home-page .main-header,
  .home-hero__media,
  .home-hero__scene,
  .home-hero__scene-nav button,
  .home-hero__scene-nav button::before { transition: none; }
  .home-hero__timeline i { transform: scaleX(1); }
}

@keyframes hero-scene {
  from { transform: scale(1.13) translate3d(1.2%, 10px, 0); }
  to { transform: scale(1.025) translate3d(-.5%, -4px, 0); }
}

@keyframes hero-veil {
  from { opacity: .35; }
  to { opacity: 1; }
}

@keyframes hero-glow {
  from { opacity: .6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes hero-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 72px, 72px 0; }
}

@keyframes hero-scan {
  0%, 56% { left: -38%; opacity: 0; }
  64% { opacity: .9; }
  96%, 100% { left: 118%; opacity: 0; }
}

@keyframes hero-orbit {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes hero-orbit-reverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes hero-signal {
  0%, 100% { opacity: .5; box-shadow: 0 0 0 7px rgba(217, 189, 120, .06), 0 0 18px rgba(217, 189, 120, .5); }
  50% { opacity: 1; box-shadow: 0 0 0 14px rgba(217, 189, 120, .11), 0 0 36px rgba(217, 189, 120, .92); }
}

@keyframes hero-kicker {
  from { opacity: 0; letter-spacing: .28em; transform: translateX(-20px); }
  to { opacity: 1; letter-spacing: .1em; transform: translateX(0); }
}

@keyframes hero-title {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(0, 28px, 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0, 0, 0); }
}

@keyframes hero-panel {
  from { opacity: 0; transform: translate3d(38px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-content {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-line {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes hero-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes hero-scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 17px); }
}

@media (max-width: 1180px) {
  :root { --shell: min(1100px, calc(100% - 36px)); }
  .brand { min-width: 260px; }
  .brand__text strong { font-size: 1.02rem; }
  .global-nav__item > a { padding-inline: 6px; font-size: .86rem; }
  .home-hero__inner { grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; }
  .home-hero h1 { font-size: clamp(3.25rem, 5.1vw, 4rem); }
}

@media (max-width: 960px) {
  :root { --shell: min(900px, calc(100% - 32px)); }
  html { scroll-padding-top: 82px; }
  .utility-bar { display: none; }
  .main-header__inner { min-height: 78px; align-items: center; }
  .brand { min-width: 0; }
  .menu-toggle { display: flex; align-items: center; gap: 9px; padding: 8px 0; font-size: .8rem; font-weight: 800; }
  .menu-toggle__lines { width: 25px; display: grid; gap: 5px; }
  .menu-toggle__lines i { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 78px 0 0; z-index: 100; max-width: none; padding: 14px 18px 42px; overflow-y: auto; background: var(--white); opacity: 0; visibility: hidden; transform: translateX(100%); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
  .global-nav.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
  .global-nav__list { height: auto; display: block; }
  .global-nav__item { display: block; border-bottom: 1px solid var(--line); }
  .global-nav__item > a { justify-content: flex-start; min-height: 54px; padding: 0 8px; font-size: 1rem; }
  .global-nav__item > a::after { display: none; }
  .submenu { position: static; width: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 0 0 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .global-nav__item:hover .submenu, .global-nav__item:focus-within .submenu { transform: none; }
  .submenu a { padding: 9px 10px; background: #f3f6f8; font-size: .82rem; }
  .home-page .main-header { background: rgba(3, 16, 30, .68); }
  .home-page .global-nav .global-nav__item > a { color: var(--navy-900); }
  .home-hero { min-height: 720px; }
  .home-hero__inner { grid-template-columns: 1fr; padding-block: 126px 118px; }
  .home-hero__scene-panel { display: none; }
  .home-hero__content { max-width: 680px; }
  .home-hero h1 { max-width: 680px; font-size: clamp(3rem, 6.2vw, 3.65rem); line-height: 1.17; }
  .home-hero__orbit { right: -210px; opacity: .58; }
  .quick-links__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .quick-links__grid > a { grid-column: auto; grid-row: auto; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .quick-links__grid > a:first-child { grid-column: 1 / -1; grid-row: auto; min-height: 138px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-links__grid > a:nth-child(3),
  .quick-links__grid > a:nth-child(5) { border-right: 0; }
  .quick-links__grid > a:nth-child(4),
  .quick-links__grid > a:nth-child(5) { border-bottom: 0; }
  .section { padding: 60px 0; }
  .section--tight { padding: 28px 0; }
  .section-heading--split { gap: 48px; }
  .feature-card { min-height: 350px; }
  .resource-list--compact { grid-template-columns: 1fr; }
  .resource-list--compact > a { min-height: 170px; }
  .updates-grid { grid-template-columns: 1fr; }
  .home-knowledge__grid { grid-template-columns: 1fr; }
  .home-policy__list { grid-template-columns: repeat(3, 1fr); }
  .home-policy__list > a { min-height: 190px; }
  .column-preview { grid-template-columns: 1fr 1fr; }
  .column-preview > a:nth-child(2) { border-right: 0; }
  .column-preview > a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .column-preview > a:last-child { grid-column: 1 / -1; }
  .content-hub-grid { grid-template-columns: 1fr 1fr; }
  .content-hub-grid a:nth-child(2) { border-right: 0; }
  .content-hub-grid a:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .home-about__inner { gap: 34px 48px; }
  .facts { grid-template-columns: 1.2fr 1fr; }
  .facts article:first-child { grid-row: 1 / span 2; }
  .process { gap: 14px; }
  .process p { font-size: .82rem; }
  .people-showcase { grid-template-columns: 1fr 1fr; }
  .people-directory { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .people-directory a { min-height: 175px; }
  .leader-profile__grid { grid-template-columns: minmax(280px, .75fr) 1.25fr; }
  .leader-profile__portrait { min-height: 520px; }
  .leader-gallery { min-height: 520px; }
  .leader-profile__content { padding: 38px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .business-banner__inner { gap: 48px; }
  .policy-scope { grid-template-columns: repeat(3, 1fr); }
  .policy-scope span:nth-child(3) { border-right: 0; }
  .policy-scope span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .agenda-detail { min-height: 470px; }
  .agenda-detail__image { min-height: 470px; }
  .agenda-detail__content { padding: 42px; }
  .participation-grid { grid-template-columns: 1fr; }
  .participation-grid article { min-height: 310px; }
  .photo-carousel__feature-card { min-height: 460px; grid-template-columns: minmax(0, 1.2fr) minmax(285px, .8fr); }
  .photo-carousel__feature-card figure { min-height: 460px; }
  .photo-carousel__feature-copy { padding: 34px; }
  .disclosure-status { grid-template-columns: 210px 1fr; gap: 35px; }
  .public-interest-principles__heading { grid-template-columns: 210px 1fr; gap: 35px; }
  .integrity-report__inner { gap: 42px; }
  .submission-layout { grid-template-columns: 1fr; gap: 42px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 28px); }
  body { word-break: normal; }
  .main-header__inner { min-height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand__text strong { font-size: .94rem; }
  .brand__text span { font-size: .53rem; }
  .menu-toggle > span:last-child { display: none; }
  .global-nav { inset-block-start: 72px; }
  .home-hero { min-height: 680px; }
  .home-hero__scene:first-child { object-position: 61% center; }
  .home-hero__scene:nth-child(2) { object-position: 45% center; }
  .home-hero__scene:nth-child(3) { object-position: 56% center; }
  .home-hero__veil { background: linear-gradient(90deg, rgba(3, 16, 30, .97), rgba(3, 16, 30, .82) 72%, rgba(3, 16, 30, .5)); }
  .home-hero__gridlines { background-size: 54px 54px; opacity: .2; }
  .home-hero__network { opacity: .55; }
  .home-hero__inner { padding-block: 112px 118px; }
  .home-hero h1 { max-width: 100%; font-size: clamp(2.45rem, 6.3vw, 3rem); line-height: 1.18; }
  .home-hero__orbit { right: -285px; width: 540px; opacity: .4; }
  .home-hero__lead { margin-top: 18px; font-size: .95rem; line-height: 1.75; }
  .home-hero__actions { flex-wrap: wrap; margin-top: 26px; }
  .home-hero__timeline { left: 14px; bottom: 39px; width: 205px; }
  .home-hero__scroll { right: 14px; bottom: 27px; }
  .home-hero__scroll span { display: none; }
  .button { min-height: 47px; padding-inline: 20px; }
  .quick-links { margin-top: -28px; }
  .quick-links__grid > a { min-height: 96px; padding: 16px; }
  .quick-links__grid small { font-size: .77rem; line-height: 1.45; }
  .news-strip { margin-top: 18px; }
  .news-strip__inner { gap: 10px; }
  .news-strip__inner > strong { padding-right: 10px; }
  .news-strip time, .news-strip__more { display: none; }
  .section { padding: 50px 0; }
  .section--tight { padding: 24px 0; }
  .section-heading { margin-bottom: 24px; }
  .section-heading--split { display: block; }
  .section-heading__copy { margin-top: 20px; }
  .section-heading--row { display: block; }
  .section-heading--row > .text-link, .section-heading--row > p { margin-top: 18px; }
  .feature-card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 330px; padding: 28px; }
  .resource-list { grid-template-columns: 1fr; }
  .resource-list > a { min-height: 205px; }
  .home-knowledge__grid { display: block; }
  .home-editorial__feature { min-height: 320px; padding: 28px; }
  .home-editorial__feature h3 { font-size: 1.58rem; }
  .home-editorial__more { grid-template-columns: 1fr; }
  .home-editorial__more > a { min-height: 175px; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-editorial__more > a:last-child { border-bottom: 0; }
  .home-policy { margin-top: 16px; }
  .home-policy__list { grid-template-columns: 1fr; }
  .home-policy__list > a { min-height: 135px; }
  .home-about__inner { min-height: 0; display: block; padding-block: 48px; }
  .home-about__inner > div:nth-child(2) { margin-top: 24px; }
  .home-about__facts { display: block; margin-top: 35px; }
  .home-about__facts > div, .home-about__facts > div:not(:first-child) { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .home-about__facts > div:last-child { border-bottom: 0; }
  .page-hero__inner { min-height: 245px; padding-block: 36px; }
  .breadcrumb { margin-bottom: 24px; }
  .local-nav { overflow-x: auto; }
  .local-nav__inner { width: max-content; min-width: 100%; grid-template-columns: repeat(var(--local-columns, 5), minmax(125px, 1fr)); }
  .facts { display: block; }
  .facts article { min-height: auto; padding: 24px; }
  .facts article + article { margin-top: 10px; }
  .process { min-height: 0; grid-template-columns: 1fr; gap: 0; padding: 5px 0 0 78px; }
  .process::before { left: 26px; top: 26px; bottom: 30px; width: 2px; height: auto; transform: none; }
  .process li,
  .process li:nth-child(1),
  .process li:nth-child(2),
  .process li:nth-child(3),
  .process li:nth-child(4) { min-height: 125px; margin-top: 0; padding: 0 0 27px; }
  .process span { position: absolute; left: -78px; top: 0; }
  .process strong { margin-top: 0; }
  .process p { max-width: none; margin: 7px 0 0; font-size: .88rem; }
  .people-showcase { grid-template-columns: 1fr; }
  .people-feature { min-height: 390px; }
  .people-directory { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .people-directory a { min-height: 165px; padding: 23px; }
  .people-directory a > span { top: 19px; left: 23px; }
  .leader-profile__grid { display: block; }
  .leader-profile__portrait { min-height: 0; aspect-ratio: 4 / 5; }
  .leader-gallery { min-height: 0; }
  .leader-gallery .photo-carousel__viewport { aspect-ratio: 4 / 5; }
  .leader-profile__content { padding: 34px 26px; }
  .leader-profile__timeline li { grid-template-columns: 122px 1fr; gap: 12px; }
  .leader-profile__statement { margin-top: 25px; padding-left: 21px; }
  .empty-state { padding: 48px 24px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-grid article { min-height: auto; }
  .role-grid h3 { margin-top: 30px; }
  .business-banner__inner { display: block; }
  .business-banner ol { margin-top: 32px; }
  .policy-scope { grid-template-columns: 1fr 1fr; }
  .policy-scope span { min-height: 65px; border-bottom: 1px solid var(--line); }
  .policy-scope span:nth-child(even) { border-right: 0; }
  .policy-scope span:nth-child(3) { border-right: 1px solid var(--line); }
  .policy-scope span:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .agenda-detail { display: block; min-height: 0; }
  .agenda-detail--reverse .agenda-detail__image { order: initial; }
  .agenda-detail__image { min-height: 0; aspect-ratio: 16 / 10; }
  .agenda-detail__content { padding: 36px 27px; }
  .timeline li { grid-template-columns: 92px 1fr; gap: 17px; padding-inline: 0; }
  .agenda-activity { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .agenda-activity > a { margin-top: 5px; }
  .photo-carousel__feature-card { min-height: 0; display: block; }
  .photo-carousel__feature-card figure { min-height: 0; aspect-ratio: 4 / 3; }
  .photo-carousel__feature-copy { min-height: 270px; padding: 30px 27px; }
  .photo-news-reference { align-items: flex-start; flex-direction: column; gap: 13px; padding: 20px 22px; }
  .column-preview { grid-template-columns: 1fr; }
  .column-preview > a,
  .column-preview > a:nth-child(2) { min-height: 165px; grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .column-preview > a:last-child { border-bottom: 0; }
  .content-hub-grid { grid-template-columns: 1fr; }
  .content-hub-grid a,
  .content-hub-grid a:nth-child(2),
  .content-hub-grid a:last-child { grid-column: auto; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .content-hub-grid a:last-child { border-bottom: 0; }
  .board-toolbar { flex-wrap: wrap; }
  .board-toolbar label { width: calc(100% - 70px); margin-left: 0; }
  .board-toolbar > span { width: 100%; }
  .board-table__head,
  .board-table__head--author { grid-template-columns: 64px 1fr 90px; }
  .board-table__head span:nth-child(3) { display: none; }
  .contribution-list article { grid-template-columns: 1fr; padding: 25px 18px; }
  .contribution-list__author { grid-row: auto; grid-column: auto; margin-top: 10px; padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .home-disclosure__inner,
  .integrity-report__inner { display: block; padding-block: 42px; }
  .home-disclosure .button,
  .integrity-report .button { margin-top: 28px; }
  .disclosure-status { display: block; }
  .disclosure-status > div { margin-top: 25px; }
  .public-interest-principles__heading { display: block; }
  .public-interest-principles__heading h3 { margin-top: 16px; }
  .public-interest-principles__grid { grid-template-columns: 1fr; }
  .public-interest-principles__grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .public-interest-principles__grid article:last-child { border-bottom: 0; }
  .organization-data,
  .disclosure-card-grid { grid-template-columns: 1fr; }
  .organization-data > div:nth-child(odd) { border-right: 0; }
  .submission-steps li { grid-template-columns: 45px 1fr; gap: 13px; }
  .submission-steps p { grid-column: 2; }
  .submission-panel { padding: 27px; }
  .submission-rules { grid-template-columns: 1fr; gap: 28px; }
  .submission-rules > p { grid-column: auto; }
  .participation-grid article { min-height: 340px; padding: 27px; }
  .contact-panel__inner { display: block; padding-block: 50px; }
  .contact-panel dl { margin-top: 35px; padding: 25px 0 0; border-top: 1px solid rgba(255, 255, 255, .25); border-left: 0; }
  .site-footer__nav { min-height: 0; flex-wrap: wrap; gap: 12px 24px; padding-block: 24px; }
  .site-footer__top { padding-block: 40px; }
  .footer-contact strong:not(:first-child) { margin-left: 8px; }
  .site-footer__bottom { min-height: 78px; display: block; padding-block: 18px; }
  .site-footer__bottom p + p { margin-top: 4px; }
}

@media (max-width: 480px) {
  .brand__text span { display: none; }
  .home-hero { min-height: 650px; }
  .home-hero h1 { font-size: clamp(1.72rem, 8.4vw, 2.35rem); line-height: 1.2; letter-spacing: -.035em; }
  .home-hero .eyebrow { gap: 7px; font-size: .65rem; }
  .home-hero .eyebrow::before { width: 24px; }
  .home-hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .home-hero__actions .button { padding-inline: 12px; }
  .quick-links__grid { grid-template-columns: 1fr; }
  .quick-links__grid > a,
  .quick-links__grid > a:last-child { min-height: 82px; grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-links__grid > a:last-child { border-bottom: 0; }
  .organization-data > div { grid-template-columns: 1fr; gap: 5px; padding-inline: 5px; }
  .official-guidance__inner { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; padding-block: 18px; }
  .photo-carousel__compact-card { display: block; }
  .home-activity-list > a { min-height: 88px; padding: 14px 20px; }
  .photo-carousel__compact-card figure { min-height: 0; aspect-ratio: 4 / 3; }
  .photo-carousel__compact-card > div { min-height: 120px; padding: 20px; }
  .photo-carousel__controls { justify-content: space-between; padding-inline: 9px; }
  .photo-carousel__dots { gap: 4px; margin-right: 0; }
  .photo-carousel__status { min-width: 36px; }
  .photo-carousel__toggle { min-width: 52px; padding-inline: 4px; }
  .officer-table-wrap { overflow: visible; }
  .officer-table,
  .officer-table tbody { display: block; }
  .officer-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .officer-table tbody tr { display: grid; grid-template-columns: 88px 1fr; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .officer-table tbody tr:last-child { border-bottom: 0; }
  .officer-table th,
  .officer-table td { display: block; padding: 5px 14px; border: 0; }
  .officer-table tbody th { grid-row: 1 / 3; align-self: center; }
  .officer-table tbody td:last-child { grid-column: 2; }
  .submission-rules ul { grid-template-columns: 1fr; }
  .business-banner ol { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; gap: 10px; }
  .timeline time { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
