/* ═══════════════════════════════════════════════════
   GARIBONG 2 — Responsive Stylesheet
   Breakpoints:
     Mobile  : ~ 480px
     Tablet  : 481px ~ 768px
     Desktop : 769px +
   ═══════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════
   INTRO SPLASH (첫 접속 인트로)
   ════════════════════════════════════════════════════ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 42%, #173372 0%, #0d2461 55%, #081a40 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .9s ease;
}
.intro.hide { opacity: 0; pointer-events: none; }
.intro-inner { text-align: center; }
.intro-symbol { width: clamp(120px, 26vw, 180px); height: clamp(120px, 26vw, 180px); }

.intro-name {
  font-family: 'Jua', sans-serif;
  font-size: clamp(28px, 6vw, 44px); color: #fff; letter-spacing: 2px;
  margin-top: 22px; opacity: 0;
  animation: introName .8s ease forwards; animation-delay: 1.7s;
}
.intro-sub {
  font-size: clamp(12px, 2.4vw, 15px); color: rgba(255,255,255,.7);
  letter-spacing: 6px; margin-top: 8px; opacity: 0;
  animation: introName .8s ease forwards; animation-delay: 2s;
}
@keyframes introName { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* 외곽 원 — 그려지기 */
.intro .i-ring {
  stroke-dasharray: 340; stroke-dashoffset: 340;
  animation: introDraw 1.3s ease forwards;
}
/* 건물 — 그려지기 */
.intro .i-build { opacity: 0; animation: introPop .6s ease forwards; }
.intro .i-b1 { animation-delay: .7s; }
.intro .i-b2 { animation-delay: .95s; }
.intro .i-b3 { animation-delay: 1.1s; }
/* 태양 — 떠오르기 */
.intro .i-sun { opacity: 0; animation: introSun .7s ease forwards; animation-delay: 1.3s; }
.intro .i-horizon { opacity: 0; animation: introFade .5s ease forwards; animation-delay: 1.2s; }
.intro .i-rays { opacity: 0; transform-origin: 60px 70px; animation: introRays .6s ease forwards; animation-delay: 1.6s; }

@keyframes introDraw { to { stroke-dashoffset: 0; } }
@keyframes introPop  { from { opacity: 0; transform: translateY(8px) scale(.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introSun  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes introFade { to { opacity: 1; } }
@keyframes introRays { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .intro * { animation-duration: .01s !important; }
}

/* ════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-up {
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
.anim-fade {
  opacity: 0;
  animation: fadeIn .8s ease forwards;
  animation-delay: var(--d, 0s);
}
/* 파티클 캔버스 */
.hero-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
/* 심볼 링 궤도 */
.symbol-ring { position: relative; }
.ring-orbit {
  position: absolute; inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(147,197,253,.25);
  animation: orbit 9s linear infinite;
}
.ring-orbit::after {
  content: '';
  position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: #93c5fd; border-radius: 50%;
  box-shadow: 0 0 12px 3px rgba(147,197,253,.6);
  transform: translateX(-50%);
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* 스크롤 리빌 */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Pretendard', sans-serif;
  color: #1e293b; background: #fff; line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Design tokens ─────────────────────────────────── */
:root {
  --navy:    #0d2461;
  --blue:    #2563eb;
  --sky:     #93c5fd;
  --gold:    #d97706;
  --green:   #16a34a;
  --gray50:  #f8fafc;
  --gray100: #f1f5f9;
  --gray200: #e2e8f0;
  --gray400: #94a3b8;
  --gray600: #475569;
  --r:       14px;

  /* fluid spacing */
  --sp-xs:  clamp(8px,  2vw, 12px);
  --sp-sm:  clamp(12px, 3vw, 20px);
  --sp-md:  clamp(20px, 4vw, 32px);
  --sp-lg:  clamp(36px, 6vw, 64px);
  --sp-xl:  clamp(56px, 8vw, 100px);

  /* fluid font */
  --fs-sm:   clamp(12px, 1.5vw, 14px);
  --fs-base: clamp(14px, 2vw,   16px);
  --fs-lg:   clamp(16px, 2.5vw, 20px);
  --fs-h2:   clamp(24px, 4vw,   40px);
  --fs-hero: clamp(30px, 5.5vw, 56px);
}

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 28px);
}

/* ════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray200);
  transition: box-shadow .2s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.09); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: clamp(58px, 9vw, 70px);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-symbol { width: clamp(34px, 5vw, 42px); height: clamp(34px, 5vw, 42px); }
.logo-name { font-family: 'Jua', sans-serif; font-size: clamp(16px, 2.4vw, 19px); font-weight: 400; color: var(--navy); letter-spacing: .3px; line-height: 1.2; }
.logo-sub  { font-size: clamp(9px, 1.2vw, 11px); color: var(--gray400); font-weight: 500; }

/* GNav */
.gnav { display: flex; align-items: center; gap: 2px; }
.gnav a {
  font-size: var(--fs-sm); font-weight: 500; color: var(--gray600);
  padding: 8px 13px; border-radius: 8px; transition: all .15s; white-space: nowrap;
}
.gnav a:hover, .gnav a.active {
  background: var(--gray100); color: var(--navy); font-weight: 700;
}
.gnav .nav-cta {
  background: var(--navy); color: #fff !important; font-weight: 700 !important;
  padding: 9px 18px; border-radius: 9px; margin-left: 8px;
  transition: background .15s, transform .1s;
}
.gnav .nav-cta:hover { background: var(--blue); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--gray100);
  padding-bottom: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 15px clamp(16px, 5vw, 28px);
  font-size: var(--fs-base); border-bottom: 1px solid var(--gray100); color: var(--gray600);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--gray50); color: var(--navy); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.g1 { width: min(500px, 70vw); height: min(500px, 70vw); background: rgba(37,99,235,.25); top: -80px; right: -60px; }
.g2 { width: min(350px, 50vw); height: min(350px, 50vw); background: rgba(212,160,23,.12); bottom: 0; left: -50px; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: var(--sp-lg);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: var(--sky); font-size: clamp(10px, 1.5vw, 12px); font-weight: 600; letter-spacing: 1px;
  padding: 5px 13px; border-radius: 100px; margin-bottom: var(--sp-sm);
}
.hero-text h1 {
  color: #fff;
  font-size: var(--fs-hero);
  font-weight: 900; line-height: 1.18; letter-spacing: -1px;
  margin-bottom: var(--sp-sm);
}
.hero-text h1 em { color: var(--sky); font-style: normal; }
.hero-desc {
  color: rgba(255,255,255,.68); font-size: var(--fs-base);
  line-height: 1.85; margin-bottom: var(--sp-md);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: clamp(11px,2vw,14px) clamp(18px,3vw,28px);
  border-radius: 10px; font-size: var(--fs-base); font-weight: 700;
  transition: all .18s; white-space: nowrap;
}
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-ghost {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* Symbol */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: var(--sp-md); }
.symbol-ring {
  width: clamp(160px, 28vw, 260px); height: clamp(160px, 28vw, 260px);
  border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(37,99,235,.3), inset 0 0 40px rgba(255,255,255,.04);
}
.hero-symbol { width: 75%; height: 75%; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero-badges { display: flex; gap: 10px; width: 100%; }
.hbadge {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: clamp(10px,2vw,14px); text-align: center;
}
.hbadge-num   { display: block; font-size: clamp(14px,2.5vw,20px); font-weight: 900; color: #fff; }
.hbadge-label { display: block; font-size: clamp(10px,1.2vw,12px); color: var(--sky); margin-top: 3px; }

/* Wave divider */
.hero-wave { line-height: 0; margin-top: -1px; }
.hero-wave svg { width: 100%; height: clamp(40px, 6vw, 80px); display: block; }

/* ════════════════════════════════════════════════════
   SECTION commons
   ════════════════════════════════════════════════════ */
.section { padding: var(--sp-xl) 0; }
.bg-off   { background: var(--gray50); }
.bg-white { background: #fff; }
.bg-navy  { background: var(--navy); }

.sec-head { text-align: center; margin-bottom: clamp(36px, 6vw, 60px); }
.sec-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2.5px; color: var(--blue);
  background: #eff6ff; border-radius: 6px; padding: 4px 12px; margin-bottom: 12px;
}
.sec-head.light .sec-tag { background: rgba(255,255,255,.1); color: var(--sky); }
.sec-head h2 { font-size: var(--fs-h2); font-weight: 900; letter-spacing: -.5px; margin-bottom: 10px; }
.sec-head.light h2 { color: #fff; }
.sec-head p { font-size: var(--fs-base); color: var(--gray600); }
.sec-head.light p { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════════
   GREETING (조합장 인사말)
   ════════════════════════════════════════════════════ */
.greeting-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.greeting-photo {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; position: sticky; top: 90px;
}
.photo-circle {
  width: clamp(160px, 20vw, 220px);
  height: clamp(160px, 20vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gray200);
  box-shadow: 0 8px 32px rgba(13,36,97,.15);
  background: var(--gray100);
  flex-shrink: 0;
}
.chairman-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 15%;
}
.greeting-name { text-align: center; }
.greeting-name strong { display: block; font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.greeting-name span  { font-size: 12px; color: var(--gray400); line-height: 1.6; }

.greeting-content .sec-tag { margin-bottom: 12px; }
.greeting-content h2 {
  font-size: var(--fs-h2); font-weight: 900; color: var(--navy);
  letter-spacing: -.5px; margin-bottom: 24px;
}
.greeting-quote {
  font-size: 80px; line-height: .8; color: #bfdbfe;
  font-family: Georgia, serif; font-weight: 900;
  margin-bottom: -10px;
}
.greeting-text {
  border-left: 3px solid #bfdbfe;
  padding: 20px 0 20px 28px;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.greeting-text p { font-size: var(--fs-base); color: var(--gray600); line-height: 1.9; }
.greeting-text p:first-child { font-size: var(--fs-lg); font-weight: 600; color: var(--navy); }

.greeting-sig {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  padding-top: 24px; border-top: 1px solid var(--gray200);
}
.greeting-sig span  { font-size: 13px; color: var(--gray400); }
.greeting-sig strong { font-size: 16px; color: var(--navy); font-weight: 800; }

/* ════════════════════════════════════════════════════
   VISUAL (위치도 & 조감도)
   ════════════════════════════════════════════════════ */
.visual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.visual-block.reverse { direction: rtl; }
.visual-block.reverse > * { direction: ltr; }

.visual-text .sec-tag { margin-bottom: 12px; }
.visual-text h2 {
  font-size: var(--fs-h2); font-weight: 900;
  letter-spacing: -.5px; color: var(--navy);
  margin-bottom: 14px;
}
.visual-text p {
  font-size: var(--fs-base); color: var(--gray600);
  line-height: 1.85; margin-bottom: 22px;
}
.visual-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.visual-list li {
  font-size: var(--fs-base); color: var(--gray600);
  display: flex; align-items: center; gap: 10px;
  background: var(--gray50); border: 1px solid var(--gray200);
  border-radius: 8px; padding: 10px 16px;
  white-space: nowrap;
}

/* 모바일: 긴 항목도 한 줄 유지 (글자·여백 자동 축소) */
@media (max-width: 640px) {
  .visual-list li {
    font-size: clamp(9px, 2.7vw, 13px);
    gap: 6px; padding: 9px 11px; letter-spacing: -0.4px;
    overflow: hidden;
  }
}
@media (max-width: 380px) {
  .visual-list li { font-size: 8.5px; gap: 5px; padding: 8px 10px; }
}

.visual-img-wrap {
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 12px 48px rgba(13,36,97,.14);
  border: 1px solid var(--gray200);
  position: relative;
}
.visual-img {
  width: 100%; height: clamp(220px, 32vw, 420px);
  object-fit: cover; display: block;
  transition: transform .4s;
}
.visual-img-wrap:hover .visual-img { transform: scale(1.03); }
.img-caption {
  background: rgba(13,36,97,.75); color: #fff;
  font-size: 12px; font-weight: 600; padding: 8px 16px;
  backdrop-filter: blur(6px);
}

/* 이미지 로드 실패 시 플레이스홀더 */
.visual-img-wrap.img-missing .visual-img { display: none; }
.visual-img-wrap.img-missing::before {
  content: '🖼️ 이미지를 map.jpg / render.jpg 이름으로\A garibong2-site 폴더에 넣어주세요';
  white-space: pre;
  display: flex; align-items: center; justify-content: center; text-align: center;
  height: clamp(220px, 32vw, 420px);
  background: var(--gray100); color: var(--gray400);
  font-size: 13px; line-height: 1.8;
}

.visual-divider {
  height: 1px; background: var(--gray200);
  margin: clamp(48px, 7vw, 80px) 0;
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 18px);
}
.about-card {
  background: #fff; border: 1px solid var(--gray200);
  border-radius: var(--r); padding: clamp(20px, 3vw, 30px);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,36,97,.1);
  border-color: #bfdbfe;
}
.ac-wide { grid-column: span 2; }
.ac-icon { font-size: clamp(22px, 3vw, 28px); margin-bottom: 12px; }
.about-card h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gray400);
  text-transform: uppercase; margin-bottom: 8px;
}
.about-card p  { font-size: var(--fs-base); font-weight: 600; color: var(--navy); line-height: 1.6; }
.ac-wide p { font-size: var(--fs-base); font-weight: 400; color: var(--gray600); line-height: 1.85; }

/* ════════════════════════════════════════════════════
   EXPLORE (CI 의미 패널 / 임원 소개)
   ════════════════════════════════════════════════════ */
.explore-link { font-size: 14px; font-weight: 700; color: #2563eb; }

/* CI — 담긴 의미 반영 네이비 패널 */
.ci-feature {
  display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: center;
  background: linear-gradient(135deg, #1e40af 0%, #0d2461 100%);
  border-radius: var(--r); padding: 40px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(13,36,97,.18); transition: .18s; margin-bottom: 22px;
}
.ci-feature:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(13,36,97,.26); }
.ci-sym { width: 180px; height: 180px; }
.ci-sym svg { width: 100%; height: 100%; display: block; }
.ci-slogan { font-size: clamp(19px, 2.4vw, 25px); font-weight: 800; color: #fff; letter-spacing: -.3px; line-height: 1.45; margin-bottom: 10px; }
.ci-desc { font-size: var(--fs-base); line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 16px; }
.ci-meanings { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.ci-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: #e8eefb;
}
.ci-link { color: #fcd34d; }
.ci-feature:hover .ci-link { text-decoration: underline; }

/* 임원 소개 카드 */
.officer-feature {
  display: flex; align-items: center; gap: 26px;
  background: #fff; border: 1px solid var(--gray100); border-radius: var(--r);
  padding: 30px 36px; text-decoration: none; box-shadow: 0 2px 16px rgba(13,36,97,.05); transition: .18s;
}
.officer-feature:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(13,36,97,.12); border-color: #c7d2e8; }
.of-ic {
  width: 84px; height: 84px; flex-shrink: 0; border-radius: 22px; background: var(--gray50);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.officer-feature h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.officer-feature p { font-size: var(--fs-base); color: var(--gray600); line-height: 1.7; margin-bottom: 12px; }

@media (max-width: 640px) {
  .ci-feature { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 30px 22px; }
  .ci-sym { width: 140px; height: 140px; margin: 0 auto; }
  .ci-meanings { justify-content: center; }
  /* 슬로건: 모바일 폭에 맞춰 자동 축소해 한 줄 유지 */
  .ci-slogan { font-size: clamp(12px, 3.9vw, 18px); letter-spacing: -.5px; }
  .ci-feature { padding: 30px 18px; }
  .officer-feature { flex-direction: column; text-align: center; gap: 16px; padding: 26px 22px; }
}

/* ════════════════════════════════════════════════════
   NOTICE
   ════════════════════════════════════════════════════ */
.notice-list { display: flex; flex-direction: column; gap: 10px; }
.notice-row {
  display: flex; align-items: center; gap: clamp(10px, 2vw, 18px);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  transition: background .15s, border-color .15s;
}
.notice-row:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.nbadge {
  flex-shrink: 0; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,.12); color: var(--sky);
}
.nbadge.new { background: var(--gold); color: #fff; }
.notice-body { flex: 1; min-width: 0; }
.notice-body h4 { font-size: var(--fs-base); font-weight: 700; color: #fff; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notice-body p  { font-size: var(--fs-sm); color: rgba(255,255,255,.5); }
.notice-date { font-size: 12px; color: rgba(255,255,255,.35); flex-shrink: 0; }
.notice-arr  { font-size: 20px; color: rgba(255,255,255,.25); flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   PROGRESS
   ════════════════════════════════════════════════════ */
.steps { max-width: 680px; margin: 0 auto; }
.step { display: flex; gap: clamp(12px, 2.5vw, 20px); }

.step-left { display: flex; flex-direction: column; align-items: center; }
.step-dot {
  width: clamp(28px, 4.5vw, 36px); height: clamp(28px, 4.5vw, 36px);
  border-radius: 50%; flex-shrink: 0;
  background: var(--gray200); border: 3px solid var(--gray100);
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.step-dot svg { width: clamp(10px,1.5vw,14px); height: auto; }
.step.done   .step-dot { background: var(--green); border-color: #dcfce7; }
.step.active .step-dot { background: var(--blue);  border-color: #dbeafe; }
.step-dot.empty { background: #fff; border: 2px solid var(--gray200); }
.step-dot.pulse { animation: dotpulse 1.8s ease-in-out infinite; }
@keyframes dotpulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(37,99,235,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}
.step-line { width: 2px; flex: 1; background: var(--gray200); margin: 4px 0; min-height: 20px; }
.step.done   .step-line { background: #bbf7d0; }
.step.active .step-line { background: #bfdbfe; }
.step.last   .step-line { display: none; }

.step-card {
  background: #fff; border: 1px solid var(--gray200);
  border-radius: var(--r);
  padding: clamp(14px, 2.5vw, 18px) clamp(16px, 3vw, 22px);
  flex: 1; margin-bottom: 14px;
  transition: box-shadow .2s;
}
.step-card:hover { box-shadow: 0 6px 24px rgba(13,36,97,.08); }
.step.active .step-card { border-color: #93c5fd; background: #eff6ff; }

.step-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 6px; margin-bottom: 6px;
}
.step-badge.done     { background: #dcfce7; color: var(--green); }
.step-badge.active   { background: #dbeafe; color: var(--blue); }
.step-badge.upcoming { background: var(--gray100); color: var(--gray400); }
.step-card h4 { font-size: var(--fs-base); font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.step-card p  { font-size: var(--fs-sm); color: var(--gray600); }

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.ccard {
  display: flex; align-items: center; gap: 16px;
  background: var(--gray50); border: 1px solid var(--gray200);
  border-radius: var(--r); padding: clamp(16px,2.5vw,22px) clamp(18px,3vw,24px);
  transition: box-shadow .2s, border-color .2s;
}
.ccard:hover { box-shadow: 0 8px 32px rgba(13,36,97,.09); border-color: #bfdbfe; }
.ccard-icon { font-size: clamp(22px, 3vw, 28px); flex-shrink: 0; }
.ccard-body { min-width: 0; flex: 1; }
.ccard h4 { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gray400); margin-bottom: 4px; white-space: nowrap; }
.ccard-main { word-break: break-all; }
.ccard-main { font-size: var(--fs-base); font-weight: 700; color: var(--navy); }
.ccard-main a { color: inherit; text-decoration: none; }
.ccard-main a:hover { text-decoration: underline; }
.ccard-sub  { font-size: 12px; color: var(--gray400); margin-top: 2px; }
/* 푸터 전화·이메일 링크 */
.footer-left p a { color: inherit; text-decoration: none; }
.footer-left p a:hover { color: #fff; text-decoration: underline; }

.contact-map { position: sticky; top: 86px; }
.map-wrap {
  border-radius: var(--r); overflow: hidden;
  height: clamp(220px, 30vw, 300px);
  border: 1px solid var(--gray200);
  box-shadow: 0 4px 20px rgba(13,36,97,.08);
}
.map-wrap iframe { width: 100%; height: 100%; display: block; }
.map-addr {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 12px 16px;
  background: var(--gray50); border: 1px solid var(--gray200);
  border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--navy);
}
.map-placeholder {
  background: var(--gray100); border: 2px dashed var(--gray200);
  border-radius: var(--r); height: clamp(200px, 30vw, 280px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.map-placeholder span  { font-size: 36px; }
.map-placeholder p     { font-size: 15px; font-weight: 600; color: var(--gray600); }
.map-placeholder small { font-size: 12px; color: var(--gray400); }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
footer { background: #0f1e2f; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(32px,5vw,48px) 0 clamp(24px,4vw,32px);
  gap: var(--sp-md); flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-symbol { width: 30px; height: 30px; }
.footer-left p { font-size: 13px; color: var(--gray400); line-height: 1.8; }
.footer-nav { display: flex; gap: clamp(16px, 3vw, 28px); flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--gray400); transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom .container { padding-top: 20px; padding-bottom: 20px; font-size: 12px; color: #374151; }

/* ════════════════════════════════════════════════════
   RESPONSIVE — Tablet  (≤ 900px)
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero: stack vertically */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(52px,8vw,80px) 0 clamp(32px,5vw,52px);
  }
  .hero-visual { order: -1; }
  .hero-tag { display: inline-block; }
  .hero-btns { justify-content: center; }

  /* Greeting: stack on tablet */
  .greeting-wrap { grid-template-columns: 1fr; }
  .greeting-photo { position: static; flex-direction: row; justify-content: flex-start; gap: 20px; }
  .photo-circle { width: 90px; height: 90px; }
  .greeting-name { text-align: left; }

  /* Visual: stack on tablet */
  .visual-block, .visual-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .visual-block.reverse .visual-img-wrap { order: -1; }

  /* About: 2 cols, wide card spans all */
  .about-grid { grid-template-columns: 1fr 1fr; }
  .ac-wide { grid-column: span 2; }

  /* Contact: stack */
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-map  { position: static; }

  /* Footer: stack */
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Mobile  (≤ 640px)
   ════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* 모바일 본문 글자 키우기 (기본 14→17, 작은 12→14.5, 큰 16→19.5) */
  :root {
    --fs-sm:   14.5px;
    --fs-base: 17px;
    --fs-lg:   19.5px;
    --fs-h2:   27px;   /* 섹션 제목 24→27 */
  }
  /* 라벨·보조 텍스트도 함께 키움 */
  .ccard-sub, .greeting-name span, .greeting-sig span,
  .footer-left p, .footer-nav a { font-size: 14px; }
  .about-card label, .ccard h4 { font-size: 12.5px; }
  .step-badge { font-size: 12.5px; }

  /* Nav */
  .gnav      { display: none; }
  .hamburger { display: flex; }
  .logo-sub  { display: none; }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn       { justify-content: center; }
  .hero-badges { flex-direction: row; }
  .hbadge   { padding: 10px 6px; }

  /* About: single column */
  .about-grid { grid-template-columns: 1fr; }
  .ac-wide    { grid-column: span 1; }

  /* Notice: hide date/arrow, allow wrap */
  .notice-row  { flex-wrap: wrap; gap: 8px; }
  .notice-arr  { display: none; }
  .notice-date { width: 100%; text-align: right; font-size: 11px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.07); }
  .notice-body h4 { white-space: normal; }

  /* Progress */
  .step-card { padding: 14px 16px; }

  /* Contact */
  .ccard { flex-direction: row; }

  /* Footer */
  .footer-nav  { gap: 12px; }
  .footer-bottom .container { font-size: 11px; text-align: center; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Very small  (≤ 380px)
   ════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .logo-name { font-size: 13px; }
  .hbadge-num { font-size: 13px; }
  .hero-badges { flex-direction: column; width: 100%; max-width: 220px; margin: 0 auto; }
  .symbol-ring { width: 140px; height: 140px; }
}
