/*
Theme Name: 손끝세 선교회
Theme URI: https://krdbm.org
Author: 손끝세 선교회
Author URI: https://krdbm.org
Description: 농맹인 선교회 손끝세 공식 홈페이지 테마
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: sonkkeutse
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;500;700&family=Noto+Sans+KR:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F2EA;
  --warm-white: #FBF8F3;
  --gold: #C9A96E;
  --gold-dark: #A07840;
  --brown: #5C3D1E;
  --brown-pale: #E8D9C4;
  --navy: #1E2D4A;
  --text-dark: #2C1A0E;
  --text-mid: #6B4C2F;
  --text-light: #A08060;
  --border: rgba(92,61,30,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; background: var(--warm-white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; margin: 0; }

img { max-width: 100%; height: auto; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 80px;
  background: rgba(251,248,243,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.site-logo img { width: 68px; height: 68px; object-fit: contain; }
.site-logo-text { font-family: 'Noto Serif KR', serif; font-size: 1.3rem; font-weight: 700; color: var(--brown); }
.site-logo-text span { color: var(--gold); }

/* 네비게이션 */
.main-nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.main-nav ul li a { font-size: 0.95rem; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.main-nav ul li a:hover { color: var(--gold-dark); }

/* 드롭다운 */
.main-nav ul li { position: relative; }
.main-nav ul li ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 0.5px solid var(--border);
  border-radius: 4px; min-width: 160px; padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); list-style: none;
  flex-direction: column; gap: 0;
}
.main-nav ul li:hover ul { display: flex; }
.main-nav ul li ul li a { display: block; padding: 0.5rem 1rem; font-size: 0.88rem; color: var(--text-mid); }
.main-nav ul li ul li a:hover { background: var(--cream); color: var(--brown); }

/* CTA 버튼 */
.main-nav .nav-cta > a {
  background: var(--gold) !important; color: white !important;
  padding: 0.5rem 1.3rem; border-radius: 4px; font-weight: 600 !important;
}
.main-nav .nav-cta > a:hover { background: var(--gold-dark) !important; }

/* ── BUTTONS ── */
.btn-primary { background: var(--brown); color: white; padding: 0.85rem 2rem; font-size: 0.88rem; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; border-radius: 2px; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--gold-dark); color: white; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(92,61,30,0.3); color: var(--brown); padding: 0.85rem 2rem; font-size: 0.88rem; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; border-radius: 2px; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-gold { background: var(--gold); color: white; padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 600; text-decoration: none; border-radius: 4px; display: inline-block; transition: background 0.2s; border: none; cursor: pointer; font-family: 'Noto Sans KR', sans-serif; }
.btn-gold:hover { background: var(--gold-dark); color: white; }

/* ── SECTION COMMON ── */
.section-wrap { padding: 6rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 1.5rem; font-family: 'Noto Serif KR', serif; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-label-small { font-size: 0.78rem; letter-spacing: 0.14em; color: var(--gold-dark); font-weight: 500; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.section-title { font-family: 'Noto Serif KR', serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: var(--brown); line-height: 1.35; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.8; max-width: 560px; margin-bottom: 2rem; }

/* ── HERO (메인) ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--warm-white);
  padding: 2rem 3rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,169,110,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,110,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,248,243,1) 50%, rgba(251,248,243,0.2) 100%); }
.hero-emblem {
  position: absolute; right: 5rem; top: 50%; transform: translateY(-50%);
  width: 260px; height: 260px;
  border: 1.5px solid rgba(201,169,110,0.28); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-emblem::before { content: ''; position: absolute; inset: 28px; border: 1px solid rgba(201,169,110,0.15); border-radius: 50%; }
.hero-emblem::after { content: ''; position: absolute; inset: 56px; border: 1px solid rgba(201,169,110,0.08); border-radius: 50%; }
.hero-emblem-text { font-family: 'Noto Serif KR', serif; font-size: 1.55rem; font-weight: 700; color: var(--gold-dark); text-align: center; line-height: 1.6; position: relative; z-index: 1; }
.hero-content { position: relative; max-width: 560px; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.14em; color: var(--gold-dark); font-weight: 500; margin-bottom: 1.5rem; text-transform: uppercase; }
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Noto Serif KR', serif; font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 700; color: var(--brown); line-height: 1.2; margin-bottom: 1.25rem; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-slogan { font-family: 'Noto Serif KR', serif; font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; border-left: 2px solid var(--gold); padding-left: 1rem; }
.hero-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO (서브페이지) ── */
.page-hero { background: var(--navy); padding: 8rem 3rem 4rem; color: white; }
.page-hero h1 { font-family: 'Noto Serif KR', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.8; }

/* ── 손끝세 이야기 (블로그) ── */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.post-card { background: white; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(92,61,30,0.1); }
.post-card a { text-decoration: none; color: inherit; }
.post-thumbnail { height: 200px; background: var(--brown-pale); overflow: hidden; position: relative; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.post-thumbnail-placeholder { height: 200px; background: linear-gradient(135deg, var(--brown-pale), #C5A87A); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.post-category-badge { position: absolute; bottom: 0.75rem; left: 0.75rem; background: var(--brown); color: white; font-size: 0.72rem; padding: 0.25rem 0.6rem; border-radius: 2px; letter-spacing: 0.04em; }
.post-body { padding: 1.25rem; }
.post-date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.4rem; }
.post-title { font-family: 'Noto Serif KR', serif; font-size: 1rem; font-weight: 700; color: var(--brown); line-height: 1.45; margin-bottom: 0.5rem; }
.post-excerpt { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.post-more { display: inline-block; background: var(--gold); color: white; font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 2px; text-decoration: none; }

/* 단일 게시글 */
.single-post { max-width: 780px; margin: 0 auto; padding: 2rem 0; }
.single-post-header { margin-bottom: 2rem; }
.single-post-category { font-size: 0.78rem; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.single-post-title { font-family: 'Noto Serif KR', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--brown); line-height: 1.3; margin-bottom: 1rem; }
.single-post-meta { font-size: 0.82rem; color: var(--text-light); padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.single-post-thumbnail { margin-bottom: 2rem; border-radius: 4px; overflow: hidden; }
.single-post-thumbnail img { width: 100%; height: auto; }
.single-post-content { font-size: 1rem; color: var(--text-mid); line-height: 1.9; }
.single-post-content p { margin-bottom: 1.25rem; }
.single-post-content h2 { font-family: 'Noto Serif KR', serif; font-size: 1.4rem; font-weight: 700; color: var(--brown); margin: 2rem 0 0.75rem; }
.single-post-content img { border-radius: 4px; margin: 1rem 0; }
.single-post-content blockquote { border-left: 3px solid var(--gold); padding-left: 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--text-mid); }
.post-nav { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); gap: 1rem; }
.post-nav a { font-size: 0.88rem; color: var(--gold-dark); text-decoration: none; max-width: 45%; line-height: 1.5; }
.post-nav a:hover { color: var(--brown); }

/* ── ABOUT 페이지 ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.about-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.2rem; }
.about-image { background: var(--brown-pale); min-height: 340px; border-radius: 4px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.pastor-box { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; }
.pastor-label { font-size: 0.72rem; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.pastor-name { font-family: 'Noto Serif KR', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown); }

/* 비전 */
.vision-box { background: var(--navy); border-radius: 4px; padding: 2.5rem; margin-bottom: 2rem; }
.vision-label { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--gold); font-weight: 500; text-transform: uppercase; margin-bottom: 0.75rem; }
.vision-box p { font-family: 'Noto Serif KR', serif; font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.9; }
.vision-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.vision-list li { font-size: 0.92rem; color: var(--text-mid); padding-left: 1.2rem; position: relative; line-height: 1.7; }
.vision-list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

/* 미션 */
.mission-items { display: flex; flex-direction: column; gap: 3rem; margin-top: 3rem; }
.mission-item { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.mission-item.reverse { direction: rtl; }
.mission-item.reverse > * { direction: ltr; }
.mission-img { background: var(--brown-pale); min-height: 220px; border-radius: 4px; overflow: hidden; }
.mission-img img { width: 100%; height: 100%; object-fit: cover; }
.mission-num { display: inline-block; background: var(--gold); color: white; font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 2px; margin-bottom: 0.5rem; }
.mission-text h3 { font-family: 'Noto Serif KR', serif; font-size: 1.25rem; font-weight: 700; color: var(--brown); margin-bottom: 0.75rem; }
.mission-text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; }

/* 핵심가치 */
.values-pills { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.value-pill { background: white; border: 1px solid var(--border); border-radius: 4px; padding: 0.85rem 1.5rem; }
.value-pill strong { font-family: 'Noto Serif KR', serif; font-size: 1rem; font-weight: 700; color: var(--brown); display: block; }
.value-pill small { font-size: 0.75rem; color: var(--text-light); }

/* 팀 */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: white; border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; }
.team-avatar { width: 56px; height: 56px; background: var(--brown-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif KR', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown); margin-bottom: 1rem; }
.team-role { font-size: 0.72rem; color: var(--gold-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.25rem; }
.team-name { font-family: 'Noto Serif KR', serif; font-size: 1.05rem; font-weight: 700; color: var(--brown); margin-bottom: 0.25rem; }
.team-detail { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* 참여 */
.join-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.join-card { border: 1px solid var(--border); border-radius: 4px; padding: 2rem; text-align: center; background: var(--cream); transition: border-color 0.2s, transform 0.2s; text-decoration: none; display: block; color: inherit; }
.join-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.join-icon { width: 56px; height: 56px; background: var(--brown-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; }
.join-type { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 500; text-transform: uppercase; margin-bottom: 0.4rem; }
.join-name { font-family: 'Noto Serif KR', serif; font-size: 1.05rem; font-weight: 700; color: var(--brown); margin-bottom: 0.6rem; }
.join-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.join-badge { display: inline-block; margin-top: 1rem; background: var(--gold); color: white; font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.9rem; border-radius: 20px; }

/* ── 농맹인 알아보기 ── */
.db-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.db-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; }
.db-stat { background: var(--navy); border-radius: 4px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.db-stat-num { font-family: 'Noto Serif KR', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.db-stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.comm-title { font-family: 'Noto Serif KR', serif; font-size: 1.05rem; font-weight: 700; color: var(--brown); margin-bottom: 1rem; }
.comm-cards { display: flex; flex-direction: column; gap: 1rem; }
.comm-card { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 1.25rem; }
.comm-card-name { font-weight: 700; color: var(--brown); margin-bottom: 0.3rem; }
.comm-card-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.misconception-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.misconception-card { background: white; border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; }
.mq { font-size: 0.9rem; font-weight: 700; color: var(--brown); margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.mq::before { content: 'Q. '; color: var(--gold); }
.ma { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }
.ma::before { content: 'A. '; font-weight: 700; color: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.why-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 1.5rem; }
.why-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-title { font-family: 'Noto Serif KR', serif; font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.why-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── 사역 페이지 ── */
.service-block { padding: 5rem 3rem; }
.service-block:nth-child(even) { background: var(--cream); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-images { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.5rem; height: 280px; }
.service-img-main { background: var(--brown-pale); border-radius: 4px; grid-row: span 2; overflow: hidden; }
.service-img-main img { width: 100%; height: 100%; object-fit: cover; }
.service-img-sm { background: var(--brown-pale); opacity: 0.75; border-radius: 4px; }
.service-num { display: inline-block; background: var(--gold); color: white; font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 2px; margin-bottom: 0.75rem; }
.service-text h2 { font-family: 'Noto Serif KR', serif; font-size: 1.6rem; font-weight: 700; color: var(--brown); margin-bottom: 1rem; }
.service-text p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 0.8rem; }

/* ── 문의 페이지 ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info h3 { font-family: 'Noto Serif KR', serif; font-size: 1.2rem; font-weight: 700; color: var(--brown); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: var(--brown-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-label { font-size: 0.72rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.contact-value a { color: var(--gold-dark); text-decoration: none; }
.account-box { margin-top: 2rem; padding: 1.5rem; background: var(--cream); border-radius: 4px; border-left: 3px solid var(--gold); }
.account-label { font-size: 0.78rem; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.account-num { font-family: 'Noto Serif KR', serif; font-size: 1rem; font-weight: 700; color: var(--brown); }

/* 워드프레스 폼 */
.wpcf7-form { background: var(--cream); border-radius: 4px; padding: 2rem; }
.wpcf7-form h3 { font-family: 'Noto Serif KR', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown); margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-mid); margin-bottom: 0.4rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%; padding: 0.75rem 1rem; font-size: 0.9rem;
  font-family: 'Noto Sans KR', sans-serif;
  border: 1px solid var(--border); border-radius: 4px;
  background: white; color: var(--text-dark); outline: none;
  transition: border-color 0.2s;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--gold); }
.wpcf7-form textarea { min-height: 120px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  width: 100%; background: var(--gold); color: white;
  padding: 0.85rem; font-size: 0.95rem; font-weight: 600;
  font-family: 'Noto Sans KR', sans-serif;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--gold-dark); }

/* ── CTA 배너 ── */
.cta-dark { background: var(--navy); padding: 5rem 3rem; text-align: center; }
.cta-dark h2 { font-family: 'Noto Serif KR', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: white; margin-bottom: 1rem; }
.cta-dark p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-box { background: white; border-radius: 8px; padding: 3rem 4rem; max-width: 600px; margin: 0 auto; text-align: center; }
.cta-box h2 { font-family: 'Noto Serif KR', serif; font-size: 1.6rem; color: var(--brown); margin-bottom: 0.75rem; }
.cta-box p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* ── FOOTER ── */
.site-footer { background: #2C1A0E; padding: 3rem; color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.9; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer-logo-text { font-family: 'Noto Serif KR', serif; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.4rem; display: block; }
.footer-logo-text span { color: var(--gold); }
.footer-slogan { font-style: italic; color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-bottom: 1rem; }
.footer-col-title { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; padding: 0; margin: 0; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 0 1.5rem; }
  .main-nav { display: none; }
  .section-wrap { padding: 4rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-emblem { display: none; }
  .about-grid, .db-grid, .mission-item, .service-layout,
  .contact-grid, .team-grid, .join-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-item.reverse, .service-layout.reverse { direction: ltr; }
  .misconception-grid, .why-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .cta-box { padding: 2rem 1.5rem; }
}
