/* ══════════════════════════════════════════
   Artlogy — Landing Page CSS
   (global.css 위에 적용)

   artlogy = 한국어 미술 입문 콘텐츠 사이트.
   2026-05 리포지셔닝: SaaS 결 클래스(.hero·.feature-*·.stat-*·.signup-*·
   .audience-*·.cta-*·.blog-card-*·.pain-list·.landing-quote)는 모두 제거.
   ══════════════════════════════════════════ */

/* 랜딩 페이지 body 오버라이드: 흰 배경 */
body {
  background: #fff;
  color: #1a1a1a;
}

/* ── 섹션 공통 ── */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-alt {
  background: #FAFAF8;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #8B7355;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  word-break: keep-all;
}

.section-body {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.section-body p {
  margin-bottom: 16px;
}

/* ── MBTI CTA Card ── */
.mbti-card {
  display: block;
  margin-top: 28px;
  text-decoration: none;
  background: #FFFDF8;
  border: 1px solid #E0D8CE;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}

.mbti-card:hover {
  border-color: #C4A77D;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
  transform: translateY(-2px);
}

.mbti-card-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mbti-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mbti-card-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.mbti-card-sub {
  font-size: 13px;
  color: #888;
}

.mbti-card-arrow {
  font-size: 20px;
  color: #C4A77D;
  flex-shrink: 0;
}

/* ── Landing Footer ── */
.landing-footer {
  background: #111;
  padding: 48px 24px;
  text-align: center;
}

.landing-footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.landing-footer-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.landing-footer-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.landing-footer-links {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.landing-footer-links a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.landing-footer-links a:hover {
  color: #ccc;
}

.landing-footer-copy {
  margin-top: 20px;
  font-size: 12px;
  color: #555;
}

.landing-footer-copy a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-footer-copy a:hover {
  color: #ccc;
}

/* ══════════════════════════════════════════
   리포지셔닝 신규 섹션 (.lp-*)
   ══════════════════════════════════════════ */

/* Hero */
.lp-hero {
  position: relative;
  padding: 96px 24px 72px;
  text-align: center;
  background: #FFFDF8;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.78);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.lp-hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 18px;
  word-break: keep-all;
}
.lp-hero-sub {
  font-size: 16px;
  color: #555;
  margin: 0 auto 40px;
  max-width: 480px;
  word-break: keep-all;
  line-height: 1.7;
}

/* Category chips */
.lp-category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lp-chip {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #E0D8CE;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8B7355;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-chip:hover {
  background: #fff;
  border-color: #C4A77D;
  color: #6B5B4F;
  transform: translateY(-1px);
}

/* Featured cards */
.lp-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.lp-featured-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid #E0D8CE;
  border-radius: 12px;
  padding: 24px 24px 28px;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-featured-card:hover {
  border-color: #C4A77D;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.08);
}
.lp-featured-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8B7355;
  text-transform: uppercase;
}
.lp-featured-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}
.lp-featured-sub {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
}

/* Series grid */
.lp-series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 32px;
}
.lp-series-block {
  padding: 24px 0 0;
  border-top: 1px solid #E0D8CE;
}
.lp-series-block:first-child {
  border-top: none;
  padding-top: 0;
}
.lp-series-head {
  margin-bottom: 14px;
}
.lp-series-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.5px;
}
.lp-series-count {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0;
}
.lp-series-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}
.lp-series-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-series-list li {
  padding: 0;
  margin: 0;
}
.lp-series-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #f0e9de;
  text-decoration: none;
  transition: padding-left 0.2s, background 0.2s;
}
.lp-series-item:hover {
  padding-left: 8px;
}
.lp-series-item-title {
  display: block;
  font-family: 'Noto Serif KR', serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
  line-height: 1.4;
}
.lp-series-item-sub {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}
.lp-series-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: #8B7355;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.lp-series-more:hover {
  color: #6B5B4F;
}

/* About */
.lp-about .section-body p {
  margin-bottom: 16px;
}
.lp-about-note {
  margin-top: 28px !important;
  padding-top: 20px;
  border-top: 1px solid #E0D8CE;
  font-size: 14px !important;
  color: #888 !important;
  line-height: 1.7;
}
.lp-about-note a {
  color: #8B7355;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.lp-about-note a:hover {
  color: #6B5B4F;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .section { padding: 100px 24px; }
  .section-title { font-size: 28px; }
  .lp-hero { padding: 120px 24px 96px; }
  .lp-hero-title { font-size: 40px; }
  .lp-hero-sub { font-size: 17px; margin-bottom: 48px; }
  .lp-featured-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .lp-series-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
  }
  .lp-series-block:nth-child(-n+2) {
    border-top: none;
    padding-top: 0;
  }
}

@media (min-width: 1024px) {
  .section-inner { max-width: 800px; }
  .lp-hero-title { font-size: 44px; }
  .lp-featured-title { font-size: 19px; }
}
