/* ============================================================
   충북지적발달장애인복지협회 청주시지부 홈페이지
   Color: 로고 파란색 + 빨간색 활용
   ============================================================ */

:root {
  /* Brand colors - taken from logo */
  --blue-900: #0d2d5e;
  --blue-800: #133b7a;
  --blue-700: #1a4a99;
  --blue-600: #2360bd;
  --blue-500: #3d7ad2;
  --blue-100: #dae7f7;
  --blue-50:  #eef4fc;

  --red-700: #a92220;
  --red-600: #c72d2b;
  --red-500: #d93a3a;
  --red-100: #fbdcdc;
  --red-50:  #fdefef;

  --ink-900: #111827;
  --ink-800: #1f2937;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --ink-500: #6b7280;
  --ink-400: #9ca3af;
  --ink-300: #d1d5db;
  --ink-200: #e5e7eb;
  --ink-100: #f3f4f6;
  --ink-50:  #f9fafb;
  --white:   #ffffff;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 4px 12px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.05);
  --shadow-lg: 0 20px 40px rgba(15,23,42,0.08);

  --wrap: 1240px;
  --radius: 10px;
  --radius-lg: 16px;

  --font: 'Noto Sans KR', -apple-system, 'Malgun Gothic', sans-serif;
  --serif: 'Nanum Myeongjo', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink-800);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.tx-blue { color: var(--blue-700); }
.tx-red  { color: var(--red-600); }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.top-util {
  background: var(--blue-900);
  color: #cbd5e1;
  font-size: 12.5px;
}
.top-util .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.top-util .left { display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.top-util .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 3px rgba(217,58,58,0.25);
}
.top-util .right { display: flex; align-items: center; gap: 12px; }
.top-util a { transition: color .15s; }
.top-util a:hover { color: #fff; }
.top-util .sep { color: #405780; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--ink-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; }
.brand-text .brand-org {
  font-size: 12.5px;
  color: var(--ink-500);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.brand-text .brand-branch {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.brand-text .branch-en {
  font-size: 11px;
  color: var(--ink-400);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.gnb > ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.gnb > ul > li {
  position: relative;
}
.gnb > ul > li > a {
  display: block;
  padding: 34px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: -0.02em;
  position: relative;
}
.gnb > ul > li > a:hover { color: var(--blue-700); }
.gnb > ul > li > a::after {
  content: '';
  position: absolute;
  left: 22px; right: 22px;
  bottom: 0;
  height: 3px;
  background: var(--blue-700);
  transform: scaleX(0);
  transition: transform .25s;
}
.gnb > ul > li:hover > a::after { transform: scaleX(1); }

.gnb .submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  border: 1px solid var(--ink-200);
  border-top: 2px solid var(--blue-700);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s;
  box-shadow: var(--shadow-lg);
  z-index: 60;
}
.gnb > ul > li:hover .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.gnb .submenu li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--ink-700);
  letter-spacing: -0.01em;
  transition: all .15s;
  white-space: nowrap;
}
.gnb .submenu li a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  padding-left: 24px;
}

.mobile-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink-800);
  margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f4f7fc 0%, #eaf1fa 100%);
  overflow: hidden;
  padding: 84px 0 100px;
  border-bottom: 1px solid var(--ink-200);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.shape-blue {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue-500) 0%, transparent 70%);
  top: -100px; right: -60px;
}
.shape-red {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--red-500) 0%, transparent 70%);
  bottom: -60px; left: 5%;
  opacity: 0.12;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(19,59,122,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19,59,122,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-title {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--ink-900);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-desc {
  font-size: 17px;
  color: var(--ink-600);
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all .18s;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn.sm { padding: 9px 16px; font-size: 13.5px; }
.btn.lg { padding: 17px 34px; font-size: 16px; }
.btn-primary {
  background: var(--blue-700);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-800); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: #fff;
  color: var(--blue-700);
  border-color: var(--blue-200, var(--blue-100));
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-500); }
.btn-ghost {
  background: var(--ink-100);
  color: var(--ink-700);
}
.btn-ghost:hover { background: var(--ink-200); }

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-cards .stat-card:first-child { grid-column: span 2; }
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  border: 1px solid var(--ink-200);
  border-top: 3px solid var(--blue-700);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat-card.red { border-top-color: var(--red-500); }
.stat-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--blue-800);
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--serif);
}
.stat-card.red .stat-num { color: var(--red-600); }
.stat-num span { font-size: 20px; margin-left: 2px; }
.stat-lb {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-800);
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.stat-sub {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 3px;
}

/* ============================================================
   QUICK MENU
   ============================================================ */
.quick-menu {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--ink-100);
}
.quick-menu .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.qm-item {
  padding: 26px 20px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .2s;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.qm-item::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--blue-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.qm-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-500);
}
.qm-item:hover::before { transform: scaleX(1); }
.qm-item:nth-child(4)::before,
.qm-item:nth-child(5)::before { background: var(--red-500); }
.qm-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50);
  border-radius: 12px;
}
.qm-item:nth-child(4) .qm-icon,
.qm-item:nth-child(5) .qm-icon {
  color: var(--red-600);
  background: var(--red-50);
}
.qm-icon svg { width: 24px; height: 24px; }
.qm-lb {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.qm-sub {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 4px;
}

/* ============================================================
   TWO COLUMN (notice + biz)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 60px 24px;
}
.panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-200);
}
.panel-dark {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.panel-dark::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,58,58,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink-900);
  margin-bottom: 8px;
}
.panel-dark .panel-head { border-bottom-color: rgba(255,255,255,0.3); }
.panel-head h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.more { font-size: 13px; color: var(--ink-500); font-weight: 500; }
.more:hover { color: var(--blue-700); }
.more.light { color: rgba(255,255,255,0.7); }
.more.light:hover { color: #fff; }

.notice-list {
  list-style: none;
}
.notice-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 14.5px;
  transition: all .15s;
  cursor: pointer;
}
.notice-list li:last-child { border: 0; }
.notice-list li:hover { padding-left: 6px; color: var(--blue-700); }
.notice-list .badge {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.notice-list .badge.badge-red {
  background: var(--red-50);
  color: var(--red-600);
}
.notice-list .tt { flex: 1; letter-spacing: -0.02em; }
.notice-list .dt { color: var(--ink-400); font-size: 13px; flex-shrink: 0; }

.biz-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; position: relative; z-index: 1; }
.biz-mini-item {
  padding: 20px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  transition: all .2s;
}
.biz-mini-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.bm-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--red-500);
  letter-spacing: -0.02em;
}
.bm-tt {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.bm-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink-50);
  padding: 60px 0;
  border-top: 1px solid var(--ink-200);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.cta-eyebrow {
  font-size: 13px;
  color: var(--red-600);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.cta-left h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink-900);
}
.cta-right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-box {
  background: #fff;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blue-700);
}
.cta-box.red::before { background: var(--red-500); }
.cb-tt {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cb-desc { font-size: 13px; color: var(--ink-500); }
.cb-arrow {
  position: absolute;
  right: 20px; top: 26px;
  font-size: 22px;
  color: var(--blue-700);
  font-weight: 300;
  transition: transform .2s;
}
.cta-box.red .cb-arrow { color: var(--red-500); }
.cta-box:hover .cb-arrow { transform: translateX(4px); }

/* ============================================================
   SUB PAGE - HERO
   ============================================================ */
.sub-hero {
  position: relative;
  padding: 70px 0 60px;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: #fff;
  overflow: hidden;
}
.sub-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,58,58,0.25) 0%, transparent 70%);
}
.sub-hero[data-hero="biz"] { background: linear-gradient(135deg, #133b7a 0%, #1a4a99 100%); }
.sub-hero[data-hero="center"] { background: linear-gradient(135deg, var(--red-700) 0%, var(--red-600) 100%); }
.sub-hero[data-hero="center"]::after { background: rgba(19,59,122,0.35); }
.sub-hero[data-hero="board"] { background: linear-gradient(135deg, #0d2d5e 0%, #133b7a 100%); }
.sub-hero[data-hero="inquiry"] { background: linear-gradient(135deg, #133b7a 0%, var(--red-700) 100%); }
.sub-hero[data-hero="support"] { background: linear-gradient(135deg, var(--red-600) 0%, #7f1614 100%); }
.sub-hero[data-hero="resource"] { background: linear-gradient(135deg, #1a4a99 0%, #0d2d5e 100%); }

.sub-hero .wrap { position: relative; }
.sh-eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.sub-hero h1 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.sh-breadcrumb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.sh-breadcrumb span { margin: 0 6px; }
.sh-breadcrumb b { color: #fff; }

/* ============================================================
   SUB BODY LAYOUT
   ============================================================ */
.sub-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 60px 24px 100px;
}
.sub-lnb {
  position: sticky;
  top: 110px;
  align-self: start;
}
.lnb-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink-900);
  margin-bottom: 8px;
}
.sub-lnb ul { list-style: none; }
.sub-lnb ul li a {
  display: block;
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--ink-600);
  border-bottom: 1px solid var(--ink-100);
  transition: all .15s;
  letter-spacing: -0.01em;
}
.sub-lnb ul li a:hover { color: var(--blue-700); padding-left: 6px; }
.sub-lnb ul li a.active {
  color: var(--blue-700);
  font-weight: 700;
  padding-left: 8px;
  position: relative;
}
.sub-lnb ul li a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 16px;
  background: var(--blue-700);
}

.sub-content { min-width: 0; }
.page-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-200);
}
.page-title-row h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}
.title-deco {
  width: 40px; height: 3px;
  background: linear-gradient(to right, var(--blue-700), var(--red-500));
}
.lead {
  font-size: 16px;
  color: var(--ink-600);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.lead-lg {
  font-size: 22px;
  color: var(--ink-800);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.sub-h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin: 40px 0 20px;
  padding-left: 12px;
  border-left: 4px solid var(--blue-700);
}

/* ============================================================
   인사말
   ============================================================ */
.greeting-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  align-items: start;
}
.photo-frame {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 200px;
}
.photo-frame::after {
  content: '';
  position: absolute;
  left: -8px; top: -8px;
  width: 100%; height: 100%;
  border: 2px solid var(--blue-700);
  z-index: -1;
  border-radius: 8px;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}
.photo-caption { margin-top: 20px; text-align: center; }
.pc-role { font-size: 13px; color: var(--ink-500); letter-spacing: -0.01em; }
.pc-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.pc-sign {
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.greet-text p {
  margin-bottom: 16px;
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.9;
  letter-spacing: -0.02em;
}
.greet-text b { color: var(--blue-700); font-weight: 700; }
.quote-lead {
  font-family: var(--serif) !important;
  font-size: 26px !important;
  color: var(--ink-900) !important;
  font-weight: 500;
  line-height: 1.5 !important;
  padding-left: 20px;
  border-left: 3px solid var(--red-500);
  margin-bottom: 30px !important;
}
.quote-lead b { color: var(--red-600) !important; font-weight: 800; }
.sign-line {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-200);
  text-align: right;
  font-size: 15px;
  color: var(--ink-600);
  letter-spacing: -0.01em;
  line-height: 1.9;
}
.sign-line b {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-900);
  letter-spacing: 0.15em;
  margin-left: 8px;
}

/* ============================================================
   설립목적
   ============================================================ */
.purpose-hero {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-100);
  margin-bottom: 40px;
  text-align: center;
}
.ph-mark {
  position: absolute;
  top: 20px; left: 40px;
  font-family: var(--serif);
  font-size: 90px;
  color: var(--blue-700);
  opacity: 0.15;
  line-height: 1;
}
.purpose-hero p {
  font-size: 20px;
  line-height: 2;
  color: var(--ink-800);
  letter-spacing: -0.02em;
  position: relative;
  font-weight: 400;
}
.purpose-hero b { color: var(--blue-700); font-weight: 700; }
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  padding: 28px 20px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .2s;
}
.value-card:hover { border-color: var(--blue-500); transform: translateY(-3px); box-shadow: var(--shadow); }
.vc-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.vc-icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  padding: 20px 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 60px; top: 0; bottom: 0;
  width: 2px;
  background: var(--ink-200);
}
.tl-decade {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}
.tl-decade-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.03em;
  text-align: right;
  position: relative;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.tl-decade-num::after {
  content: '';
  position: absolute;
  right: -28px; top: 12px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-700);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-700);
}
.tl-decade-num span {
  font-size: 20px;
  color: var(--ink-300);
  margin-left: 4px;
}
.tl-events { padding-left: 20px; }
.tl-event {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-100);
}
.tl-event:last-child { border-bottom: none; }
.tl-event .tl-date {
  min-width: 100px;
  font-size: 13.5px;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tl-event .tl-desc {
  font-size: 15px;
  color: var(--ink-700);
  letter-spacing: -0.02em;
}
.tl-event .tl-desc b { color: var(--ink-900); font-weight: 700; }
.tl-event.highlight {
  background: var(--red-50);
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--red-100);
  border-bottom: 1px solid var(--red-100);
}
.tl-event.highlight .tl-desc b { color: var(--red-600); }

.timeline.sm .tl-decade-num { font-size: 26px; }
.timeline.sm { padding-left: 0; }

/* ============================================================
   ORG CHART
   ============================================================ */
.org-chart {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 30px;
}
.org-tier {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}
.org-tier.row-2 { max-width: 700px; margin: 0 auto; }
.org-box {
  padding: 18px 30px;
  background: #fff;
  border: 2px solid var(--blue-700);
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
  min-width: 180px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}
.org-box.top {
  background: var(--blue-700);
  color: #fff;
  padding: 22px 40px;
  font-size: 15px;
}
.org-box.mid {
  background: var(--blue-50);
  border-color: var(--blue-500);
  color: var(--blue-800);
}
.org-box.side {
  background: #fff;
  border-color: var(--red-500);
  color: var(--red-600);
  padding: 14px 22px;
  min-width: 140px;
  font-size: 14px;
}
.org-box.branch {
  background: linear-gradient(135deg, #fff 0%, var(--red-50) 100%);
  border-color: var(--red-500);
  padding: 22px 34px;
  min-width: 220px;
}
.ob-lb {
  font-size: 11px;
  color: var(--red-600);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.ob-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}
.ob-sub { font-size: 12px; color: var(--ink-500); margin-top: 4px; }

.org-connector.v {
  width: 2px;
  height: 30px;
  background: var(--ink-300);
  margin: 0 auto;
}
.org-connector.v.short { height: 20px; }
.org-connector-h {
  flex: 1;
  height: 2px;
  background: var(--ink-300);
  max-width: 200px;
}

.org-tier.teams {
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}
.team {
  background: var(--blue-50);
  padding: 20px 22px;
  border-radius: 10px;
  min-width: 220px;
  border: 1px solid var(--blue-100);
}
.team-head {
  font-weight: 800;
  color: var(--blue-800);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--blue-100);
  letter-spacing: -0.02em;
  text-align: center;
}
.team-member {
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink-700);
  text-align: center;
  letter-spacing: -0.01em;
}
.team-member:last-child { margin-bottom: 0; }

.org-note {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 16px 20px;
  background: var(--blue-50);
  border-radius: 8px;
  border-left: 3px solid var(--blue-500);
  margin-bottom: 30px;
}
.org-note .note-dot {
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue-700);
  flex-shrink: 0;
}
.org-note p { font-size: 14px; color: var(--ink-700); letter-spacing: -0.01em; }
.org-note b { color: var(--blue-800); }

.staff-table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--ink-900);
}
.staff-table th, .staff-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--ink-200);
  font-size: 15px;
}
.staff-table thead th {
  background: var(--blue-50);
  color: var(--blue-800);
  font-weight: 700;
}
.staff-table tbody th {
  background: var(--ink-50);
  font-weight: 600;
  color: var(--ink-700);
}

/* ============================================================
   MAP / CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}
.map-frame {
  position: relative;
  aspect-ratio: 4/3;
  background: #f0eee6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  background-image:
    linear-gradient(45deg, transparent 48%, #e2ded1 48%, #e2ded1 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, #e2ded1 48%, #e2ded1 52%, transparent 52%);
  background-size: 30px 30px;
}
.map-roads { position: absolute; inset: 0; }
.road {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 0 1px #d4cfbf;
}
.road.r1 { top: 30%; left: 0; right: 0; height: 12px; }
.road.r2 { top: 0; bottom: 0; left: 55%; width: 12px; }
.road.r3 { top: 70%; left: 0; right: 40%; height: 8px; }
.road.r4 { top: 0; bottom: 0; left: 20%; width: 8px; }
.river {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 18%;
  background: linear-gradient(to bottom, #b6d4e8, #a5c9e0);
  opacity: 0.7;
}
.map-pin {
  position: absolute;
  left: 42%;
  top: 48%;
  transform: translate(-50%, -100%);
  z-index: 5;
}
.pin-marker {
  width: 44px; height: 44px;
  color: var(--red-600);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
  animation: pinBounce 1.6s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.pin-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-600);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: -6px;
}
.map-label {
  position: absolute;
  font-size: 11.5px;
  color: var(--ink-600);
  background: rgba(255,255,255,0.85);
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.3;
  font-weight: 500;
}
.map-label.lbl-1 { top: 10%; left: 25%; }
.map-label.lbl-2 { top: 60%; right: 30%; }
.map-label.lbl-3 { bottom: 15%; right: 5%; color: #3178a8; }
.map-caption {
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: 11px;
  color: var(--ink-500);
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 3px;
}

.contact-info {
  background: var(--ink-50);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
}
.ci-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-200);
}
.ci-block:last-child { border-bottom: none; padding-bottom: 0; }
.ci-block:first-child { padding-top: 0; }
.ci-lb {
  font-size: 12.5px;
  color: var(--blue-700);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ci-val {
  font-size: 15px;
  color: var(--ink-800);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.ci-val b { font-weight: 800; }
.ci-val span { color: var(--ink-500); font-size: 13px; }

/* ============================================================
   BIZ SECTION
   ============================================================ */
.biz-hero {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.biz-hero.blue { background: linear-gradient(135deg, var(--blue-700), var(--blue-800)); }
.biz-hero.red { background: linear-gradient(135deg, var(--red-600), var(--red-700)); }
.biz-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.bh-lb {
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 12px;
}
.biz-hero h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.biz-hero p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.8;
  letter-spacing: -0.01em;
  max-width: 620px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dg-card {
  padding: 26px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  transition: all .2s;
}
.dg-card:hover { border-color: var(--blue-500); }
.dg-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--red-500);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.dg-tt {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.dg-card p {
  font-size: 14px;
  color: var(--ink-600);
  letter-spacing: -0.01em;
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 0;
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.fb-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--ink-200);
}
.fb-item:last-child { border-right: none; }
.fb-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-700);
  letter-spacing: -0.03em;
}
.fb-lb { font-size: 14px; color: var(--ink-600); margin-top: 6px; }

.notice-small { font-size: 13px; color: var(--ink-500); margin-top: 20px; }

.facility-card {
  padding: 40px;
  background: linear-gradient(135deg, var(--red-50) 0%, #fff 100%);
  border: 1px solid var(--red-100);
  border-radius: var(--radius-lg);
  position: relative;
}
.fc-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--red-600);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 12px;
}
.facility-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.fc-sub { font-size: 13px; color: var(--red-600); font-weight: 500; margin-bottom: 20px; letter-spacing: 0.02em; }
.facility-card p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.8;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

/* ============================================================
   CENTER - INTRO
   ============================================================ */
.center-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--red-50) 0%, #fff 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--red-100);
}
.ch-eyebrow { font-size: 13px; color: var(--red-600); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 8px; }
.ch-left h3 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ch-left p { font-size: 15px; color: var(--ink-700); line-height: 1.9; letter-spacing: -0.02em; }
.ch-left p b { color: var(--red-600); }

.director-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.dc-photo {
  width: 96px; height: 128px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 6px;
  border: 3px solid var(--red-500);
}
.dc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}
.dc-role { font-size: 12px; color: var(--red-600); font-weight: 600; letter-spacing: 0.03em; }
.dc-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.dc-desc { font-size: 12px; color: var(--ink-500); margin-top: 6px; }

.purpose-card {
  padding: 32px 36px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue-700);
  font-size: 16px;
  color: var(--ink-800);
  line-height: 1.9;
  letter-spacing: -0.02em;
}
.purpose-card b { color: var(--blue-800); font-weight: 700; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.prog-card {
  padding: 28px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: all .2s;
}
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-300, var(--blue-100)); }
.pc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pc-num {
  width: 44px; height: 44px;
  background: var(--blue-700);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--serif);
}
.pc-num.red { background: var(--red-600); }
.pc-tt { font-size: 20px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.03em; }
.pc-purpose {
  font-size: 13.5px;
  color: var(--ink-600);
  padding: 12px 16px;
  background: var(--ink-50);
  border-radius: 8px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.6;
}
.pc-purpose b { color: var(--blue-700); font-weight: 700; }
.pc-items { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-items span {
  padding: 6px 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 13px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ============================================================
   BOARD
   ============================================================ */
.admin-note {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 20px;
  background: var(--blue-50);
  color: var(--blue-800);
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.admin-note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-700); }
.admin-note b { font-weight: 700; }

.board-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.search { display: flex; gap: 6px; }
.search select, .search input {
  padding: 9px 14px;
  border: 1px solid var(--ink-300);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
.search input { width: 280px; }
.search select { background: #fff; }
.write-btn { margin-left: auto; }

.board-table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--ink-900);
  font-size: 14.5px;
}
.board-table th {
  padding: 14px 16px;
  background: var(--ink-50);
  font-weight: 700;
  border-bottom: 1px solid var(--ink-200);
  text-align: center;
  color: var(--ink-700);
  letter-spacing: -0.01em;
}
.board-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-100);
  text-align: center;
  color: var(--ink-700);
}
.board-table td.tt {
  text-align: left;
  color: var(--ink-800);
  letter-spacing: -0.02em;
  cursor: pointer;
}
.board-table td.tt:hover { color: var(--blue-700); }
.board-table tr.pinned { background: var(--blue-50); }
.pin-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--red-600);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.cmt {
  display: inline-block;
  margin-left: 6px;
  color: var(--red-600);
  font-size: 12.5px;
  font-weight: 700;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 30px;
}
.pagination a {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink-600);
  cursor: pointer;
  transition: all .15s;
  padding: 0 10px;
}
.pagination a:hover { border-color: var(--blue-500); color: var(--blue-700); }
.pagination a.active {
  background: var(--blue-700);
  color: #fff;
  border-color: var(--blue-700);
  font-weight: 700;
}

/* ============================================================
   MEMBER FORM
   ============================================================ */
.join-intro {
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-100);
  margin-bottom: 30px;
  position: relative;
}
.ji-mark {
  position: absolute;
  top: 20px; right: 30px;
  padding: 5px 14px;
  background: var(--blue-700);
  color: #fff;
  font-size: 12px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.join-intro h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.join-intro p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.85;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.join-intro b { color: var(--blue-700); font-weight: 700; }

.join-biz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.jb-item {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-left: 4px solid var(--blue-700);
  border-radius: 8px;
}
.jb-item:nth-child(2) { border-left-color: var(--red-500); }
.jb-tt {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.jb-tt span { font-size: 13px; color: var(--ink-500); font-weight: 500; }
.jb-item p {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.fee-table {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}
.fee-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 2fr;
  border-bottom: 1px solid var(--ink-200);
}
.fee-row:last-child { border-bottom: none; }
.fee-row.head {
  background: var(--blue-800);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.fee-row.head > div { padding: 14px 20px; }
.fee-row > div {
  padding: 20px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--ink-200);
}
.fee-row > div:last-child { border-right: none; }
.fee-row .fr-tt {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  gap: 10px;
}
.dot-blue, .dot-red {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-blue { background: var(--blue-700); }
.dot-red { background: var(--red-500); }
.fee-row .fr-amt {
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 500;
}
.fee-row .fr-amt b {
  color: var(--red-600);
  font-weight: 800;
  font-size: 17px;
  margin-left: 4px;
}
.fee-row .fr-acc {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 13.5px;
}
.fee-row .fr-acc .acc-bank {
  color: var(--blue-700);
  font-weight: 700;
  font-size: 14px;
}
.fee-row .fr-acc .acc-no {
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
  letter-spacing: 0.02em;
}
.fee-row .fr-acc .acc-holder { font-size: 12.5px; color: var(--ink-500); }
.fee-row .fr-acc.note { font-size: 13px; color: var(--ink-500); line-height: 1.6; }

/* Form title spacer */
.form-title { margin-top: 60px; }

.member-form { margin-top: 20px; }
.form-section {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  overflow: hidden;
}
.fs-tt {
  padding: 16px 24px;
  background: var(--blue-800);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-left: 4px solid var(--red-500);
}
.fs-body { padding: 28px; }

.fg { margin-bottom: 20px; }
.fg:last-child { margin-bottom: 0; }
.fg.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg > label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.req { color: var(--red-600); }

.fg input[type="text"],
.fg input[type="date"],
.fg input[type="tel"],
.fg input[type="email"],
.fg input[type="number"],
.fg select,
.fg textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-300);
  border-radius: 6px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink-800);
  transition: all .15s;
  background: #fff;
  margin-top: 6px;
  font-weight: 400;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px var(--blue-50);
}
.fg textarea { resize: vertical; min-height: 90px; }

.radio-row { display: flex; gap: 20px; margin-top: 10px; }
.rd { font-weight: 400 !important; color: var(--ink-700) !important; display: inline-flex !important; align-items: center; gap: 6px; font-size: 14.5px !important; margin-bottom: 0 !important; cursor: pointer; }
.rd input { accent-color: var(--blue-700); }

.age-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.age-row input { flex: 0 1 140px; margin-top: 0 !important; }
.age-row span { font-size: 14px; color: var(--ink-600); }

.disability-row { display: grid; grid-template-columns: 1fr 100px; gap: 8px; margin-top: 6px; }
.disability-row input { margin-top: 0 !important; }

.member-type-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.mt-card {
  position: relative;
  cursor: pointer;
  margin-bottom: 0 !important;
}
.mt-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mtc-inner {
  padding: 20px 22px;
  border: 2px solid var(--ink-200);
  border-radius: 12px;
  background: #fff;
  transition: all .18s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mt-card:hover .mtc-inner {
  border-color: var(--blue-500);
  transform: translateY(-2px);
}
.mt-card input:checked ~ .mtc-inner {
  border-color: var(--blue-700);
  background: var(--blue-50);
  box-shadow: 0 0 0 4px rgba(26,74,153,0.12);
}
.mtc-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--blue-700);
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 4px;
}
.mtc-tag.red { background: var(--red-600); }
.mtc-amt {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}
.mtc-desc { font-size: 13px; color: var(--ink-500); }

.readonly-box {
  padding: 14px 16px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-top: 6px;
}

.acc-info-box {
  padding: 16px 20px;
  background: var(--blue-50);
  border-radius: 8px;
  border-left: 3px solid var(--blue-700);
  margin-top: 6px;
}
.aib-lb { font-size: 12px; color: var(--blue-700); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 4px; }
.aib-val { font-size: 15px; color: var(--ink-900); font-weight: 500; letter-spacing: -0.01em; }
.aib-val b { color: var(--blue-800); font-weight: 800; }
.aib-val span { color: var(--ink-500); font-size: 13px; }

.privacy-box {
  padding: 20px 24px;
  background: var(--ink-50);
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  margin-bottom: 20px;
}
.privacy-box p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.7;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.privacy-box ul { list-style: none; padding-left: 0; }
.privacy-box li {
  font-size: 13.5px;
  color: var(--ink-600);
  padding: 4px 0 4px 14px;
  position: relative;
  letter-spacing: -0.01em;
  line-height: 1.6;
}
.privacy-box li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--blue-700);
  font-size: 10px;
  top: 8px;
}
.privacy-box b { color: var(--ink-800); font-weight: 700; }

.agree-row { display: flex; gap: 20px; padding: 4px 0; }
.agree {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--ink-300);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500 !important;
  color: var(--ink-700) !important;
  transition: all .15s;
  margin-bottom: 0 !important;
  font-size: 14.5px !important;
}
.agree:hover { border-color: var(--blue-500); }
.agree input { accent-color: var(--blue-700); }
.agree.checked,
.agree:has(input:checked) {
  background: var(--blue-50);
  border-color: var(--blue-700);
  color: var(--blue-700) !important;
}

.form-final {
  padding: 30px 36px;
  background: linear-gradient(135deg, var(--ink-50), #fff);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  margin-top: 24px;
}
.form-final > p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.8;
  letter-spacing: -0.02em;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-200);
  margin-bottom: 24px;
}
.form-final b { color: var(--blue-800); font-weight: 700; }
.signer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}
.signer label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.01em;
}
.signer label input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-300);
  border-radius: 6px;
  font-size: 14.5px;
  margin-top: 6px;
}
.target-info {
  text-align: right;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.target-info b {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-900);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Simple form (participate/inquiry) */
.simple-form { padding: 30px; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); background: #fff; }
.simple-form .btn-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--ink-200); }

/* ============================================================
   RESOURCE - DOC GRID
   ============================================================ */
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.doc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  transition: all .18s;
  cursor: pointer;
}
.doc-card:hover { border-color: var(--blue-500); background: var(--blue-50); }
.dc-icon {
  width: 46px; height: 56px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  position: relative;
}
.dc-icon::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 12px; height: 12px;
  background: rgba(0,0,0,0.15);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.dc-icon.pdf { background: #d93a3a; }
.dc-icon.hwp { background: #1a4a99; }
.dc-icon.ppt { background: #d97706; }
.dc-info { flex: 1; }
.dc-tt { font-size: 15px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
.dc-meta { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }
.dc-dl {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all .15s;
}
.doc-card:hover .dc-dl { background: var(--blue-700); color: #fff; }

/* ============================================================
   DONATE
   ============================================================ */
.donate-hero {
  position: relative;
  padding: 44px 40px;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  overflow: hidden;
}
.donate-hero .dh-shape {
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.dh-inner { position: relative; }
.dh-eyebrow { font-size: 13px; letter-spacing: 0.05em; opacity: 0.85; margin-bottom: 8px; }
.donate-hero h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.donate-hero h3 .tx-red { color: #ffd25c !important; }
.donate-hero p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.8;
  letter-spacing: -0.01em;
  max-width: 620px;
}

.donate-account {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  padding: 34px 38px;
  background: linear-gradient(135deg, var(--blue-50), #fff);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  align-items: center;
}
.da-bank {
  font-size: 14px;
  color: var(--blue-700);
  font-weight: 700;
  margin-bottom: 6px;
}
.da-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.da-holder { font-size: 14px; color: var(--ink-600); letter-spacing: -0.01em; }
.da-right { text-align: right; }
.da-copy {
  display: inline-block;
  padding: 12px 24px;
  background: var(--blue-700);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  margin-bottom: 12px;
}
.da-copy:hover { background: var(--blue-800); transform: translateY(-1px); }
.da-note {
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.donate-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dc-box {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
}
.dcb-lb { font-size: 12.5px; color: var(--red-600); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 8px; }
.dcb-val {
  font-size: 18px;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.dcb-val b { font-family: var(--serif); font-weight: 800; letter-spacing: 0.02em; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 40px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.modal-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-700);
}
.modal-icon svg { width: 32px; height: 32px; }
.modal-inner h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.modal-inner p {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 30px;
}
.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.ft-brand { display: flex; align-items: center; gap: 14px; }
.ft-brand img {
  width: 44px; height: 44px;
  background: #fff;
  padding: 4px;
  border-radius: 6px;
  object-fit: contain;
}
.ftb-org { font-size: 12.5px; color: rgba(255,255,255,0.5); letter-spacing: -0.01em; }
.ftb-branch { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.ft-links { display: flex; gap: 24px; font-size: 14px; }
.ft-links a { color: rgba(255,255,255,0.8); transition: color .15s; }
.ft-links a:hover { color: #fff; }
.ft-info { font-size: 13px; line-height: 1.8; letter-spacing: -0.01em; }
.ft-info b { color: rgba(255,255,255,0.9); font-weight: 600; margin-right: 6px; }
.ft-sep { margin: 0 10px; color: rgba(255,255,255,0.3); }
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-title { font-size: 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { max-width: 500px; }
  .quick-menu .wrap { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .greeting-layout { grid-template-columns: 1fr; }
  .photo-frame { max-width: 200px; margin: 0 auto; }
  .center-hero { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .donate-account { grid-template-columns: 1fr; text-align: center; }
  .da-right { text-align: center; }
}

@media (max-width: 900px) {
  .gnb { display: none; }
  .mobile-toggle { display: flex; }
  .gnb.open {
    display: block;
    position: absolute;
    top: 88px;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--ink-200);
    box-shadow: var(--shadow-lg);
  }
  .gnb.open > ul {
    display: block;
    padding: 12px 0;
  }
  .gnb.open > ul > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--ink-100);
  }
  .gnb.open .submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: none;
    background: var(--ink-50);
    padding: 8px 0;
  }
  .sub-body { grid-template-columns: 1fr; gap: 24px; }
  .sub-lnb { position: static; }
  .sub-lnb ul { display: flex; flex-wrap: wrap; gap: 6px; }
  .sub-lnb ul li { flex: 1 1 auto; }
  .sub-lnb ul li a { padding: 10px 14px; border: 1px solid var(--ink-200); border-radius: 6px; text-align: center; }
  .sub-lnb ul li a.active { background: var(--blue-700); color: #fff !important; border-color: var(--blue-700); padding-left: 14px; }
  .sub-lnb ul li a.active::before { display: none; }
  .lnb-title { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .program-list, .join-biz, .detail-grid, .member-type-select { grid-template-columns: 1fr; }
  .fg.two { grid-template-columns: 1fr; }
  .fee-row { grid-template-columns: 1fr; }
  .fee-row > div { border-right: none; border-bottom: 1px solid var(--ink-100); }
  .signer { grid-template-columns: 1fr; }
  .target-info { text-align: left; }
  .doc-grid { grid-template-columns: 1fr; }
  .quick-menu .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0 70px; }
  .hero-title { font-size: 30px; }
  .sub-hero h1 { font-size: 32px; }
  .page-title-row h2 { font-size: 24px; }
  .donate-hero h3, .biz-hero h3 { font-size: 24px; }
  .ch-left h3 { font-size: 32px; }
  .stat-num { font-size: 34px; }
  .org-tier.row-2 { flex-direction: column; gap: 8px; }
  .org-connector-h { display: none; }
  .donate-contact { grid-template-columns: 1fr; }
  .ft-top { flex-direction: column; align-items: flex-start; }
}

/* ===== Home-page-only additions (auth UI, utility bar, header/hero/quick-menu components not present in base sheet) ===== */


/* Utility bar */
.util { background: #0d2d5e; color: #cbd5e1; font-size: 12.5px; }

.util .wrap { display: flex; justify-content: space-between; align-items: center; height: 34px; }

.util a { margin-left: 14px; }

.util a:hover { color: #fff; }

.util-domain { display:inline-block; margin-left:14px; padding:2px 10px; border:1px solid rgba(255,255,255,0.2); border-radius:100px; font-size:11.5px; letter-spacing:0.02em; color:#d93a3a; background:rgba(255,255,255,0.05); font-weight:600; }


/* Auth box (utility bar) */
.auth-box { display:flex; align-items:center; gap:8px; }

.auth-box .ub-user { display:inline-flex; align-items:center; gap:8px; color:#fff; }

.auth-box .ub-role { display:inline-block; padding:2px 8px; border-radius:3px; color:#fff; font-size:10.5px; font-weight:700; letter-spacing:0.02em; }

.auth-box a { cursor:pointer; margin-left: 4px; }

.auth-box .ub-user + a { margin-left: 10px; }

.auth-box .ub-user b { font-weight:600; color:#fff; }


/* Auth modal */
.auth-modal { position:fixed; inset:0; background:rgba(15,23,42,0.55); display:none; align-items:center; justify-content:center; z-index:300; padding:20px; }

.auth-modal.show { display:flex; }

.am-inner { background:#fff; border-radius:16px; width:100%; max-width:440px; max-height:90vh; overflow-y:auto; position:relative; box-shadow:0 30px 60px rgba(0,0,0,0.25); }

.am-body { padding:36px 36px 28px; }

.am-close-x { position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%; background:#f3f4f6; color:#6b7280; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; border:0; }

.am-close-x:hover { background:#e5e7eb; color:#111827; }

.am-header { text-align:center; margin-bottom:24px; }

.am-header h3 { font-size:22px; font-weight:800; letter-spacing:-0.02em; color:#111827; margin-bottom:6px; }

.am-header p { font-size:13.5px; color:#6b7280; letter-spacing:-0.01em; }

.am-field { margin-bottom:14px; }

.am-field.two { display:grid; grid-template-columns:1fr 1fr; gap:10px; }

.am-field label { display:block; font-size:12.5px; font-weight:600; color:#374151; margin-bottom:5px; letter-spacing:-0.01em; }

.am-field label .req { color:#c72d2b; }

.am-field input { width:100%; padding:11px 13px; border:1px solid #d1d5db; border-radius:6px; font-size:14px; font-family:inherit; }

.am-field input:focus { outline:none; border-color:#1a4a99; box-shadow:0 0 0 3px #eef4fc; }

.am-msg { min-height:20px; margin:8px 0 4px; font-size:12.5px; color:#c72d2b; font-weight:500; }

.am-submit { width:100%; padding:13px !important; font-size:15px !important; margin-top:8px; }

.am-switch { text-align:center; margin-top:16px; font-size:13px; color:#6b7280; }

.am-switch a { color:#1a4a99; font-weight:600; cursor:pointer; text-decoration:underline; }

.am-hint { margin-top:16px; padding:10px 14px; background:#f9fafb; border-radius:6px; font-size:12px; color:#6b7280; line-height:1.6; }

.am-hint code { background:#e5e7eb; padding:1px 6px; border-radius:3px; font-family:monospace; color:#1a4a99; }


/* Mypage */
.mypage { border:1px solid #e5e7eb; border-radius:10px; overflow:hidden; margin-bottom:20px; }

.mp-row { display:grid; grid-template-columns:100px 1fr; border-bottom:1px solid #f3f4f6; }

.mp-row:last-child { border-bottom:0; }

.mp-l { padding:12px 16px; background:#f9fafb; font-size:13px; font-weight:600; color:#374151; }

.mp-v { padding:12px 16px; font-size:14px; color:#111827; }

.am-pwchange { padding:20px; background:#f9fafb; border:1px solid #e5e7eb; border-radius:10px; margin-bottom:14px; }

.am-pwchange b { font-size:14px; color:#1a4a99; display:block; margin-bottom:10px; }

.am-pwchange input { width:100%; padding:10px 12px; border:1px solid #d1d5db; border-radius:5px; font-size:14px; margin-bottom:10px; font-family:inherit; }

.am-msg.ok { color:#1a7a3d; }

.am-danger { padding:20px; background:#fef2f2; border:1px solid #fecaca; border-radius:10px; margin-bottom:14px; }

.am-danger b { font-size:14px; color:#c72d2b; }

.am-danger p { font-size:12.5px; color:#6b7280; margin:6px 0 12px; line-height:1.6; }

.am-danger input { width:100%; padding:10px 12px; border:1px solid #d1d5db; border-radius:5px; font-size:14px; margin-bottom:10px; font-family:inherit; }

.btn-danger { background:#c72d2b; color:#fff; padding:10px 20px; border:0; border-radius:5px; font-weight:600; cursor:pointer; font-size:13.5px; font-family:inherit; }

.btn-danger:hover { background:#a92220; }

.btn-role-toggle { border:0; border-radius:5px; padding:6px 12px; font-size:12.5px; font-weight:600; cursor:pointer; font-family:inherit; white-space:nowrap; }
.btn-role-toggle.promote { background:#2f7dd1; color:#fff; }
.btn-role-toggle.promote:hover { background:#2464ac; }
.btn-role-toggle.demote { background:#e5e7eb; color:#374151; }
.btn-role-toggle.demote:hover { background:#d1d5db; }

.am-close { width:100%; margin-top:8px; }


/* Toast */
.toast { position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:#1f2937; color:#fff; padding:12px 24px; border-radius:100px; font-size:14px; font-weight:500; opacity:0; pointer-events:none; transition:all .25s; z-index:500; box-shadow:0 10px 30px rgba(0,0,0,0.2); }

.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }


/* Role-based visibility (data-role on body) */
body[data-role="guest"] .role-required { display:none !important; }

body[data-role="guest"] .role-locked-msg { display:block !important; }

body[data-role="member"] .role-admin-only { display:none !important; }

.role-locked-msg { display:none; padding:24px; background:#fef2f2; border:1px solid #fecaca; border-radius:10px; text-align:center; color:#c72d2b; font-size:14px; }

.role-locked-msg .lk-tt { font-size:16px; font-weight:700; margin-bottom:6px; }

.role-locked-msg .lk-desc { color:#6b7280; font-size:13px; margin-bottom:14px; }

.role-locked-msg .btn { margin: 0 4px; }


/* Header */
.hdr { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 50; }

.hdr .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }

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

.brand-org { font-size: 12px; color: #6b7280; }

.brand-name { font-size: 20px; font-weight: 800; color: #111827; letter-spacing: -0.02em; }

.brand-domain { display:inline-block; margin-left:8px; padding:2px 8px; background:#eef4fc; color:#1a4a99; font-size:11px; font-weight:600; border-radius:4px; letter-spacing:0.02em; vertical-align:middle; }

.nav { display: flex; gap: 4px; }

.nav a { padding: 30px 18px; font-size: 15px; font-weight: 600; color: #1f2937; position: relative; }

.nav a:hover { color: #1a4a99; }

.nav a.active { color: #1a4a99; }

.nav a.active::after { content:''; position:absolute; left:18px; right:18px; bottom:0; height:3px; background:#1a4a99; }


/* Hero */
.hero { background: linear-gradient(135deg, #f4f7fc 0%, #eaf1fa 100%); padding: 70px 0; border-bottom: 1px solid #e5e7eb; position: relative; overflow: hidden; }

.eyebrow { display: inline-block; padding: 5px 14px; background:#fff; border:1px solid #dae7f7; color:#1a4a99; border-radius:100px; font-size:13px; font-weight:600; margin-bottom:20px; }

.hero h1 { font-size: 46px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 20px; color: #111827; }

.hero h1 .b { color: #1a4a99; }

.hero h1 .r { color: #c72d2b; }

.hero p { font-size: 16px; color: #4b5563; line-height: 1.8; margin-bottom: 28px; }


.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.stats .card:first-child { grid-column: span 2; }

.card { background: #fff; padding: 24px; border-radius: 14px; border: 1px solid #e5e7eb; border-top: 3px solid #1a4a99; box-shadow: 0 4px 12px rgba(15,23,42,0.05); }

.card.red { border-top-color: #c72d2b; }

.card .n { font-size: 40px; font-weight: 900; color: #133b7a; line-height: 1; letter-spacing: -0.03em; }

.card.red .n { color: #c72d2b; }

.card .n span { font-size: 18px; }

.card .l { font-size: 15px; font-weight: 700; color: #111827; margin-top: 8px; }

.card .s { font-size: 12.5px; color: #6b7280; margin-top: 3px; }


/* Quick menu */
.quick { padding: 40px 0; border-bottom: 1px solid #f3f4f6; }

.quick .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }

.qi { padding: 24px 18px; border: 1px solid #e5e7eb; border-radius: 14px; text-align: center; background: #fff; transition: all .18s; cursor: pointer; }

.qi:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(15,23,42,0.08); border-color: #3d7ad2; }

.qi-ic { width: 46px; height: 46px; margin: 0 auto 12px; background: #eef4fc; color: #1a4a99; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; }

.qi:nth-child(4) .qi-ic, .qi:nth-child(5) .qi-ic { background: #fdefef; color: #c72d2b; }

.qi-l { font-size: 15px; font-weight: 700; color: #111827; }

.qi-s { font-size: 12px; color: #6b7280; margin-top: 3px; }


/* Two-col: notice + biz */
.twocol { padding: 60px 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }

.twocol .wrap { display: contents; }

.panel.dark { background: linear-gradient(135deg, #133b7a, #0d2d5e); color: #fff; border: none; }

.panel h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; padding-bottom: 16px; border-bottom: 2px solid #111827; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }

.panel.dark h2 { border-bottom-color: rgba(255,255,255,0.3); }

.panel h2 .more { font-size: 12px; color: #6b7280; font-weight: 500; }

.panel.dark h2 .more { color: rgba(255,255,255,0.7); }

.nlist { list-style: none; }

.nlist li { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #f3f4f6; font-size: 14px; }

.nlist li:last-child { border: 0; }

.badge { font-size: 11px; padding: 2px 8px; border-radius: 3px; background: #dae7f7; color: #1a4a99; font-weight: 600; }

.badge.r { background: #fdefef; color: #c72d2b; }

.nlist .tt { flex: 1; }

.nlist .dt { color: #9ca3af; font-size: 12.5px; }


.bmini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.bm { padding: 18px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; }

.bm .num { font-size: 20px; font-weight: 800; color: #d93a3a; }

.bm .tt { font-size: 15px; font-weight: 700; color: #fff; margin-top: 6px; }

.bm .ds { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; }


/* CTA */
.cta { background: #f9fafb; padding: 50px 0; border-top: 1px solid #e5e7eb; }

.cta .wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; align-items: center; }

.cta .lb { font-size: 13px; color: #c72d2b; font-weight: 700; margin-bottom: 8px; }

.cta h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.4; }

.cboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cbox { background: #fff; padding: 22px 20px; border-radius: 14px; border: 1px solid #e5e7eb; border-left: 4px solid #1a4a99; cursor: pointer; }

.cbox.r { border-left-color: #c72d2b; }

.cbox:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(15,23,42,0.08); }

.cbox .t { font-size: 18px; font-weight: 800; color: #111827; margin-bottom: 4px; }

.cbox .d { font-size: 12.5px; color: #6b7280; }


/* Sub page */

.ptt { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid #e5e7eb; }

.ptt h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }

.ptt .deco { width: 36px; height: 3px; background: linear-gradient(to right, #1a4a99, #d93a3a); }


.tab { display: none; }

.tab.show { display: block; }

.h3 { font-size: 18px; font-weight: 800; color: #111827; margin: 30px 0 16px; padding-left: 12px; border-left: 4px solid #1a4a99; }


/* Greeting */
.greet { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }

.photo { aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 12px 24px rgba(15,23,42,0.1); }

.photo img { width: 100%; height: 100%; object-fit: cover; }

.pcap { text-align: center; margin-top: 16px; }

.pcap .role { font-size: 12px; color: #6b7280; }

.pcap .nm { font-size: 22px; font-weight: 800; letter-spacing: 0.15em; color: #111827; margin-top: 4px; }

.gtxt p { font-size: 14.5px; color: #374151; line-height: 1.85; margin-bottom: 14px; }

.gtxt b { color: #1a4a99; }

.quote { padding: 14px 20px; border-left: 3px solid #d93a3a; font-size: 20px !important; color: #111827 !important; font-weight: 500; margin-bottom: 22px !important; line-height: 1.5 !important; }

.quote b { color: #c72d2b !important; }

.sign { margin-top: 26px; padding-top: 16px; border-top: 1px solid #e5e7eb; text-align: right; font-size: 14px; color: #4b5563; line-height: 1.8; }

.sign b { font-size: 18px; color: #111827; letter-spacing: 0.15em; margin-left: 6px; }


/* Purpose */
.pcard { padding: 40px 32px; background: linear-gradient(135deg, #eef4fc, #fff); border-radius: 14px; border: 1px solid #dae7f7; text-align: center; margin-bottom: 30px; }

.pcard p { font-size: 17px; line-height: 1.9; color: #1f2937; }

.pcard b { color: #1a4a99; }

.vals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.val { padding: 22px 16px; border: 1px solid #e5e7eb; border-radius: 12px; text-align: center; }

.val .i { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 12px; background: #eef4fc; color: #1a4a99; display: flex; align-items: center; justify-content: center; font-size: 22px; }

.val:nth-child(even) .i { background: #fdefef; color: #c72d2b; }

.val h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }

.val p { font-size: 13px; color: #6b7280; line-height: 1.6; }


/* Timeline */
.tline { padding: 10px 0; }

.tdec { display: grid; grid-template-columns: 110px 1fr; gap: 30px; margin-bottom: 32px; }

.tdec .yr { font-size: 26px; font-weight: 800; color: #1a4a99; text-align: right; letter-spacing: -0.02em; }

.tev { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid #f3f4f6; }

.tev .dt { min-width: 90px; font-size: 13px; color: #6b7280; font-weight: 600; }

.tev .ds { font-size: 14.5px; color: #374151; }

.tev .ds b { color: #111827; }

.tev.hl { background: #fdefef; padding: 12px 14px; border-radius: 6px; border-bottom: 1px solid #fbdcdc; }

.tev.hl .ds b { color: #c72d2b; }


/* Org */
.org { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 40px 30px; margin-bottom: 20px; }

.orow { display: flex; justify-content: center; align-items: center; gap: 30px; }

.orow.two { max-width: 640px; margin: 0 auto; justify-content: space-between; }

.obox { padding: 16px 26px; background: #fff; border: 2px solid #1a4a99; border-radius: 8px; font-weight: 700; text-align: center; min-width: 170px; }

.obox.top { background: #1a4a99; color: #fff; padding: 18px 32px; }

.obox.mid { background: #eef4fc; color: #133b7a; }

.obox.side { border-color: #c72d2b; color: #c72d2b; min-width: 130px; padding: 12px 20px; font-size: 14px; }

.obox.br { border-color: #c72d2b; background: linear-gradient(135deg, #fff, #fdefef); padding: 18px 28px; min-width: 200px; }

.obox.br .lb { font-size: 11px; color: #c72d2b; margin-bottom: 3px; }

.obox.br .nm { font-size: 18px; font-weight: 800; color: #111827; }

.obox.br .sb { font-size: 11px; color: #6b7280; margin-top: 3px; }

.ov { width: 2px; height: 26px; background: #d1d5db; margin: 0 auto; }

.oh { flex: 1; height: 2px; background: #d1d5db; max-width: 180px; }

.onote { display: flex; gap: 10px; padding: 14px 18px; background: #eef4fc; border-left: 3px solid #3d7ad2; border-radius: 6px; margin-bottom: 24px; font-size: 13.5px; color: #374151; }

.onote b { color: #133b7a; }


.stbl { border-top: 2px solid #111827; }

.stbl table { width: 100%; border-collapse: collapse; }

.stbl th, .stbl td { padding: 12px 16px; text-align: center; border-bottom: 1px solid #e5e7eb; font-size: 14px; }

.stbl thead th { background: #eef4fc; color: #133b7a; font-weight: 700; }

.stbl tbody th { background: #f9fafb; color: #4b5563; }

.team .th { font-weight: 800; color: #133b7a; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #dae7f7; text-align: center; }

.team .tm { padding: 6px 10px; background: #fff; border-radius: 5px; margin-bottom: 4px; font-size: 13px; text-align: center; color: #374151; }

.team .tm:last-child { margin-bottom: 0; }

.orow.teams { gap: 24px; max-width: 700px; margin: 0 auto; }


/* Map */
.cwrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; }

.map { position: relative; aspect-ratio: 4/3; background: #f0eee6; border-radius: 14px; overflow: hidden; border: 1px solid #e5e7eb; }

.map .r1 { position: absolute; top: 32%; left: 0; right: 0; height: 10px; background: #fff; box-shadow: 0 0 0 1px #d4cfbf; }

.map .r2 { position: absolute; top: 0; bottom: 0; left: 55%; width: 10px; background: #fff; box-shadow: 0 0 0 1px #d4cfbf; }

.map .rv { position: absolute; right: 0; top: 0; bottom: 0; width: 16%; background: linear-gradient(to bottom, #b6d4e8, #a5c9e0); opacity: 0.6; }

.map .pin { position: absolute; left: 42%; top: 44%; color: #c72d2b; font-size: 40px; transform: translate(-50%, -100%); filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25)); }

.map .pl { position: absolute; left: 42%; top: 44%; transform: translateX(-50%); background: #c72d2b; color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 3px; font-weight: 600; margin-top: 4px; }

.map .lb1 { position: absolute; top: 12%; left: 22%; font-size: 11px; background: rgba(255,255,255,0.85); padding: 3px 7px; border-radius: 3px; color: #4b5563; }

.map .lb2 { position: absolute; bottom: 15%; right: 5%; font-size: 11px; color: #3178a8; background: rgba(255,255,255,0.85); padding: 3px 7px; border-radius: 3px; }

.cinfo { background: #f9fafb; padding: 26px; border-radius: 14px; border: 1px solid #e5e7eb; }

.ci { padding: 14px 0; border-bottom: 1px solid #e5e7eb; }

.ci:last-child { border-bottom: none; padding-bottom: 0; }

.ci:first-child { padding-top: 0; }

.ci .l { font-size: 12px; color: #1a4a99; font-weight: 700; margin-bottom: 4px; }

.ci .v { font-size: 14.5px; color: #111827; line-height: 1.5; }

.ci .v b { font-weight: 800; }

.ci .v span { color: #6b7280; font-size: 12.5px; }


/* Biz */
.bhero { padding: 36px 32px; border-radius: 14px; color: #fff; margin-bottom: 26px; background: linear-gradient(135deg, #1a4a99, #133b7a); }

.bhero.r { background: linear-gradient(135deg, #c72d2b, #a92220); }

.bhero .lb { font-size: 12px; opacity: 0.7; letter-spacing: 0.1em; margin-bottom: 10px; }

.bhero h3 { font-size: 26px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.02em; }

.bhero p { font-size: 14.5px; opacity: 0.9; line-height: 1.7; }

.dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.dc { padding: 22px; border: 1px solid #e5e7eb; border-radius: 12px; }

.dc .n { font-size: 22px; font-weight: 800; color: #d93a3a; }

.dc .t { font-size: 16px; font-weight: 800; color: #111827; margin: 6px 0; }

.dc p { font-size: 13.5px; color: #6b7280; line-height: 1.6; }

.fband { display: grid; grid-template-columns: repeat(3, 1fr); padding: 24px 0; background: #f9fafb; border-radius: 14px; margin-bottom: 16px; }

.fband .it { text-align: center; border-right: 1px solid #e5e7eb; padding: 16px; }

.fband .it:last-child { border-right: none; }

.fband .n { font-size: 30px; font-weight: 800; color: #1a4a99; }

.fband .l { font-size: 13px; color: #6b7280; margin-top: 4px; }


.fcard { padding: 32px; background: linear-gradient(135deg, #fdefef, #fff); border: 1px solid #fbdcdc; border-radius: 14px; }

.fcard .tag { display: inline-block; padding: 4px 10px; background: #c72d2b; color: #fff; font-size: 11px; font-weight: 600; border-radius: 3px; margin-bottom: 10px; }

.fcard h3 { font-size: 26px; font-weight: 800; margin-bottom: 4px; }

.fcard .sb { font-size: 12px; color: #c72d2b; margin-bottom: 16px; }

.fcard p { font-size: 14.5px; color: #374151; line-height: 1.8; margin-bottom: 20px; }


/* Center */
.chero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; margin-bottom: 30px; padding: 30px 32px; background: linear-gradient(135deg, #fdefef, #fff 60%); border-radius: 14px; border: 1px solid #fbdcdc; }

.chero .eb { font-size: 12px; color: #c72d2b; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 6px; }

.chero h3 { font-size: 36px; font-weight: 800; color: #111827; margin-bottom: 14px; letter-spacing: -0.02em; }

.chero .ld { font-size: 18px; color: #1f2937; margin-bottom: 14px; line-height: 1.5; }

.chero .ld b { color: #c72d2b; }

.chero p { font-size: 14px; color: #4b5563; line-height: 1.8; }

.dircard { background: #fff; padding: 20px; border-radius: 12px; border: 1px solid #e5e7eb; text-align: center; }

.dircard .ph { width: 110px; height: 140px; margin: 0 auto 12px; overflow: hidden; border-radius: 5px; border: 3px solid #d93a3a; }

.dircard .ph img { width: 100%; height: 100%; object-fit: cover; }

.dircard .rl { font-size: 12px; color: #c72d2b; font-weight: 600; }

.dircard .nm { font-size: 20px; font-weight: 800; color: #111827; letter-spacing: 0.15em; margin-top: 3px; }

.dircard .dt { font-size: 12px; color: #6b7280; margin-top: 4px; }

.pucard { padding: 26px 30px; background: #eef4fc; border-radius: 14px; border-left: 4px solid #1a4a99; font-size: 15px; line-height: 1.85; color: #1f2937; }

.pucard b { color: #133b7a; }


.progs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.prog { padding: 24px; border: 1px solid #e5e7eb; border-radius: 12px; }

.prog .h { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.prog .h .n { width: 40px; height: 40px; background: #1a4a99; color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; }

.prog .h .n.r { background: #c72d2b; }

.prog .h .t { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }

.prog .pp { font-size: 13px; color: #4b5563; padding: 10px 14px; background: #f9fafb; border-radius: 6px; margin-bottom: 12px; }

.prog .pp b { color: #1a4a99; }

.prog .items { display: flex; flex-wrap: wrap; gap: 5px; }

.prog .items span { padding: 5px 11px; background: #eef4fc; color: #1a4a99; font-size: 12.5px; border-radius: 100px; }


/* Board */
.anote { display: flex; gap: 10px; align-items: center; padding: 12px 18px; background: #eef4fc; color: #133b7a; border-radius: 6px; font-size: 13px; margin-bottom: 18px; }

.anote::before { content: 'ⓘ'; font-size: 18px; color: #1a4a99; font-weight: 700; }

.btbl { border-top: 2px solid #111827; }

.btbl table { width: 100%; border-collapse: collapse; font-size: 14px; }

.btbl th { padding: 12px 14px; background: #f9fafb; font-weight: 700; border-bottom: 1px solid #e5e7eb; text-align: center; color: #4b5563; }

.btbl td { padding: 12px 14px; border-bottom: 1px solid #f3f4f6; text-align: center; color: #374151; }

.btbl td.tt { text-align: left; cursor: pointer; }

.btbl td.tt:hover { color: #1a4a99; }

.btbl tr.pin { background: #eef4fc; }

.ptag { display: inline-block; padding: 2px 8px; background: #c72d2b; color: #fff; border-radius: 3px; font-size: 11px; font-weight: 600; }

.pager { display: flex; justify-content: center; gap: 4px; margin-top: 24px; }

.pager a { min-width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #e5e7eb; border-radius: 5px; font-size: 13px; color: #6b7280; cursor: pointer; }

.pager a.on { background: #1a4a99; color: #fff; border-color: #1a4a99; }

.btoolbar { display: flex; justify-content: space-between; margin-bottom: 14px; gap: 10px; align-items: center; }

.bsearch { display: flex; gap: 6px; }

.bsearch select, .bsearch input { padding: 8px 12px; border: 1px solid #d1d5db; border-radius: 5px; font-size: 13px; font-family: inherit; }

.bsearch input { width: 240px; }

.bsearch button { padding: 8px 16px; background: #1a4a99; color: #fff; border: none; border-radius: 5px; font-size: 13px; cursor: pointer; font-weight: 600; }


/* Membership form */
.jintro { padding: 28px 32px; background: linear-gradient(135deg, #eef4fc, #fff); border-radius: 14px; border: 1px solid #dae7f7; margin-bottom: 26px; position: relative; }

.jintro .mk { position: absolute; top: 16px; right: 24px; padding: 4px 12px; background: #1a4a99; color: #fff; font-size: 11px; border-radius: 100px; font-weight: 600; }

.jintro h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }

.jintro p { font-size: 14px; color: #374151; line-height: 1.8; margin-bottom: 8px; }

.jintro b { color: #1a4a99; }

.jbiz { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.jbi { padding: 20px 22px; border: 1px solid #e5e7eb; border-left: 4px solid #1a4a99; border-radius: 6px; background: #fff; }

.jbi:nth-child(2) { border-left-color: #c72d2b; }

.jbi .t { font-size: 16px; font-weight: 800; margin-bottom: 6px; }

.jbi .t span { font-size: 12px; color: #6b7280; font-weight: 500; }

.jbi p { font-size: 13.5px; color: #4b5563; line-height: 1.6; }


.ftbl { border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; margin-bottom: 26px; }

.frw { display: grid; grid-template-columns: 1fr 1.2fr 2fr; border-bottom: 1px solid #e5e7eb; }

.frw:last-child { border-bottom: none; }

.frw.hd { background: #133b7a; color: #fff; font-weight: 700; font-size: 13px; }

.frw.hd > div { padding: 12px 18px; }

.frw > div { padding: 18px; display: flex; align-items: center; border-right: 1px solid #e5e7eb; }

.frw > div:last-child { border-right: none; }

.frw .tt { font-size: 15px; font-weight: 700; gap: 8px; }

.frw .amt { font-size: 14px; }

.frw .amt b { color: #c72d2b; font-weight: 800; font-size: 16px; margin-left: 4px; }

.frw .acc { flex-direction: column; align-items: flex-start; gap: 3px; font-size: 13px; }

.frw .acc .bk { color: #1a4a99; font-weight: 700; }

.frw .acc .no { font-weight: 800; font-size: 17px; color: #111827; }

.frw .acc .hd2 { font-size: 12px; color: #6b7280; }


.dotb { width: 9px; height: 9px; border-radius: 50%; background: #1a4a99; display: inline-block; }

.dotr { width: 9px; height: 9px; border-radius: 50%; background: #d93a3a; display: inline-block; }


form.mform { margin-top: 20px; }

.fsec { border: 1px solid #e5e7eb; border-radius: 14px; margin-bottom: 18px; overflow: hidden; }

.fsec .stt { padding: 14px 22px; background: #133b7a; color: #fff; font-size: 14.5px; font-weight: 700; border-left: 4px solid #d93a3a; }

.fbd { padding: 24px; }

.fg input[type=text], .fg input[type=date], .fg input[type=tel], .fg input[type=email], .fg input[type=number], .fg select, .fg textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 5px; font-size: 14px; font-family: inherit; margin-top: 4px;
}

.radrow { display: flex; gap: 18px; margin-top: 8px; }

.mts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }

.mtc { position: relative; cursor: pointer; }

.mtc input { position: absolute; opacity: 0; }

.mtc .in { padding: 18px 20px; border: 2px solid #e5e7eb; border-radius: 10px; background: #fff; }

.mtc:hover .in { border-color: #3d7ad2; }

.mtc input:checked ~ .in { border-color: #1a4a99; background: #eef4fc; }

.mtc .tg { display: inline-block; padding: 3px 9px; background: #1a4a99; color: #fff; font-size: 11px; border-radius: 3px; font-weight: 600; margin-bottom: 4px; }

.mtc .tg.r { background: #c72d2b; }

.mtc .am { font-size: 18px; font-weight: 800; color: #111827; }

.mtc .ds { font-size: 12px; color: #6b7280; margin-top: 3px; }

.robx { padding: 12px 14px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 5px; font-size: 13.5px; color: #4b5563; }

.acbx { padding: 14px 18px; background: #eef4fc; border-radius: 6px; border-left: 3px solid #1a4a99; }

.acbx .l { font-size: 11px; color: #1a4a99; font-weight: 700; margin-bottom: 3px; }

.acbx .v { font-size: 14px; color: #111827; }

.acbx .v b { color: #133b7a; font-weight: 800; }

.pvbx { padding: 18px 22px; background: #f9fafb; border-radius: 6px; border: 1px solid #e5e7eb; margin-bottom: 16px; }

.pvbx p { font-size: 13.5px; color: #374151; line-height: 1.6; margin-bottom: 10px; }

.pvbx ul { list-style: none; }

.pvbx li { font-size: 13px; color: #4b5563; padding: 3px 0 3px 12px; position: relative; line-height: 1.5; }

.pvbx li::before { content: '○'; position: absolute; left: 0; color: #1a4a99; font-size: 9px; top: 6px; }

.pvbx b { color: #111827; }

.agrw { display: flex; gap: 16px; }

.agr { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 1px solid #d1d5db; border-radius: 5px; cursor: pointer; font-size: 14px; color: #374151; }

.agr:hover { border-color: #3d7ad2; }

.ffin { padding: 26px 30px; background: linear-gradient(135deg, #f9fafb, #fff); border: 1px solid #e5e7eb; border-radius: 14px; margin-top: 20px; }

.ffin > p { font-size: 14px; color: #374151; line-height: 1.7; padding-bottom: 20px; border-bottom: 1px solid #e5e7eb; margin-bottom: 20px; }

.ffin b { color: #133b7a; }

.signer input { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 5px; font-size: 14px; margin-top: 4px; }

.tinfo { text-align: right; font-size: 13.5px; color: #374151; line-height: 1.7; }

.tinfo b { display: block; font-size: 16px; letter-spacing: 0.1em; color: #111827; margin-top: 3px; }

.brow { display: flex; justify-content: center; gap: 10px; }

.btn.ghost { background: #f3f4f6; color: #4b5563; }


.smform { padding: 26px; border: 1px solid #e5e7eb; border-radius: 14px; }

.smform .brow { margin-top: 16px; padding-top: 16px; border-top: 1px solid #e5e7eb; }


/* Docs */
.dgd { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.dcd { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; }

.dcd:hover { border-color: #3d7ad2; background: #eef4fc; }

.dic { width: 42px; height: 52px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 800; }

.dic.pdf { background: #d93a3a; }

.dic.hwp { background: #1a4a99; }

.dic.ppt { background: #d97706; }

.dcd .info { flex: 1; }

.dcd .tt { font-size: 14.5px; font-weight: 700; color: #111827; }

.dcd .mt { font-size: 12px; color: #6b7280; margin-top: 3px; }

.dcd .dl { width: 32px; height: 32px; background: #eef4fc; color: #1a4a99; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; }


/* Donate */
.dhero { padding: 36px 32px; background: linear-gradient(135deg, #c72d2b, #a92220); color: #fff; border-radius: 14px; margin-bottom: 26px; }

.dhero .eb { font-size: 12px; opacity: 0.85; margin-bottom: 6px; }

.dhero h3 { font-size: 28px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }

.dhero h3 .y { color: #ffd25c; }

.dhero p { font-size: 14.5px; opacity: 0.95; line-height: 1.7; }

.dacc { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; padding: 30px 34px; background: linear-gradient(135deg, #eef4fc, #fff); border: 1px solid #dae7f7; border-radius: 14px; margin-bottom: 16px; align-items: center; }

.dacc .bk { font-size: 13px; color: #1a4a99; font-weight: 700; margin-bottom: 4px; }

.dacc .no { font-size: 30px; font-weight: 800; color: #111827; line-height: 1; margin-bottom: 8px; letter-spacing: 0.02em; }

.dacc .ho { font-size: 13px; color: #6b7280; }

.dacc .r { text-align: right; }

.dacc .cp { display: inline-block; padding: 10px 20px; background: #1a4a99; color: #fff; border-radius: 5px; cursor: pointer; font-weight: 600; margin-bottom: 8px; }

.dacc .cp:hover { background: #133b7a; }

.dacc .nt { font-size: 12px; color: #6b7280; line-height: 1.5; }

.dctc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.dctc .bx { padding: 20px 22px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; }

.dctc .l { font-size: 12px; color: #c72d2b; font-weight: 700; margin-bottom: 6px; }

.dctc .v { font-size: 17px; color: #111827; font-weight: 500; }

.dctc .v b { font-weight: 800; }


/* Modal */
.modal { position: fixed; inset: 0; background: rgba(15,23,42,0.5); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }

.modal.show { display: flex; }

.modal-in { background: #fff; border-radius: 14px; padding: 36px 36px 28px; max-width: 380px; width: 100%; text-align: center; }

.modal-in .ic { width: 56px; height: 56px; margin: 0 auto 16px; background: #eef4fc; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1a4a99; font-size: 28px; font-weight: 800; }

.modal-in h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }

.modal-in p { font-size: 14px; color: #6b7280; margin-bottom: 20px; line-height: 1.5; }


/* Footer */
.ftr { background: #111827; color: rgba(255,255,255,0.7); padding: 36px 0 26px; }

.ftr .top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; gap: 20px; flex-wrap: wrap; }

.ftr .bd { display: flex; align-items: center; gap: 12px; }

.ftr .bd img { width: 40px; height: 40px; background: #fff; padding: 3px; border-radius: 5px; object-fit: contain; }

.ftr .bd .o { font-size: 12px; color: rgba(255,255,255,0.5); }

.ftr .bd .n { font-size: 16px; font-weight: 800; color: #fff; }

.ftr .lk { display: flex; gap: 20px; font-size: 13px; }

.ftr .lk a { color: rgba(255,255,255,0.8); cursor: pointer; }

.ftr .lk a:hover { color: #fff; }

.ftr .info { font-size: 12.5px; line-height: 1.7; }

.ftr .info b { color: rgba(255,255,255,0.9); font-weight: 600; margin-right: 4px; }

.ftr .sep { margin: 0 8px; color: rgba(255,255,255,0.3); }

.ftr .cp { font-size: 11.5px; color: rgba(255,255,255,0.4); margin-top: 8px; }
@media (max-width: 900px) {
  .nav { display: none; }
  .hero-inner, .twocol, .cta .wrap, .sub-body, .cwrap, .chero, .greet, .dacc, .signer { grid-template-columns: 1fr !important; }
  .quick .wrap { grid-template-columns: repeat(2, 1fr); }
  .stats { max-width: 500px; }
  .vals, .dgrid, .progs, .jbiz, .dgd, .mts, .fg.two, .dctc { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .sub-hero h1 { font-size: 28px; }
  .frw { grid-template-columns: 1fr; }
  .frw > div { border-right: none; border-bottom: 1px solid #f3f4f6; }
}
