/* =============================================
   로컬 지역 상세 페이지 공통 스타일
   ============================================= */

/* ---- 공통 레이아웃 ---- */
.local-page-wrap {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

.lp-section {
  padding: 90px 40px;
}

.lp-section.lp-bg-light {
  background: #f8f6f2;
}

.lp-section.lp-services-dark {
  background: #111;
  color: #fff;
}

.lp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.lp-inner-center {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- 제목 ---- */
.lp-h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #111;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ---- 텍스트 블록 ---- */
.lp-text-block {
  padding: 10px 0;
}

.lp-text-block p {
  font-size: 15px;
  color: #555;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

/* ---- 이미지 블록 ---- */
.lp-img-block img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ---- 카드 그리드 ---- */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.lp-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 26px;
  transition: border-color 0.3s, background 0.3s;
}

.lp-card:hover {
  border-color: #b8860b;
  background: rgba(184, 134, 11, 0.07);
}

.lp-card-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.lp-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.lp-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* ---- 갤러리 ---- */
.lp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-top: 50px;
}

.lp-gallery-4 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}

.lp-gallery-4 .lp-gallery-item:first-child {
  grid-row: span 2;
}

.lp-gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lp-gallery-item.lp-gallery-wide {
  aspect-ratio: 16/9;
}

.lp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.lp-gallery-item:hover img {
  transform: scale(1.04);
}

/* ---- 프로세스 ---- */
.lp-process {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 50px;
  flex-wrap: wrap;
}

.lp-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 16px;
}

.lp-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #b8860b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.lp-step h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.lp-step p {
  font-size: 12px;
  color: #777;
  line-height: 1.8;
}

.lp-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 24px;
  font-size: 24px;
  color: #ccc;
  flex-shrink: 0;
}

/* ---- 이유 리스트 ---- */
.lp-reason-list {
  list-style: none;
  margin-top: 16px;
}

.lp-reason-list li {
  padding: 16px 0 16px 20px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  position: relative;
}

.lp-reason-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8860b;
}

.lp-reason-list li:last-child {
  border-bottom: none;
}

.lp-reason-list li strong {
  display: block;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
  font-size: 14px;
}

/* ---- 자재 리스트 ---- */
.lp-material-list {
  list-style: none;
  margin-top: 20px;
}

.lp-material-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.lp-material-list li:last-child {
  border-bottom: none;
}

.lp-material-list li strong {
  color: #111;
  font-weight: 600;
  margin-right: 4px;
}

/* ---- FAQ ---- */
.lp-faq {
  margin-top: 40px;
}

.lp-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 24px 0;
}

.lp-faq-item:last-child {
  border-bottom: none;
}

.lp-faq-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.lp-faq-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  padding-left: 16px;
  border-left: 3px solid #b8860b;
}

/* ---- 지역 카드 ---- */
.lp-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.lp-area-card {
  padding: 28px 24px;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #b8860b;
  transition: box-shadow 0.3s;
}

.lp-area-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.lp-area-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.lp-area-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* ---- CTA 섹션 ---- */
.lp-cta {
  background: #111;
  padding: 90px 40px;
}

/* =============================================
   반응형
   ============================================= */
@media (max-width: 1024px) {
  .lp-card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .lp-gallery .lp-gallery-item:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .lp-section {
    padding: 60px 20px;
  }

  .lp-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-img-block img {
    height: 280px;
  }

  .lp-card-grid,
  .lp-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .lp-area-grid {
    grid-template-columns: 1fr;
  }

  .lp-gallery,
  .lp-gallery-4 {
    grid-template-columns: 1fr;
  }

  .lp-gallery .lp-gallery-item:first-child,
  .lp-gallery-4 .lp-gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lp-process {
    flex-direction: column;
    align-items: center;
  }

  .lp-step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .lp-step {
    width: 100%;
    max-width: 300px;
  }

  .lp-cta {
    padding: 60px 20px;
  }
}
