/* ============================================
   사단법인 사랑하이 - Design System
   White · Trustworthy · No-Blur Animations
   ============================================ */

:root {
  /* Brand - Red (로고 컬러) */
  --brand-900: #7A1811;   /* 최심 hover */
  --brand-800: #B22518;   /* dark, active */
  --brand-700: #EF3D30;   /* 메인 (로고 컬러) */
  --brand-600: #F35A4E;
  --brand-500: #F87D74;
  --brand-100: #FEDDD8;
  --brand-50:  #FEEEEB;
  --brand-25:  #FFF7F5;

  /* Navy (로고 서브 컬러) */
  --navy-900: #001A3D;
  --navy-800: #002655;
  --navy-700: #003371;   /* 로고 네이비 */
  --navy-600: #1F4A87;
  --navy-500: #3D63A0;
  --navy-100: #CFD9E8;
  --navy-50:  #E5EBF3;
  --navy-25:  #F1F4F9;

  /* Accent */
  --gold:     #d4a72c;
  --gold-50:  #fdf7e2;

  /* Neutral */
  --ink-900: #0f1720;
  --ink-800: #1a2530;
  --ink-700: #2d3843;
  --ink-500: #5f6b76;
  --ink-400: #8892a0;
  --ink-300: #b8c1cb;
  --ink-200: #dfe4e9;
  --ink-100: #eef1f4;
  --ink-50:  #f6f8fa;
  --wh:      #ffffff;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  --shadow-xs: 0 1px 2px rgba(15,23,32,.04);
  --shadow-sm: 0 2px 8px rgba(15,23,32,.06);
  --shadow-md: 0 8px 24px rgba(15,23,32,.08);
  --shadow-lg: 0 20px 48px rgba(15,23,32,.12);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --font-sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
               'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

/* ─── Reset ─── */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--wh);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-style: normal !important;
}
img, svg { max-width: 100%; display: block; }
i, em, cite, address { font-style: normal !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: transform .3s var(--ease-out), background .25s var(--ease-out),
              color .25s var(--ease-out), border-color .25s var(--ease-out),
              box-shadow .25s var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary   { background: var(--brand-700); color: #fff; }
.btn-primary:hover   { background: var(--brand-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline   { background: #fff; color: var(--brand-700); border-color: var(--brand-700); }
.btn-outline:hover   { background: var(--brand-50); transform: translateY(-2px); }
.btn-ghost     { background: transparent; color: var(--ink-700); border-color: var(--ink-200); }
.btn-ghost:hover     { border-color: var(--ink-400); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }

/* ─── Topbar ─── */
.topbar {
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-100);
  font-size: 13px;
  color: var(--ink-500);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 36px;
}
.topbar-slogan { color: var(--ink-500); }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-link { color: var(--ink-700); transition: color .2s; padding: 4px 8px; }
.topbar-link:hover { color: var(--brand-700); }
.topbar-link--muted { color: var(--ink-400); cursor: not-allowed; }
.topbar-sep { color: var(--ink-300); }
@media (max-width: 720px) { .topbar-slogan { display: none; } }

/* ─── Header ─── */
.header {
  background: var(--wh);
  border-bottom: 1px solid var(--ink-100);
  position: sticky; top: 0; z-index: 90;
  transition: box-shadow .3s var(--ease-out);
}
.header.is-scrolled { box-shadow: 0 2px 12px rgba(15,23,32,.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-logo--dark {
  /* 다크 배경(메가메뉴/푸터) - 로고 뒤에 흰 카드 배경으로 시인성 확보 */
 
  padding: 6px 0px;
  border-radius: 8px;
}
.brand-mark { width: 40px; height: 40px; display: block; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-sub  { font-size: 11px; color: var(--ink-500); font-weight: 500; letter-spacing: .05em; }
.brand-name { font-size: 20px; color: var(--navy-700); font-weight: 800; letter-spacing: -.02em; }
.brand--white .brand-sub  { color: rgba(255,255,255,.7); }
.brand--white .brand-name { color: #fff; }
.brand--footer .brand-sub  { color: rgba(255,255,255,.65); }
.brand--footer .brand-name { color: #fff; }

/* ─── GNB (desktop) ─── */
.gnb { flex: 1; display: flex; justify-content: center; }
.gnb-list { display: flex; align-items: center; gap: 4px; }
.gnb-item { position: relative; }
.gnb-link {
  display: inline-flex; align-items: center; padding: 10px 14px;
  font-size: 15px; font-weight: 600; color: var(--ink-800);
  transition: color .2s var(--ease-out);
  border-radius: 8px;
  position: relative;
}
.gnb-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--brand-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.gnb-link:hover { color: var(--brand-700); }
.gnb-link:hover::after { transform: scaleX(1); }

.gnb-item--highlight .gnb-link {
  color: var(--brand-800);
  background: var(--brand-50);
  padding: 8px 14px;
  border-radius: 999px;
}
.gnb-item--highlight .gnb-link::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; margin-right: 6px; display: inline-block;
  animation: dot 2s var(--ease-in-out) infinite;
}
@keyframes dot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.gnb-item--highlight .gnb-link::after { display: none; }
.gnb-item--highlight .gnb-link:hover { background: var(--brand-100); color: var(--brand-800); }

.gnb-item.is-disabled .gnb-link { color: var(--ink-500); }

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

/* ─── Hamburger ─── */
.menu-btn {
  width: 44px; height: 44px; display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 10px; transition: background .2s;
  flex-shrink: 0;
}
.menu-btn:hover { background: var(--ink-50); }
.menu-btn span {
  width: 22px; height: 2px; background: var(--ink-800); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s var(--ease-out);
}
@media (max-width: 1180px) { .menu-btn { display: flex; } }
body.mega-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink-900); }
body.mega-open .menu-btn span:nth-child(2) { opacity: 0; }
body.mega-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink-900); }

/* ─── MEGA MENU (full overlay) ─── */
.mega {
  position: fixed; inset: 0; z-index: 100;
  background: #ffffff;
  color: var(--ink-900);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease-out),
              transform .45s var(--ease-out),
              visibility .35s;
}
.mega[hidden] { display: block; }
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-head {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid var(--ink-100);
}
.mega-head .brand-logo { background: transparent; padding: 0; }
.mega-close {
  width: 48px; height: 48px; color: var(--ink-700);
  border-radius: 12px;
  transition: background .2s, color .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.mega-close:hover { background: var(--ink-50); color: var(--ink-900); }
.mega-close svg { width: 24px; height: 24px; }

.mega-body { padding: 48px 24px 80px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.mega-col {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .55s var(--ease-out);
}
.mega.is-open .mega-col { opacity: 1; transform: translateY(0); }
.mega.is-open .mega-col:nth-child(1) { transition-delay: .05s; }
.mega.is-open .mega-col:nth-child(2) { transition-delay: .10s; }
.mega.is-open .mega-col:nth-child(3) { transition-delay: .15s; }
.mega.is-open .mega-col:nth-child(4) { transition-delay: .20s; }
.mega.is-open .mega-col:nth-child(5) { transition-delay: .25s; }
.mega.is-open .mega-col:nth-child(6) { transition-delay: .30s; }
.mega.is-open .mega-col:nth-child(7) { transition-delay: .35s; }
.mega.is-open .mega-col:nth-child(8) { transition-delay: .40s; }

.mega-col.is-highlight {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 16px;
  padding: 22px;
  margin: -22px;
}
.mega-col-head { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--ink-100); }
.mega-col-title {
  display: block;
  font-size: 18px; font-weight: 800; color: var(--navy-800);
  letter-spacing: -.01em;
  transition: color .2s;
}
a.mega-col-title:hover { color: var(--brand-700); }
.mega-col-title.is-locked { color: var(--ink-800); }
.mega-col-desc { margin-top: 6px; font-size: 12px; color: var(--ink-500); font-weight: 500; }

.mega-sub li { margin-bottom: 4px; }
.mega-sub a, .mega-sub .is-locked {
  display: block; padding: 8px 0;
  font-size: 15px; color: var(--ink-800); font-weight: 500;
  transition: color .2s, transform .2s var(--ease-out);
}
.mega-sub a:hover { color: var(--brand-700); transform: translateX(3px); }
.mega-sub .is-locked { color: var(--ink-400); cursor: not-allowed; display: flex; align-items: center; gap: 6px; }
.lock-badge {
  font-size: 10px; padding: 2px 7px; border-radius: 4px;
  background: var(--ink-100); color: var(--ink-500);
  letter-spacing: .02em; font-weight: 600;
}

.mega-foot {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--ink-100);
  text-align: center;
}
.mega-foot .btn-primary { background: var(--brand-700); color: #fff; }
.mega-foot .btn-primary:hover { background: var(--brand-800); }

@media (max-width: 1024px) { .mega-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  {
  .mega-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .mega-body { padding: 32px 20px 60px; }
  .mega-col-title { font-size: 16px; }
  .mega-sub a { padding: 6px 0; font-size: 13px; }
}
@media (max-width: 480px)  { .mega-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Prevent body scroll when mega open */
body.mega-open { overflow: hidden; }

/* ─── Hero ─── */
.hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  min-height: 480px;
}
.hero-copy .hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-100);
  color: var(--brand-800);
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.3;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-title .hi-em { color: var(--brand-700); }
.hero-desc {
  font-size: 16px; color: var(--ink-500);
  line-height: 1.75; margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 24px;
  overflow: hidden;
  background: var(--brand-50);
}
.hero-visual svg { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; top: 32px; right: 32px;
  background: #fff; border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  font-size: 14px; font-weight: 600; color: var(--ink-800);
  line-height: 1.4;
}
.hero-badge strong { color: var(--brand-700); font-weight: 800; }

.hero-nav { position: absolute; bottom: 24px; right: 24px; display: flex; gap: 8px; z-index: 3; }
.hero-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--ink-800);
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.hero-nav button:hover { background: #fff; transform: scale(1.05); }
.hero-nav svg { width: 18px; height: 18px; }

.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.hero-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  transition: width .3s var(--ease-out);
}
.hero-dots span.is-active { background: #fff; width: 22px; border-radius: 4px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; padding-bottom: 48px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* ─── Stats ─── */
.stats { padding: 40px 0; background: #fff; }
.stats-box {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.stats-head {
  text-align: center; margin-bottom: 24px;
  font-size: 18px; font-weight: 700; color: var(--ink-800);
}
.stats-head em { color: var(--ink-400); font-weight: 500; font-size: 14px; margin-left: 8px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.stat {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 14px; padding: 18px 20px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-50); color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-num { font-size: 22px; font-weight: 800; color: var(--ink-900); letter-spacing: -.02em; line-height: 1.1; }
.stat-label { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats-grid { grid-template-columns: 1fr; } }

/* ─── Section header ─── */
.section { padding: 72px 0; }
.section-head { margin-bottom: 40px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-title {
  font-size: 28px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -.02em;
  display: flex; align-items: center; gap: 10px;
}
.section-title .leaf { color: var(--brand-600); font-size: 24px; }
.section-more { color: var(--ink-500); font-size: 14px; transition: color .2s; }
.section-more:hover { color: var(--brand-700); }

/* ─── Business grid (4 cards) ─── */
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.biz-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .3s;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.biz-card-img {
  height: 180px; background: var(--brand-50);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.biz-card-img svg { width: 96px; height: 96px; color: var(--brand-600); }
.biz-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.biz-card-title { font-size: 18px; font-weight: 800; color: var(--ink-900); margin-bottom: 8px; }
.biz-card-desc  { font-size: 14px; color: var(--ink-500); line-height: 1.7; flex: 1; }
.biz-card-more {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 4px;
  color: var(--brand-700); font-size: 14px; font-weight: 600;
  transition: gap .3s var(--ease-out);
}
.biz-card:hover .biz-card-more { gap: 8px; }
@media (max-width: 1024px) { .biz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .biz-grid { grid-template-columns: 1fr; } }

/* ─── Campaign cards ─── */
.camp-wrap { display: grid; grid-template-columns: 2fr 2fr 2fr 1.4fr; gap: 20px; }
.camp-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg); padding: 22px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.camp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.camp-card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.camp-thumb {
  width: 80px; height: 80px; border-radius: 12px;
  background: var(--brand-50); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.camp-thumb svg { width: 42px; height: 42px; color: var(--brand-700); }
.camp-info { flex: 1; }
.camp-title { font-size: 16px; font-weight: 800; color: var(--ink-900); margin-bottom: 4px; }
.camp-desc  { font-size: 13px; color: var(--ink-500); line-height: 1.6; }

.camp-progress { margin-top: 8px; }
.camp-amount { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.camp-amount strong { color: var(--brand-700); font-weight: 800; }
.camp-bar {
  height: 8px; background: var(--ink-100); border-radius: 999px; overflow: hidden;
  position: relative;
}
.camp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-700));
  border-radius: 999px;
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.camp-percent {
  margin-top: 6px; text-align: right;
  font-size: 12px; font-weight: 700; color: var(--brand-700);
}

.camp-cta {
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.camp-cta::before {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.camp-cta-title { font-size: 20px; font-weight: 800; line-height: 1.35; }
.camp-cta-desc  { font-size: 13px; opacity: .85; margin: 8px 0 24px; line-height: 1.65; }
.camp-cta .btn {
  align-self: flex-start; background: #fff; color: var(--navy-800);
  padding: 10px 20px;
  font-weight: 700;
}
.camp-cta .btn:hover { background: var(--gold-50); }

@media (max-width: 1024px) { .camp-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .camp-wrap { grid-template-columns: 1fr; } }

/* ─── CTA band (before footer) ─── */
.cta-band {
  background: var(--navy-800);
  color: #fff;
}
.cta-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cta-item {
  display: flex; align-items: center; gap: 14px;
  padding: 28px 20px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .25s;
}
.cta-item:last-child { border-right: 0; }
.cta-item:hover { background: rgba(0,0,0,.08); }
.cta-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.12); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-icon svg { width: 24px; height: 24px; }
.cta-text { display: flex; flex-direction: column; line-height: 1.35; }
.cta-text strong { font-size: 15px; font-weight: 700; }
.cta-text em { font-size: 13px; opacity: .8; margin-top: 3px; }
@media (max-width: 900px) {
  .cta-band-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-item:nth-child(2) { border-right: 0; }
  .cta-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 480px) {
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .cta-item:last-child { border-bottom: 0; }
}

/* ─── Footer ─── */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); }
.footer-inner {
  padding: 56px 24px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
}
.footer-address { font-size: 13px; line-height: 1.9; margin-top: 20px; color: rgba(255,255,255,.6); font-style: normal; }
.footer-links-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-orgs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.footer-orgs a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.7);
  padding: 6px 0; transition: color .2s;
}
.footer-orgs a::before { content: '↗'; font-size: 11px; opacity: .5; }
.footer-orgs a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 12px; }
.footer-bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.5); }
.footer-meta a { color: rgba(255,255,255,.6); padding: 0 4px; transition: color .2s; }
.footer-meta a:hover { color: #fff; }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px 24px; }
}

/* ─── Coming Soon ─── */
.soon-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.soon { max-width: 480px; text-align: center; }
.soon-icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.soon-icon svg { width: 48px; height: 48px; }
.soon-title { font-size: 30px; font-weight: 800; color: var(--ink-900); margin-bottom: 12px; letter-spacing: -.02em; }
.soon-desc  { color: var(--ink-500); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.soon-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─── Reveal animations (NO BLUR) ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

html.no-js .reveal { opacity: 1; transform: none; }

/* Reduced motion respects but never blurs */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { transition: none; transform: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ─── Funding page (transparency) ─── */
.page-hero {
  background: #ffffff;
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--ink-100);
}
.page-hero-title { font-size: 32px; font-weight: 800; color: var(--ink-900); letter-spacing: -.02em; margin-bottom: 10px; }
.page-hero-desc  { color: var(--ink-500); font-size: 15px; }
.page-hero-eyebrow { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--gold-50); color: #92710e; font-size: 12px; font-weight: 700; margin-bottom: 14px; }

.fund-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 32px 0 20px; flex-wrap: wrap; }
.fund-select {
  padding: 10px 40px 10px 16px; border: 1.5px solid var(--ink-200); border-radius: 999px;
  font-size: 15px; font-weight: 600; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235f6b76' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none; cursor: pointer;
}
.fund-unit { font-size: 13px; color: var(--ink-500); }

.fund-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--ink-100); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.fund-table th, .fund-table td {
  padding: 14px 16px; text-align: right; font-size: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.fund-table th { background: var(--ink-50); color: var(--ink-700); font-weight: 700; text-align: center; }
.fund-table td:first-child, .fund-table th:first-child { text-align: center; }
.fund-table td:nth-child(4) { text-align: left; color: var(--ink-500); }
.fund-table tr:last-child td { border-bottom: 0; }
.fund-table tr.is-total td { background: var(--brand-25); font-weight: 700; color: var(--ink-900); }

.fund-actions { display: flex; gap: 10px; margin: 24px 0 0; justify-content: flex-end; flex-wrap: wrap; }

.disclosure-title { font-size: 22px; font-weight: 800; color: var(--ink-900); margin: 56px 0 8px; }
.disclosure-desc  { color: var(--ink-500); font-size: 14px; margin-bottom: 24px; }
.disclosure-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.disclosure-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .2s;
}
.disclosure-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.disclosure-icon {
  width: 42px; height: 42px; margin: 0 auto 10px;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.disclosure-icon svg { width: 22px; height: 22px; }
.disclosure-label { font-size: 14px; font-weight: 700; color: var(--ink-800); }
@media (max-width: 900px) { .disclosure-grid { grid-template-columns: repeat(2, 1fr); } }

.orgs-title { font-size: 18px; font-weight: 800; color: var(--ink-900); margin: 56px 0 16px; }
.orgs-row { display: flex; gap: 12px; flex-wrap: wrap; }
.orgs-row a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; background: #fff;
  border: 1px solid var(--ink-200); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-800);
  transition: border-color .2s, color .2s, background .2s;
}
.orgs-row a:hover { border-color: var(--brand-700); color: var(--brand-700); background: var(--brand-50); }
.orgs-row a::after { content: '↗'; font-size: 11px; opacity: .5; }

.mobile-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px) {
  .fund-table th, .fund-table td { padding: 10px 12px; font-size: 12px; white-space: nowrap; }
}

/* ─── Donation page ─── */
.don-hero { background: #ffffff; padding: 60px 0 32px; border-bottom: 1px solid var(--ink-100); }
.don-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.don-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .2s;
}
.don-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.don-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.don-icon svg { width: 26px; height: 26px; }
.don-name { font-size: 17px; font-weight: 800; color: var(--ink-900); margin-bottom: 8px; }
.don-txt  { font-size: 13px; color: var(--ink-500); line-height: 1.65; }
@media (max-width: 900px) { .don-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .don-cards { grid-template-columns: 1fr; } }

/* ─── Admin ─── */
.admin-bar {
  background: var(--navy-900); color: #fff; padding: 12px 20px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 200;
}
.admin-bar a { color: rgba(255,255,255,.85); margin-left: 14px; font-size: 13px; }
.admin-bar a:hover { color: #fff; }
.admin-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 44px); }
.admin-side { background: #fff; border-right: 1px solid var(--ink-100); padding: 24px 12px; }
.admin-side h3 { font-size: 11px; color: var(--ink-400); text-transform: uppercase; letter-spacing: .1em; margin: 16px 12px 8px; }
.admin-side a {
  display: block; padding: 10px 12px; border-radius: 8px;
  color: var(--ink-700); font-size: 14px; margin-bottom: 2px;
  transition: background .2s, color .2s;
}
.admin-side a:hover { background: var(--ink-50); color: var(--ink-900); }
.admin-side a.is-active { background: var(--brand-50); color: var(--brand-800); font-weight: 600; }
.admin-main { padding: 32px; background: var(--ink-50); }
.admin-h1 { font-size: 24px; font-weight: 800; color: var(--ink-900); margin-bottom: 24px; }
.admin-card { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow-xs); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--ink-100); text-align: left; }
.admin-table th { background: var(--ink-50); font-weight: 700; color: var(--ink-700); font-size: 13px; }
.admin-table td.right, .admin-table th.right { text-align: right; }
.admin-table td.center, .admin-table th.center { text-align: center; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.badge-on  { background: var(--brand-100); color: var(--brand-800); }
.badge-off { background: var(--ink-100); color: var(--ink-500); }
.form-row { display: block; margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink-700); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--ink-200); border-radius: 8px;
  font-family: var(--font-sans); font-size: 14px; background: #fff;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--brand-600);
}
.form-row textarea { min-height: 240px; resize: vertical; }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow-xs); }
.stat-card .num { font-size: 26px; font-weight: 800; color: var(--brand-700); }
.stat-card .lb  { font-size: 12px; color: var(--ink-500); margin-top: 4px; }
@media (max-width: 900px) {
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-side { border-right: 0; border-bottom: 1px solid var(--ink-100); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}

/* Login */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--ink-50); }
.login-card { max-width: 380px; width: 100%; background: #fff; border-radius: 16px; padding: 40px 32px; box-shadow: var(--shadow-md); }
.login-title { text-align: center; font-size: 20px; font-weight: 800; margin-bottom: 24px; color: var(--ink-900); }
.login-alert { background: #fef2f2; color: #b91c1c; font-size: 13px; padding: 10px 12px; border-radius: 8px; margin-bottom: 16px; }
.login-card .btn { width: 100%; margin-top: 8px; }

/* ─── About / Content pages ─── */
.about-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.about-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .2s;
  display: block;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.about-num { font-size: 12px; font-weight: 700; color: var(--brand-700); letter-spacing: .1em; margin-bottom: 20px; }
.about-card h3 { font-size: 20px; font-weight: 800; color: var(--ink-900); margin-bottom: 8px; letter-spacing: -.01em; }
.about-card p  { font-size: 14px; color: var(--ink-500); line-height: 1.65; margin-bottom: 24px; }
.about-more { display: inline-flex; align-items: center; gap: 4px; color: var(--brand-700); font-size: 14px; font-weight: 600; transition: gap .3s var(--ease-out); }
.about-card:hover .about-more { gap: 8px; }
@media (max-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .about-grid { grid-template-columns: 1fr; } }

.content-narrow { max-width: 780px; margin: 0 auto; }
.content-p {
  font-size: 16px; line-height: 1.9; color: var(--ink-700);
  margin-bottom: 24px;
}
.content-signature {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--ink-100);
  text-align: right; font-size: 15px; color: var(--ink-900);
}

/* ─── Purpose pillars ─── */
.purpose-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 40px;
}
.pillar {
  background: var(--brand-25); border: 1px solid var(--brand-100); border-radius: var(--radius);
  padding: 24px 20px;
}
.pillar-num { font-size: 12px; font-weight: 700; color: var(--brand-700); letter-spacing: .1em; margin-bottom: 12px; }
.pillar h4 { font-size: 16px; font-weight: 800; color: var(--ink-900); margin-bottom: 6px; }
.pillar p  { font-size: 13px; color: var(--ink-500); line-height: 1.65; }
@media (max-width: 720px) { .purpose-pillars { grid-template-columns: 1fr; } }

/* ─── Timeline (연혁) ─── */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--ink-100);
}
.timeline-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  padding: 16px 0;
  position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: -22px; top: 24px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand-600);
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--brand-100);
}
.timeline-date { display: flex; flex-direction: column; }
.timeline-date strong { font-size: 22px; font-weight: 800; color: var(--brand-700); line-height: 1; }
.timeline-date em { font-size: 13px; color: var(--ink-500); margin-top: 4px; }
.timeline-desc { font-size: 15px; color: var(--ink-800); line-height: 1.7; padding-top: 4px; }
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-date { flex-direction: row; align-items: baseline; gap: 8px; }
  .timeline-date strong { font-size: 18px; }
}

/* ─── Organization ─── */
.org-chart { max-width: 900px; margin: 0 auto; text-align: center; }
.org-chair, .org-board {
  display: inline-block; background: var(--brand-700); color: #fff;
  border-radius: 14px; padding: 20px 40px; min-width: 220px;
}
.org-board { background: var(--navy-700); }
.org-role { font-size: 12px; opacity: .85; margin-bottom: 4px; letter-spacing: .05em; }
.org-name { font-size: 18px; font-weight: 800; }
.org-board-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; font-size: 14px; font-weight: 600; }
.org-line {
  width: 2px; height: 40px; background: var(--ink-200); margin: 0 auto;
}
.org-depts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 8px;
}
.org-dept {
  background: #fff; border: 1.5px solid var(--brand-100); border-radius: 14px;
  padding: 20px 16px; text-align: center; position: relative;
}
.org-dept::before {
  content: ''; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 14px; background: var(--ink-200);
}
.org-dept h4 { font-size: 15px; font-weight: 800; color: var(--brand-800); margin-bottom: 4px; }
.org-dept p  { font-size: 12px; color: var(--ink-500); line-height: 1.5; }
.org-count {
  display: inline-block; margin-top: 10px; padding: 2px 10px;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
@media (max-width: 720px) { .org-depts { grid-template-columns: repeat(2, 1fr); } }

/* ─── Location ─── */
.location-list { margin-bottom: 40px; }
.location-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--ink-100);
  font-size: 15px; color: var(--ink-700); line-height: 1.6;
}
.location-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--brand-50); color: var(--brand-700);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.location-icon svg { width: 18px; height: 18px; }
.location-contact {
  background: var(--brand-25); border-radius: 14px; padding: 24px;
  text-align: center;
}
.location-contact h3 { font-size: 15px; font-weight: 800; color: var(--brand-800); margin-bottom: 10px; }
.location-contact p  { font-size: 14px; color: var(--ink-700); line-height: 1.8; }

/* ─── Document list (transparency subpages) ─── */
.doc-list { margin-top: 32px; }
.doc-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius);
  margin-bottom: 10px;
  transition: border-color .2s, box-shadow .3s;
}
.doc-item:hover { border-color: var(--brand-100); box-shadow: var(--shadow-sm); }
.doc-year {
  font-size: 20px; font-weight: 800; color: var(--brand-700);
}
.doc-title { font-size: 15px; color: var(--ink-800); font-weight: 600; }
@media (max-width: 560px) {
  .doc-item { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .doc-year { font-size: 14px; color: var(--ink-500); }
}

/* ============================================
   Mobile refinement (640px 이하)
   여백·타이포·간격 최적화
   ============================================ */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }

  /* Topbar */
  .topbar { font-size: 12px; }
  .topbar-inner { height: 40px; }
  .topbar-right { gap: 4px; }
  .topbar-link { padding: 4px 6px; }

  /* Header */
  .header-inner { height: 68px; gap: 12px; }
  .brand-logo { height: 36px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 18px; }
  .brand-sub  { font-size: 10px; }
  .menu-btn { width: 40px; height: 40px; }

  /* Hero */
  .hero { padding-bottom: 8px; }
  .hero-inner { padding-top: 28px; padding-bottom: 36px; gap: 24px; min-height: auto; }
  .hero-eyebrow { font-size: 12px; padding: 5px 12px; margin-bottom: 14px; }
  .hero-title { font-size: 26px; line-height: 1.35; letter-spacing: -.02em; margin-bottom: 14px; }
  .hero-desc { font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
  .hero-actions { gap: 10px; }
  .btn-lg { padding: 13px 22px; font-size: 15px; }
  .hero-nav { bottom: 16px; right: 16px; gap: 6px; }
  .hero-nav button { width: 36px; height: 36px; }
  .hero-badge { top: 20px; right: 20px; padding: 10px 14px; font-size: 12px; }

  /* Stats */
  .stats { padding: 24px 0; }
  .stats-box { padding: 22px 16px; border-radius: 16px; }
  .stats-head { font-size: 15px; margin-bottom: 18px; }
  .stats-head em { font-size: 12px; margin-left: 4px; }
  .stats-grid { gap: 10px; }
  .stat { padding: 14px 16px; gap: 12px; }
  .stat-icon { width: 40px; height: 40px; }
  .stat-icon svg { width: 20px; height: 20px; }
  .stat-num { font-size: 19px; }
  .stat-label { font-size: 12px; }

  /* Sections */
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 24px; }
  .section-title { font-size: 20px; }
  .section-title .leaf { font-size: 20px; }
  .section-more { font-size: 13px; }

  /* Business cards */
  .biz-grid { gap: 12px; }
  .biz-card-img { height: 150px; }
  .biz-card-img svg { width: 80px; height: 80px; }
  .biz-card-body { padding: 18px 20px; }
  .biz-card-title { font-size: 16px; }
  .biz-card-desc  { font-size: 13px; }
  .biz-card-more  { margin-top: 14px; font-size: 13px; }

  /* Campaign */
  .camp-wrap { gap: 12px; }
  .camp-card { padding: 18px; }
  .camp-thumb { width: 64px; height: 64px; }
  .camp-thumb svg { width: 32px; height: 32px; }
  .camp-title { font-size: 15px; }
  .camp-desc  { font-size: 12px; }
  .camp-cta   { padding: 22px 20px; }
  .camp-cta-title { font-size: 18px; }
  .camp-cta-desc  { font-size: 12px; margin-bottom: 18px; }

  /* CTA band */
  .cta-item { padding: 18px 20px; gap: 12px; }
  .cta-icon { width: 40px; height: 40px; }
  .cta-icon svg { width: 20px; height: 20px; }
  .cta-text strong { font-size: 14px; }
  .cta-text em { font-size: 12px; }

  /* Footer */
  .footer-inner { padding: 36px 20px 22px; gap: 28px; }
  .footer-address { font-size: 12px; line-height: 1.85; }
  .footer-orgs { grid-template-columns: 1fr; gap: 4px 0; }
  .footer-orgs a { font-size: 12px; padding: 5px 0; }
  .footer-bar { padding: 16px 0; }

  /* Page hero */
  .page-hero { padding: 40px 0 28px; }
  .page-hero-title { font-size: 24px; }
  .page-hero-desc  { font-size: 13px; }

  /* Funding */
  .fund-toolbar { margin: 24px 0 14px; }
  .fund-select { padding: 9px 36px 9px 14px; font-size: 14px; }
  .disclosure-grid { gap: 10px; }
  .disclosure-card { padding: 18px 12px; }
  .disclosure-icon { width: 38px; height: 38px; margin-bottom: 8px; }
  .disclosure-label { font-size: 12px; }
  .orgs-row a { padding: 10px 16px; font-size: 13px; }
  .orgs-title { font-size: 16px; margin: 40px 0 12px; }

  /* Content pages */
  .content-p { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
  .about-num { margin-bottom: 14px; }
  .about-card { padding: 24px 20px; }
  .about-card h3 { font-size: 18px; }
  .about-card p  { font-size: 13px; margin-bottom: 18px; }

  /* Timeline */
  .timeline { padding-left: 18px; }
  .timeline-item { padding: 12px 0; }

  /* Doc list */
  .doc-item { padding: 16px 18px; }
}

/* 아주 작은 화면 (iPhone SE 등) */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero-title { font-size: 23px; }
  .brand-logo { height: 32px; }
  .brand-name { font-size: 17px; }
  .topbar-link { font-size: 12px; padding: 4px 4px; }
  .btn-lg { padding: 12px 18px; font-size: 14px; }
}

/* 가로 여백 확실히 (Hero가 wrap padding을 상속하도록 보장) */
.hero > .wrap { padding-left: 24px; padding-right: 24px; }
@media (max-width: 640px) { .hero > .wrap { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 380px) { .hero > .wrap { padding-left: 16px; padding-right: 16px; } }

/* ─── 로고 컨텍스트별 크기 ─── */
.footer-brand .brand-logo { height: 52px; }
.mega-head .brand-logo { height: 44px; }

@media (max-width: 640px) {
  .footer-brand .brand-logo { height: 44px; }
  .mega-head .brand-logo    { height: 36px; }
}

/* 로그인 화면 로고 */
.login-brand { text-align: center; margin-bottom: 20px; }
.login-brand img { height: 44px; display: inline-block; }
