:root {
  --ink: #151515;
  --navy: #0b1526;
  --navy-soft: #17233a;
  --paper: #f4ead7;
  --paper-soft: #fbf7ef;
  --gold: #d4af6a;
  --gold-deep: #9d7530;
  --wine: #6e2732;
  --line: rgba(21, 21, 21, 0.12);
  --white: #fff;
  --shadow: 0 24px 70px rgba(11, 21, 38, 0.14);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  line-height: 1.68;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(11, 21, 38, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 106, 0.68);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 800;
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 1rem; }
.brand-copy small { color: rgba(255, 255, 255, 0.72); }
.site-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a { padding: 9px 12px; border-radius: 6px; color: rgba(255, 255, 255, 0.84); font-size: 0.94rem; }
.site-nav a:hover, .site-nav .nav-cta { color: var(--white); background: rgba(212, 175, 106, 0.16); }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero img, .sub-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 16s ease-out forwards;
}
.hero-overlay, .sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 21, 38, 0.92), rgba(11, 21, 38, 0.58) 44%, rgba(11, 21, 38, 0.18));
}
.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 110px);
  padding-top: 80px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2, h3 {
  line-height: 1.22;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}
p, a, li, summary, label, button { word-break: keep-all; overflow-wrap: break-word; }
h1 { font-size: clamp(2.3rem, 5.4vw, 5.4rem); font-weight: 800; }
.hero-content p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  color: rgba(255, 255, 255, 0.84);
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button-row.center { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: #1f1608; }
.button.secondary { border-color: rgba(255, 255, 255, 0.35); color: var(--white); background: rgba(255, 255, 255, 0.08); }

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
}
.scope-card {
  min-height: 190px;
  padding: 34px clamp(20px, 3vw, 42px);
  color: var(--white);
  background: var(--navy-soft);
}
.scope-card span {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--gold);
}
.scope-card h2 { font-size: 1.35rem; }
.scope-card p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.72); }

.content-band, .contact-section {
  padding: clamp(70px, 9vw, 122px) clamp(20px, 5vw, 72px);
}
.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
.section-heading p:not(.eyebrow) { color: #5d5a52; margin: 14px 0 0; }

.priority-grid, .region-grid, .team-grid, .topic-grid, .focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.priority-card, .region-card, .topic-card, .focus-card, .team-card, .aside-box, .article-section, .policy-content section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(11, 21, 38, 0.06);
}
.priority-card, .region-card, .topic-card, .focus-card { padding: 28px; }
.priority-card span, .region-card span {
  color: var(--gold-deep);
  font-weight: 800;
  font-size: 0.88rem;
}
.priority-card h3, .region-card h3, .topic-card h3, .focus-card h3 { margin-top: 12px; font-size: 1.24rem; }
.priority-card p, .region-card p, .topic-card p, .focus-card p { color: #5d5a52; margin-bottom: 0; }
.priority-card a:hover, .region-card a:hover { color: var(--wine); }

.anchor-band {
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}
.anchor-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.keyword-anchor, .related-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 106, 0.36);
  border-radius: 6px;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
}
.keyword-anchor:hover, .related-link:hover { background: rgba(212, 175, 106, 0.16); }

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.process-item {
  min-height: 178px;
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.62);
}
.process-item span { color: var(--gold-deep); font-weight: 900; }
.process-item h3 { margin-top: 12px; font-size: 1.06rem; }
.process-item p { margin: 10px 0 0; color: #5d5a52; font-size: 0.94rem; }

.team-band { background: #eee3cf; }
.team-card {
  overflow: hidden;
  background: var(--white);
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.team-card div { padding: 22px; }
.team-card p { color: #5d5a52; margin-bottom: 0; }

.contact-section {
  background: var(--navy);
  color: var(--white);
}
.contact-section .section-heading p:not(.eyebrow) { color: rgba(255, 255, 255, 0.72); }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(920px, 100%);
  margin: 0 auto;
}
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: rgba(255, 255, 255, 0.86); }
.contact-form .wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; min-height: 132px; }
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}
.consent input { width: 18px; margin-top: 4px; }
.consent a { color: var(--gold); text-decoration: underline; }

.sub-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.sub-hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 72px;
}
.sub-hero h1 { font-size: clamp(2.2rem, 4.4vw, 4.7rem); }
.sub-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}
.breadcrumb span::before { content: "/"; margin-right: 10px; color: var(--gold); }

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 64px auto;
}
.article-main { display: grid; gap: 22px; }
.article-section { padding: clamp(26px, 4vw, 42px); }
.article-section h2 { font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.article-section p { color: #4f4b43; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.check-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  border-radius: 6px;
}
.article-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 16px;
}
.aside-box { padding: 24px; }
.aside-box h2 { font-size: 1.25rem; }
.aside-box p { color: #5d5a52; }
.related-links { display: flex; flex-wrap: wrap; gap: 8px; color: var(--navy); }

.faq-list { display: grid; gap: 10px; margin-top: 20px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}
.faq-item p { margin: 0; padding: 0 20px 18px; }

.plain-page {
  padding-top: 92px;
  min-height: 76vh;
}
.plain-hero {
  padding: clamp(76px, 11vw, 132px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
  text-align: center;
}
.plain-hero h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
.plain-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
}
.policy-content {
  display: grid;
  gap: 16px;
  width: min(920px, calc(100% - 40px));
  margin: 56px auto 86px;
}
.policy-content section { padding: 28px; }
.policy-content h2 { font-size: 1.28rem; }
.policy-content p { color: #514d45; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #070d18;
}
.site-footer strong { color: var(--white); }
.site-footer p { margin: 8px 0 0; max-width: 640px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; align-content: start; justify-content: flex-end; }
.site-footer a { color: rgba(255, 255, 255, 0.86); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes heroZoom { to { transform: scale(1.08); } }

@media (max-width: 960px) {
  .site-header { position: absolute; align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .hero { min-height: 860px; align-items: end; }
  .hero-content { margin: 0 auto; padding: 180px 0 70px; }
  .hero-overlay, .sub-hero-overlay { background: linear-gradient(180deg, rgba(11, 21, 38, 0.62), rgba(11, 21, 38, 0.94)); }
  .scope-grid, .priority-grid, .region-grid, .team-grid, .topic-grid, .focus-grid, .process-list, .article-shell { grid-template-columns: 1fr 1fr; }
  .article-shell { width: min(100% - 32px, 760px); }
  .article-aside { position: static; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .brand-copy small { display: none; }
  .site-nav a { padding: 7px 9px; font-size: 0.86rem; }
  .hero { min-height: 780px; }
  .scope-grid, .priority-grid, .region-grid, .team-grid, .topic-grid, .focus-grid, .process-list, .article-shell, .check-list, .contact-form { grid-template-columns: 1fr; }
  .content-band, .contact-section { padding: 62px 16px; }
  .sub-hero { min-height: 540px; }
  .sub-hero-content { width: calc(100% - 32px); padding-bottom: 54px; }
  .article-section, .priority-card, .region-card, .topic-card, .focus-card, .aside-box { padding: 22px; }
  .button { width: 100%; }
  .site-footer { display: grid; }
  .site-footer nav { justify-content: flex-start; }
}
