/* ═══════════════════════════════════════════════════════
   홈픽스브라더 · 신발장 리폼 업체
   구조 다양화 기록:
   Hero 타입: hero-split / 섹션순서: 패턴B(서비스 우선형)
   그리드: grid-3 / 레이블: label-badge / 버튼: btn-underline
   Primary 컬러: 파스텔 카키 #C4CBA0 (9. 팔레트에서 랜덤 선택)
   ═══════════════════════════════════════════════════════ */

:root {
  --primary: #C4CBA0;
  --primary-dark: #9BA679;
  --primary-ink: #4B5233;
  --bg: #ffffff;
  --bg-soft: #F7F7F3;
  --bg-dark: #1C1E17;
  --text: #211F1B;
  --text-muted: #6B6A63;
  --border: #E6E4DC;
  --card-radius: 1.25rem;
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  word-break: keep-all;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-weight: 800; margin: 0; word-break: keep-all; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
.section { padding: 6rem 1.25rem; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-sub { color: var(--text-muted); font-weight: 300; margin-top: 0.9rem; font-size: 1.02rem; }

/* 섹션 레이블 (H-4: label-badge) */
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; background: var(--primary); color: var(--primary-ink);
  padding: 0.3rem 0.85rem; border-radius: 9999px; margin-bottom: 1rem;
}

/* 버튼 (H-5: btn-underline) */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: transparent; border: none; padding: 0; margin: 0;
  color: var(--primary-ink); font-weight: 700; font-size: 1rem;
  border-bottom: 2px solid var(--primary); border-radius: 0;
  cursor: pointer; transition: opacity 0.25s ease, color 0.25s ease;
}
.btn-primary::after, .btn-outline::after { content: "\2192"; }
.btn-primary:hover, .btn-outline:hover { opacity: 0.7; }
.btn-primary.on-dark, .btn-outline.on-dark { color: #fff; border-bottom-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; }

/* ───────── Header ───────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.5rem; }
.logo img { width: 34px; height: 34px; border-radius: 8px; }
.nav-menu { display: flex; gap: 2.1rem; font-weight: 600; font-size: 0.95rem; }
.nav-menu a { transition: color 0.2s; }
.nav-menu a:hover { color: var(--primary-dark); }
.header-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--text);
  color: #fff; padding: 0.65rem 1.3rem; border-radius: 9999px; font-weight: 700; font-size: 0.9rem;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; }
.mobile-menu { display: none; position: fixed; inset: 72px 0 0 0; background: #fff; z-index: 99; padding: 2rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 1rem 0; font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid var(--border); }

@media (max-width: 768px) {
  .nav-menu, .header-cta.desktop-only { display: none; }
  .hamburger { display: flex; }
}

/* ───────── Hero (hero-split) ───────── */
#hero { padding: 140px 1.25rem 5rem; background: var(--bg-soft); }
.hero-split {
  max-width: var(--max-width); margin: 0 auto; display: grid;
  grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center;
}
.hero-left .section-label { }
.hero-left h1 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.25; letter-spacing: -0.02em; }
.hero-left .hero-desc { margin-top: 1.4rem; color: var(--text-muted); font-size: 1.05rem; font-weight: 300; max-width: 480px; }
.hero-service-links { margin-top: 2.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.hero-service-card {
  display: flex; align-items: center; gap: 0.8rem; background: #fff; border: 1px solid var(--border);
  border-radius: 1rem; padding: 0.8rem; transition: border-color 0.25s, transform 0.25s;
}
.hero-service-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.hero-service-card img { width: 52px; height: 52px; object-fit: cover; border-radius: 0.6rem; flex-shrink: 0; }
.hero-service-card .name { font-weight: 700; font-size: 0.88rem; }
.hero-service-card .link { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.hero-right { position: relative; }
.hero-slider { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 60px rgba(0,0,0,0.14); }
.hero-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slider img.active { opacity: 1; }
.hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
}
.hero-caption .brand { font-weight: 800; font-size: 1.05rem; }
.hero-caption .desc { font-size: 0.85rem; opacity: 0.9; margin-top: 0.2rem; font-weight: 300; }
.hero-caption .btn-row { margin-top: 0.9rem; gap: 1.2rem; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-service-links { grid-template-columns: 1fr 1fr; }
}

/* ───────── 신뢰 배지 ───────── */
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600;
  background: #fff; border: 1px solid var(--border); padding: 0.5rem 0.9rem; border-radius: 9999px; color: var(--text-muted);
}
.trust-badge svg { width: 14px; height: 14px; stroke: var(--primary-dark); flex-shrink: 0; }

/* ───────── 서비스 소개 ───────── */
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.service-card {
  display: block; border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; background: #fff; cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.1); }
.service-card .thumb { aspect-ratio: 3/4; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 1.1rem; }
.service-card .en-label { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--primary-dark); font-weight: 700; text-transform: uppercase; }
.service-card h3 { font-size: 1rem; margin-top: 0.3rem; }
.service-card .desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; font-weight: 300; }
.service-card .btn-outline { margin-top: 0.8rem; font-size: 0.82rem; }

@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }

/* ───────── 시공사례 포트폴리오 (H-3: grid-3) ───────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden;
  transition: all 0.3s ease; cursor: pointer; text-decoration: none; display: block; background: #fff;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); border-color: var(--primary); }
.portfolio-card .card-thumb { aspect-ratio: 3/4; overflow: hidden; }
.portfolio-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-card:hover .card-thumb img { transform: scale(1.05); }
.portfolio-card .card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; background: var(--primary); color: var(--primary-ink);
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 0.25rem; align-self: flex-start;
}
.card-title { font-weight: 800; font-size: 1rem; line-height: 1.4; color: var(--text); }
.card-sub { font-weight: 300; font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.card-sub svg { width: 13px; height: 13px; flex-shrink: 0; }
.card-more { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-top: 0.25rem; }
.portfolio-card:hover .card-more { color: var(--primary-dark); }

/* ───────── 프로세스 ───────── */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.process-step { text-align: center; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary-dark);
  margin: 0 auto 1rem; font-size: 1.1rem;
}
.process-step h3 { font-size: 0.98rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; font-weight: 300; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; } .process-step { display: flex; gap: 1.2rem; align-items: flex-start; } .process-num { margin: 0; flex-shrink: 0; } }

/* ───────── 회사 소개 ───────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-text p { color: var(--text-muted); font-weight: 300; margin-top: 1rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.about-stat { background: var(--bg-soft); border-radius: 1rem; padding: 1.3rem 1rem; text-align: center; }
.about-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); }
.about-stat .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ───────── 서비스 지역 ───────── */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.area-card { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.8rem; text-align: center; background: #fff; }
.area-card h3 { font-size: 1.05rem; }
.area-card p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.6rem; font-weight: 300; }
@media (max-width: 768px) { .area-grid { grid-template-columns: 1fr; } }

/* ───────── FAQ ───────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 1.5rem 0.5rem;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-weight: 700; font-size: 1rem; color: var(--text);
}
.faq-q .plus { font-size: 1.3rem; color: var(--primary-dark); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 0.5rem 1.5rem; color: var(--text-muted); font-weight: 300; font-size: 0.92rem; line-height: 1.7; }

/* ───────── CTA ───────── */
.cta-section { background: var(--bg-dark); color: #fff; text-align: center; padding: 5.5rem 1.25rem; }
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-section .section-sub { color: rgba(255,255,255,0.65); }
.cta-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 2rem; }
.cta-badges .trust-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.85); }
.cta-badges .trust-badge svg { stroke: var(--primary); }
.cta-btn-row { margin-top: 2.5rem; justify-content: center; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.95rem 1.9rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.98rem; border: 1px solid rgba(255,255,255,0.3);
}
.cta-btn.filled { background: var(--primary); color: var(--primary-ink); border-color: var(--primary); }
.cta-btn.filled:hover { background: var(--primary-dark); }
.cta-btn.ghost { color: #fff; }
.cta-btn.ghost:hover { background: rgba(255,255,255,0.1); }

/* ───────── Footer ───────── */
footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 4rem 1.25rem 2rem; font-size: 0.88rem; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .logo { margin-bottom: 0.9rem; }
.footer-brand p { color: var(--text-muted); font-weight: 300; line-height: 1.8; }
.footer-col h4 { font-size: 0.85rem; margin-bottom: 1rem; }
.footer-col a, .footer-col li { display: block; color: var(--text-muted); margin-bottom: 0.7rem; font-weight: 300; }
.footer-col a:hover { color: var(--primary-dark); }
.footer-bottom {
  max-width: var(--max-width); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.78rem; line-height: 1.9;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

/* ───────── Floating 버튼 ───────── */
.floating-btns { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; display: flex; flex-direction: column; gap: 0.7rem; }
.floating-btn {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.1rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.85rem; box-shadow: 0 10px 28px rgba(0,0,0,0.18); color: #fff;
}
.floating-btn svg { width: 17px; height: 17px; }
.floating-btn.call { background: var(--text); }
.floating-btn.sms { background: var(--primary-dark); }

/* ───────── 상세 페이지 공통 ───────── */
.detail-hero { position: relative; margin-top: 72px; height: 46vh; min-height: 320px; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .detail-hero { height: auto; aspect-ratio: 4/5; } }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.detail-hero-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; color: #fff; z-index: 2;
}
.back-link { font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.detail-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.detail-hero .sub { margin-top: 0.7rem; font-size: 0.95rem; opacity: 0.9; }

.info-bar { max-width: var(--max-width); margin: -2.5rem auto 0; padding: 0 1.25rem; position: relative; z-index: 3; }
.info-bar-inner {
  background: #fff; border-radius: var(--card-radius); box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 1.6rem;
}
.info-item { padding: 0.4rem 1rem; border-left: 1px solid var(--border); }
.info-item:first-child { border-left: none; }
.info-item .label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }
.info-item .value { font-size: 0.98rem; font-weight: 700; margin-top: 0.35rem; }
@media (max-width: 768px) { .info-bar-inner { grid-template-columns: 1fr 1fr; gap: 1rem; } .info-item { border-left: none; border-top: 1px solid var(--border); padding-top: 0.9rem; } .info-item:nth-child(-n+2) { border-top: none; } }

.detail-body { max-width: 860px; margin: 0 auto; padding: 5rem 1.25rem; }
.detail-body h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.detail-body .lead p { color: var(--text-muted); font-weight: 300; line-height: 1.95; margin-bottom: 1.3rem; font-size: 1.02rem; }

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.ba-col img { border-radius: 1rem; aspect-ratio: 1/1; object-fit: cover; }
.ba-col .ba-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; background: var(--bg-soft); padding: 0.3rem 0.8rem; border-radius: 9999px; margin-bottom: 0.8rem; }
.ba-col.text-only {
  border: 1px solid var(--border); border-radius: 1rem; padding: 1.8rem; background: #fff;
  aspect-ratio: 1/1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.ba-col.text-only .icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-soft); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0;
}
.ba-col.text-only .icon svg { width: 20px; height: 20px; stroke: var(--primary-dark); }
.ba-col.text-only p { color: var(--text-muted); font-weight: 300; font-size: 0.92rem; line-height: 1.85; }
@media (max-width: 640px) { .ba-grid { grid-template-columns: 1fr; } }

.summary-box { background: var(--bg-soft); border-radius: var(--card-radius); padding: 2rem; margin-top: 2rem; }
.summary-box li { display: flex; gap: 0.7rem; font-size: 0.95rem; margin-bottom: 0.8rem; align-items: flex-start; }
.summary-box li:last-child { margin-bottom: 0; }
.summary-box li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--primary-dark); }

.quote-block { border-left: 3px solid var(--primary); padding: 1.6rem 0 1.6rem 1.6rem; margin-top: 2.5rem; }
.quote-block p { font-size: 1.05rem; font-weight: 500; line-height: 1.85; color: var(--text); font-style: normal; }
.quote-block .sign { margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.related-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 640px) { .related-links { grid-template-columns: 1fr; } }

.process-detail { display: flex; flex-direction: column; gap: 2.2rem; margin-top: 2rem; }
.process-detail-item { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; align-items: center; }
.process-detail-item img { border-radius: 1rem; aspect-ratio: 3/4; object-fit: cover; }
.process-detail-item .step-title { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; font-size: 1.02rem; }
.process-detail-item p.desc { color: var(--text-muted); font-weight: 300; margin-top: 0.6rem; font-size: 0.92rem; line-height: 1.8; }
@media (max-width: 640px) { .process-detail-item { grid-template-columns: 1fr; } }

/* 지역 안내 페이지 - 비교표 */
.compare-table-wrap { overflow-x: auto; margin-top: 1.5rem; border: 1px solid var(--border); border-radius: var(--card-radius); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table th, .compare-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg-soft); font-weight: 700; white-space: nowrap; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.highlight { color: var(--primary-dark); font-weight: 700; }
.checklist-box { background: var(--bg-soft); border-radius: var(--card-radius); padding: 2rem; margin-top: 1.5rem; }
.checklist-box li { display: flex; gap: 0.7rem; font-size: 0.95rem; margin-bottom: 0.9rem; align-items: flex-start; }
.checklist-box li:last-child { margin-bottom: 0; }
.checklist-box li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; stroke: var(--primary-dark); }
.story-block { border-left: 3px solid var(--primary); padding: 1.4rem 0 1.4rem 1.6rem; margin-top: 1.5rem; background: var(--bg-soft); border-radius: 0 var(--card-radius) var(--card-radius) 0; }
.story-block p { line-height: 1.85; }
.story-block .story-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.6rem; }

/* NSEO 축약 카드 */
.nseo-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 768px) { .nseo-mini-grid { grid-template-columns: 1fr; } }
.related-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 768px) { .related-page-grid { grid-template-columns: 1fr; } }
.related-page-card { border: 1px solid var(--border); border-radius: 1rem; padding: 1.3rem; }
.related-page-card h4 { font-size: 0.95rem; }
.related-page-card .btn-outline { margin-top: 0.7rem; font-size: 0.85rem; }

/* 상담 페이지 */
.step-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .step-3col { grid-template-columns: 1fr; } }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .guide-grid { grid-template-columns: 1fr; } }
.guide-card { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.guide-card img { aspect-ratio: 3/4; object-fit: cover; }
.guide-card .cap { padding: 1rem; font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }

/* 사이트맵 페이지 */
.sitemap-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .sitemap-cat-grid { grid-template-columns: 1fr; } }
.sitemap-cat { border: 1px solid var(--border); border-radius: var(--card-radius); padding: 1.6rem; }
.sitemap-cat h3 { font-size: 1.02rem; margin-bottom: 0.9rem; }
.sitemap-cat li { margin-bottom: 0.6rem; }
.sitemap-cat a { font-size: 0.9rem; color: var(--text-muted); }
.sitemap-cat a:hover { color: var(--primary-dark); }
