@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

@font-face {
  font-family: 'NanumSquareNeo';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-bBd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #f3efe6;
  --bg-strong: #f7d7a8;
  --surface: rgba(255, 250, 242, 0.78);
  --surface-strong: #fff9f0;
  --ink: #1c1f1a;
  --muted: #55574d;
  --line: rgba(28, 31, 26, 0.08);
  --coral: #FF6B6B;
  --teal: #2a9d8f;
  --gold: #FEC006;
  --forest: #45B7D1;
  --shadow: 0 24px 80px rgba(67, 52, 33, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Pretendard', "Noto Sans KR", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 107, 0.12), transparent 24rem),
    radial-gradient(circle at 85% 15%, rgba(42, 157, 143, 0.14), transparent 20rem),
    linear-gradient(180deg, #fff7ec 0%, var(--bg) 42%, #ece6d9 100%);
}

body.page-home {
  background:
    linear-gradient(180deg, #f5f5f7 0%, #f6f6f8 48%, #f3f3f5 100%);
}

body.page-sub {
  background:
    linear-gradient(180deg, #f5f5f7 0%, #f6f6f8 48%, #f3f3f5 100%);
}

body.page-home::before,
body.page-home::after,
body.page-sub::before,
body.page-sub::after {
  display: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(18px);
  z-index: -1;
  opacity: 0.4;
}

body::before {
  top: -8rem;
  right: -6rem;
  background: rgba(254, 192, 6, 0.3);
}

body::after {
  left: -8rem;
  bottom: 10rem;
  background: rgba(69, 183, 209, 0.18);
}

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

.page-shell {
  width: min(1440px, calc(100% - 3rem));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.page-home .page-shell {
  width: min(1360px, calc(100% - 3rem));
}

.page-sub .page-shell {
  width: min(1360px, calc(100% - 3rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-home .brand-mark {
  width: 2rem;
  height: 2rem;
}

.page-sub .brand-mark {
  width: 2rem;
  height: 2rem;
}

.page-home .brand-text {
  font-size: 1rem;
  font-weight: 800;
}

.page-sub .brand-text {
  font-size: 1rem;
  font-weight: 800;
}

.page-home .site-nav {
  gap: 0.5rem;
}

.page-sub .site-nav {
  gap: 0.5rem;
}

.page-home .site-nav a {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  font-size: 1rem;
  color: #4e5157;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.page-sub .site-nav a {
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  font-size: 1rem;
  color: #4e5157;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.page-home .site-nav a:hover,
.page-home .site-nav a:focus-visible {
  background: rgba(69, 183, 209, 0.08);
  color: #31354a;
}

.page-sub .site-nav a:hover,
.page-sub .site-nav a:focus-visible {
  background: rgba(69, 183, 209, 0.08);
  color: #31354a;
}

.page-home .site-nav a::after {
  display: none;
}

.page-sub .site-nav a::after {
  display: none;
}

.page-home .site-nav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, #45B7D1, #2a9d8f);
  box-shadow: 0 8px 18px rgba(69, 183, 209, 0.24);
}

.page-sub .site-nav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, #45B7D1, #2a9d8f);
  box-shadow: 0 8px 18px rgba(69, 183, 209, 0.18);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-btn {
  min-width: 2.4rem;
  height: 2rem;
  padding: 0 0.6rem;
  border: 1px solid rgba(69, 183, 209, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #4e5157;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, #45B7D1, #2a9d8f);
  border-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--ink);
  font-weight: 700;
}

.section {
  padding: 5.5rem 0 0;
}

.compact-top {
  padding-top: 1.4rem;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
  min-height: calc(100vh - 6rem);
  padding-top: 4.5rem;
}

.home-banner {
  padding-top: 2rem;
}

.home-banner-visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 1.45rem;
  background: #d7dbe7;
  box-shadow: 0 16px 32px rgba(77, 82, 114, 0.1);
}

.home-banner-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(22, 24, 46, 0.62), rgba(42, 157, 143, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.22));
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide.is-active {
  opacity: 1;
}

.home-banner-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  max-width: 540px;
  padding: 2.8rem 3rem;
  color: #fff;
}

.home-banner-copy::before {
  content: "";
  position: absolute;
  inset: auto auto 2rem 2rem;
  width: min(100%, 31rem);
  height: calc(100% - 4rem);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(18, 20, 36, 0.2), rgba(18, 20, 36, 0.46)),
    rgba(20, 22, 40, 0.16);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.light-eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.home-banner-copy .hero-subtitle,
.home-banner-copy .hero-description {
  color: rgba(255, 255, 255, 0.88);
}

.page-home h1 {
  font-size: clamp(2.45rem, 5vw, 3.65rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.page-home .hero-subtitle {
  max-width: 36rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}

.page-home .hero-description {
  max-width: 30rem;
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}

.page-home .button {
  min-height: 2.9rem;
  padding: 0.72rem 1.15rem;
  font-size: 1rem;
}

.hero-pagination {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 1.8rem;
  background: #ffffff;
}

.button-soft {
  color: #fff;
  background: linear-gradient(135deg, #7f89ff, #6b63f0);
  border: 0;
}

.home-overview {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
  padding-top: 2.1rem;
}

.feature-intro {
  padding: 1rem 0;
}

.feature-intro h2 {
  font-family: 'NanumSquareNeo', "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.feature-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.feature-card {
  position: relative;
  min-height: 188px;
  padding: 1.45rem 1.35rem;
  border-radius: 1.35rem;
  border: 0;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(80, 88, 122, 0.09);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
  cursor: pointer;
}

.feature-card .mini-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

.feature-card:not(.feature-card-accent):hover {
  background: linear-gradient(135deg, #45B7D1, #2a9d8f);
  color: #fff;
  box-shadow: 0 12px 28px rgba(42, 157, 143, 0.26);
}

.feature-card:not(.feature-card-accent):hover h3,
.feature-card:not(.feature-card-accent):hover p,
.feature-card:not(.feature-card-accent):hover .mini-link {
  color: #fff;
}

.feature-card:not(.feature-card-accent):hover .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.feature-card-accent {
  background: linear-gradient(135deg, #45B7D1, #2a9d8f);
  color: #fff;
}

.feature-card-accent p,
.feature-card-accent .mini-link,
.feature-card-accent h3 {
  color: #fff;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.9rem;
  margin-bottom: 0.9rem;
  color: #45B7D1;
  background: rgba(69, 183, 209, 0.12);
}

.feature-card-accent .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.feature-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
}

.feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.promo-banner-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.7rem;
  border-radius: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #5a7df6, #764ce1);
  box-shadow: 0 14px 28px rgba(91, 96, 186, 0.14);
}

.promo-banner-card h2 {
  font-family: 'NanumSquareNeo', "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.promo-link-strong {
  background: rgba(255, 255, 255, 0.22);
}

.promo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 330px;
}

.promo-stats div {
  text-align: center;
}

.promo-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: 'NanumSquareNeo', "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.promo-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.home-boards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  padding-bottom: 1rem;
}

.board-column {
  padding-top: 0.4rem;
}

.board-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.board-heading h3 {
  font-size: 1rem;
}

.board-heading a {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(28, 31, 26, 0.08);
  color: #3c4658;
  font-size: 1rem;
}

.board-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(28, 31, 26, 0.08);
}

.board-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(28, 31, 26, 0.06);
}

.board-list a {
  color: #2f3540;
  font-size: 1rem;
}

.board-list span {
  color: #8a8f98;
  font-size: 1rem;
}

.hero-copy,
.hero-panel,
.story-card,
.goal-card,
.audience-panel,
.program-card,
.schedule-frame,
.news-card,
.gallery-tile,
.contact-card,
.map-placeholder,
.related-links a,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 1.25rem auto auto 1.25rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(254, 192, 6, 0.18);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(42, 157, 143, 0.1), rgba(255, 250, 242, 0.9)),
    var(--surface);
}

.inner-hero {
  padding-top: 4rem;
}

.inner-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
}

.inner-summary {
  max-width: 46rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--forest);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.section-heading h2,
.site-footer h2 {
  font-family: 'NanumSquareNeo', "Noto Sans KR", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.hero-description {
  max-width: 44rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--coral), #e05050);
}

.button-secondary {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--teal), #1f7a70);
}

.button-tertiary {
  border: 1px solid rgba(28, 31, 26, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.hero-badge {
  align-self: flex-start;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff8f1;
  background: linear-gradient(135deg, var(--forest), #2e8fa3);
}

.focus-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-stats article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(28, 31, 26, 0.06);
}

.hero-stats strong,
.program-index,
.goal-card span,
.news-label {
  display: block;
  font-family: 'NanumSquareNeo', "Noto Sans KR", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-stats span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.section-note {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.2rem;
}

.story-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  line-height: 1.95;
}

.goal-stack {
  display: grid;
  gap: 1rem;
}

.goal-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.goal-card span {
  font-size: 2rem;
  margin-bottom: 0.45rem;
}

.goal-card p,
.program-card p,
.news-card p,
.contact-card p,
.map-placeholder p,
.related-links span,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.accent-coral {
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.14), rgba(255, 250, 242, 0.82));
}

.accent-teal {
  background: linear-gradient(180deg, rgba(42, 157, 143, 0.14), rgba(255, 250, 242, 0.82));
}

.accent-gold {
  background: linear-gradient(180deg, rgba(254, 192, 6, 0.18), rgba(255, 250, 242, 0.82));
}

.audience-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.audience-panel ul,
.program-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.audience-panel dl {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
}

.audience-panel dt {
  font-weight: 700;
}

.audience-panel dd {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.program-grid,
.news-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.program-card,
.news-card,
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.program-index {
  font-size: 2.1rem;
  color: var(--coral);
}

.schedule-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.schedule-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(90deg, rgba(42, 157, 143, 0.12), rgba(254, 192, 6, 0.14));
  border-bottom: 1px solid var(--line);
}

.mini-link {
  font-weight: 700;
  color: var(--teal);
}

.schedule-viewer {
  padding: 1.2rem;
}

.schedule-loading,
.schedule-error {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--muted);
}

.pdf-page {
  margin: 0 auto 1rem;
  padding: 0.8rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.pdf-page canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.news-label {
  margin-bottom: 0.5rem;
  color: var(--forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 220px;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  font-family: 'NanumSquareNeo', "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff9f1;
}

.tile-a {
  grid-row: 1 / span 2;
}

.tile-b {}

.tile-c {}

.tile-d {
  grid-column: 2 / span 2;
}

.contact-section .contact-grid {
  margin-bottom: 1rem;
}

.contact-card a {
  font-weight: 700;
  color: var(--teal);
}

.map-placeholder {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(254, 192, 6, 0.12)),
    var(--surface);
}

.map-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.map-embed-shell {
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.related-links a {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.related-links strong {
  display: block;
  margin-bottom: 0.45rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  margin-top: 0;
  padding: 1.4rem 2rem 0.9rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(65, 69, 79, 0.96), rgba(43, 45, 53, 0.98));
  box-shadow: none;
  backdrop-filter: none;
  color: #f1f2f6;
}

.copyright {
  width: 100%;
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(241, 242, 246, 0.58);
  font-size: 1rem;
}

.site-footer > div {
  min-width: 0;
  text-align: center;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer p,
.site-footer strong,
.footer-links a {
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
  color: rgba(241, 242, 246, 0.72);
}

.site-footer strong {
  font-weight: 500;
  color: #ffffff;
}

.site-footer > div > p:first-child {
  display: inline;
  margin-right: 0.3rem;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(241, 242, 246, 0.72);
}

.site-footer > div:first-child {
  width: 100%;
  margin-bottom: 0.15rem;
}

.site-footer > div:first-child p {
  display: block;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.9rem;
}

.footer-links a {
  color: #c7d4ff;
}

.page-sub .section {
  padding-top: 3rem;
}

.page-sub .compact-top {
  padding-top: 1rem;
}

.page-sub .inner-hero {
  position: relative;
  overflow: hidden;
  margin-top: 1.6rem;
  padding: 2.1rem 2.2rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(135deg, rgba(69, 183, 209, 0.12), rgba(42, 157, 143, 0.06)),
    #ffffff;
  box-shadow: 0 14px 32px rgba(77, 82, 114, 0.08);
}

.page-sub .inner-hero::before {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(69, 183, 209, 0.18), transparent 66%);
}

.page-sub .inner-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
}

.page-sub .inner-summary {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-sub .section-heading h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.page-sub .story-card,
.page-sub .goal-card,
.page-sub .audience-panel,
.page-sub .program-card,
.page-sub .schedule-frame,
.page-sub .news-card,
.page-sub .gallery-tile,
.page-sub .contact-card,
.page-sub .map-placeholder,
.page-sub .related-links a {
  border: 0;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(80, 88, 122, 0.08);
}

.page-sub .story-card,
.page-sub .goal-card,
.page-sub .audience-panel,
.page-sub .program-card,
.page-sub .news-card,
.page-sub .contact-card,
.page-sub .map-placeholder,
.page-sub .related-links a,
.page-sub .schedule-frame {
  border-radius: 1.3rem;
}

.page-sub .story-card {
  font-size: 1rem;
  line-height: 1.9;
}

.page-sub .program-card,
.page-sub .news-card,
.page-sub .contact-card,
.page-sub .goal-card {
  padding: 1.35rem;
}

.page-sub .audience-panel {
  padding: 1.4rem;
}

.page-sub .map-placeholder {
  background:
    linear-gradient(135deg, rgba(69, 183, 209, 0.06), rgba(254, 192, 6, 0.08)),
    #ffffff;
}

.page-sub .page-shell {
  padding-bottom: 4rem;
}

.sub-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.sub-visual-card,
.sub-summary-card {
  overflow: hidden;
  border-radius: 1.3rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(80, 88, 122, 0.08);
}

.sub-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.sub-summary-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #5a67d8;
  background: rgba(69, 183, 209, 0.12);
}

.sub-summary-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.sub-summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.summary-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  margin-bottom: 0.9rem;
  color: #5b6ee8;
  background: rgba(69, 183, 209, 0.12);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
}

.small-icon {
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.7rem;
}

.program-thumb {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #eef1fb;
}

@media (max-width: 1024px) {
  .site-header,
  .hero,
  .home-overview,
  .about-grid,
  .audience-panel,
  .program-grid,
  .news-grid,
  .contact-grid,
  .map-placeholder,
  .related-links,
  .home-boards {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .home-boards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-stats {
    min-width: 0;
  }

  .site-header {
    border-radius: 1.6rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .tile-a,
  .tile-d {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1200px);
  }

  .site-header {
    position: static;
    margin-top: 0.5rem;
    padding: 1rem;
  }

  .page-sub .inner-hero {
    padding: 1.6rem 1.4rem;
    border-radius: 1.2rem;
  }

  .sub-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .promo-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-stats {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-banner-visual,
  .home-banner-copy {
    min-height: 420px;
  }

  .home-banner-copy {
    padding: 2rem;
  }

  .home-banner-copy::before {
    inset: auto 1rem 1rem 1rem;
    width: auto;
    height: calc(100% - 2rem);
  }

  .hero-copy,
  .hero-panel,
  .story-card,
  .goal-card,
  .audience-panel,
  .program-card,
  .news-card,
  .contact-card,
  .related-links a,
  .site-footer,
  .schedule-frame {
    border-radius: 1.5rem;
  }

  .site-footer {
    padding: 1.5rem 0 0.9rem;
  }

  .site-footer > div:first-child {
    margin-bottom: 0.2rem;
  }

  .section {
    padding-top: 4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }

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

  .cta-group {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.lang-select {
  display: none;
  height: 2rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(69, 183, 209, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #4e5157;
  font-size: 1rem;
  font-family: 'Pretendard', "Noto Sans KR", sans-serif;
  cursor: pointer;
  outline: none;
}

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

  .lang-btn {
    display: none;
  }

  .lang-select {
    display: inline-block;
  }
}
