/* Dalpaengi Lobby — 로비대리석광택 The달팽이
   dalpaengi-artpolish(형제 사이트, 동일 클라이언트) 코드베이스 어댑트: 타이포그래피 중심 풀블리드 히어로,
   전/후 비교 행, 헤어라인 디바이더, 에디토리얼 여백
   컬러: deep #14181B(다크네이비블랙) / accent #8A6A34(bronze gold) / cream #F4EFE7 / bg #FFFFFF
   형제사이트 대비 차별점: accent를 petrol-blue 대신 로비 공간에 어울리는 bronze gold로 재구성
*/

:root {
  --deep: #14181B;
  --accent: #8A6A34;
  --accent-soft: #F1E8D8;
  --bg: #FFFFFF;
  --bg-soft: #F7F4EF;
  --ink: #1A1A1A;
  --desc: #57514F;
  --bar-chrome: #F1EFEA;
  --border: #E4E0D8;
  --radius: 10px;
  --radius-img: 10px;
  --btn-radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Pretendard Variable", Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  /* 메인(index) 전용 DNA 토큰 — 서브페이지 기존 톤(--accent 등)에는 영향 없음 */
  --cream: #F4EFE7;
  --cream-soft: #ECE4D8;
  --terracotta: #8A6A34;
  --terracotta-hover: #6E5327;
  --sand: #C9B27F;
  /* 브랜드 accent: 헤더 로고「달팽이」= 푸터 로고「달팽이」= 상담하기 버튼 배경, 전부 동일 hex */
  --brand-accent: #8A6A34;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; filter: contrast(1.06) saturate(1.1); }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, .lb-eyebrow, .lb-btn { word-break: keep-all; }
h1, h2, h3 { margin: 0 0 16px; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.6vw, 40px); }
h3 { font-size: 20px; }
p { margin: 0 0 12px; }

.lb-skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--deep); color: #fff; padding: 10px 16px;
}
.lb-skip:focus { left: 0; }

.lb-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--desc); text-transform: uppercase; margin-bottom: 12px;
}

/* ── 버튼 ─────────────────────────────────────────────────── */
.lb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--deep); color: #fff;
  padding: 13px 26px; font-size: 15px; font-weight: 600;
  /* wine 톤 에디토리얼 재해석: 버튼 pill + 카드/이미지 라운드로 FLOORGRIND의 각진 통일과 차별화 */
  border-radius: var(--btn-radius); border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.lb-btn:hover { background: #2b2b2b; transform: translateY(-1px); }
.lb-btn-lg { padding: 16px 34px; font-size: 16px; }
.lb-btn-header {
  background: var(--brand-accent); color: #fff;
}
.lb-btn-header:hover { background: var(--terracotta-hover); }
.lb-btn-sticky { width: 100%; background: var(--brand-accent); color: #fff; }
.lb-btn-sticky:hover { background: var(--terracotta-hover); }

/* ── 헤더 (2-state sticky: top=완전투명 / scrolled=연회색+ink, B-22) ── */
.lb-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.lb-header.is-scrolled {
  background: var(--bar-chrome);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 18px rgba(22,22,22,.10);
}
.lb-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.lb-logo-group { display: flex; flex-direction: column; gap: 2px; }
.lb-logo { font-size: 20px; font-weight: 800; color: #fff; transition: color .3s; }
.lb-logo span { color: var(--brand-accent); }
.lb-logo-tagline { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; transition: color .3s; }
.lb-header.is-scrolled .lb-logo { color: var(--deep); }
.lb-header.is-scrolled .lb-logo-tagline { color: var(--desc); }
.lb-header-right { display: flex; align-items: center; gap: 28px; }
.lb-nav { display: flex; gap: 24px; }
.lb-nav a {
  position: relative; color: #fff; font-size: 15px; font-weight: 500; opacity: .85;
  transition: opacity .3s, color .3s; padding-bottom: 3px;
}
.lb-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--brand-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.lb-nav a:hover { opacity: 1; }
.lb-nav a:hover::after { transform: scaleX(1); }
.lb-header.is-scrolled .lb-nav a { color: var(--ink); }
.lb-burger { display: none; }
.lb-burger span { background: #fff; transition: background .3s; }
.lb-header.is-scrolled .lb-burger span { background: var(--ink); }
.lb-nav-mobile { display: none; }

/* ── 히어로 (타이포그래피 중심 풀블리드 · DNA D) ───────────── */
.lb-hero {
  position: relative; overflow: hidden; color: #fff;
  margin-top: -76px; padding-top: 76px;
  min-height: 640px; display: flex; align-items: center;
}
.lb-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; border-radius: 0;
  animation: lb-hero-fade 1s ease both;
}
.lb-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(22,22,22,.86) 0%, rgba(22,22,22,.66) 30%,
    rgba(22,22,22,.30) 60%, rgba(22,22,22,.08) 100%);
}
.lb-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 96px 24px 88px;
}
.lb-hero-copy { max-width: 720px; }
.lb-hero-copy .lb-eyebrow { color: var(--accent); }
.lb-hero h1 { color: #fff; font-size: clamp(38px, 6vw, 66px); }
.lb-hero-desc { color: #ececec; font-size: 18px; }
@media (min-width: 901px) { .lb-hero .lb-hero-desc { white-space: nowrap; } }
.lb-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 28px; }
.lb-hero-badges span {
  font-size: 13px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08); border-radius: 6px; color: #fff;
}
.lb-hero-badges span strong { color: var(--accent); margin-right: 4px; }

/* ── CRO: CTA 하단 안심 마이크로카피 ─────────────────────── */
.lb-cta-note { margin-top: 10px; font-size: 13px; color: var(--desc); }
.lb-subhero:has(.lb-subhero-img) .lb-subhero-content .lb-cta-note { color: #f2f2f2; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.lb-cta-band .lb-cta-note { color: rgba(255,255,255,.7); margin-top: 0; width: 100%; }
@keyframes lb-hero-fade {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: none; }
}

/* ── 전/후 비교 행 (DNA D) ────────────────────────────────── */
.lb-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lb-compare figure { margin: 0; position: relative; }
.lb-compare img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-img); }
.lb-compare figcaption {
  position: absolute; left: 16px; top: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 12px; background: var(--deep); color: #fff;
}

/* ── 서브히어로 (내부 페이지 공통 · 풀블리드) ──────────────── */
.lb-subhero {
  position: relative; overflow: hidden;
  margin-top: -76px; padding-top: 76px;
  min-height: 300px;
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 100%);
}
.lb-subhero:has(.lb-subhero-img) { min-height: 440px; }
.lb-subhero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 0;
}
.lb-subhero:has(.lb-subhero-img)::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.12) 40%, rgba(0,0,0,.58) 100%);
}
.lb-subhero-content {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 24px 44px;
}
.lb-subhero-content h1 { color: var(--deep); }
.lb-subhero-content .lb-hero-desc { color: var(--desc); }
.lb-subhero:has(.lb-subhero-img) .lb-subhero-content h1 { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.lb-subhero:has(.lb-subhero-img) .lb-subhero-content .lb-eyebrow { color: #fff; opacity: .92; }
.lb-subhero:has(.lb-subhero-img) .lb-subhero-content .lb-hero-desc { color: #f2f2f2; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.lb-subhero-consult .lb-subhero-content { max-width: 640px; margin: 0 auto; text-align: center; }
.lb-subhero.lb-subhero-case { min-height: 505px; }
.lb-subhero.lb-subhero-case:has(.lb-subhero-img)::after {
  background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.16) 35%, rgba(0,0,0,.62) 100%);
}
.lb-subhero-gallery-link {
  display: inline-block; margin-top: 16px; font-size: 14px; color: #fff;
  text-decoration: underline; text-underline-offset: 4px;
}
.lb-subhero-gallery-link:hover { color: var(--sand); }
@media (max-width: 560px) { .lb-subhero.lb-subhero-case { min-height: 420px; } }

/* ── 섹션 공통 ─────────────────────────────────────────────── */
.lb-section { padding: 72px 24px; border-top: 1px solid #ececec; scroll-margin-top: 88px; }
.lb-section-alt { background: var(--bg-soft); }
.lb-section-inner { max-width: 1200px; margin: 0 auto; }

/* ── 증상 리스트 ──────────────────────────────────────────── */
.lb-symptom-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lb-symptom-item {
  padding: 24px; background: var(--bg-soft); border-radius: var(--radius);
  border-left: 3px solid var(--accent); font-size: 15px; color: var(--desc);
}
.lb-symptom-item strong { color: var(--ink); display: block; margin-bottom: 6px; font-size: 16px; }
.lb-symptom-item svg, .lb-checklist-item svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 10px; display: block; }

/* ── 프로세스 세로 타임라인 ───────────────────────────────── */
.lb-steps { list-style: none; margin: 0; padding: 0; max-width: 640px; }
.lb-steps li { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #e4e0da; }
.lb-steps li:last-child { border-bottom: none; }
.lb-steps span { font-size: 22px; font-weight: 800; color: var(--accent); min-width: 44px; }
.lb-steps li div strong { display: block; margin-bottom: 4px; font-size: 16px; }

/* ── 갤러리 그리드 ────────────────────────────────────────── */
.lb-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.lb-gallery-grid-full { grid-template-columns: repeat(4, 1fr); }
.lb-related-card { display: block; overflow: hidden; border-radius: var(--radius-img); }
.lb-related-card img { aspect-ratio: 4/3; object-fit: cover; transition: transform .3s, filter .3s; }
.lb-related-card:hover img { transform: scale(1.04); filter: brightness(1.06); }
.lb-case-gallery .lb-related-card { border-radius: var(--radius-img); }
.lb-link-more { display: inline-block; font-weight: 600; color: var(--deep); transition: transform .25s var(--ease); }
.lb-link-more:hover { transform: translateX(4px); }

/* ── 시공사례 상세: 본문 완성(후) 사진 550×410 ───────────────── */
.lb-case-photo-wrap { text-align: center; margin-bottom: 28px; }
.lb-case-photo { width: 550px; max-width: 100%; height: 410px; object-fit: cover; border-radius: var(--radius-img); display: inline-block; }

/* ── 시공사례 상세: 시공전·중·후 한 줄 ───────────────────────── */
.compare-row, .lb-case-gallery { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.compare-row.compare-row-2 { grid-template-columns: 1fr 1fr; }
.compare-row figure, .lb-case-gallery figure { margin: 0; position: relative; }
.compare-row img, .lb-case-gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-img); display: block; }
.compare-row figcaption {
  position: absolute; left: 12px; top: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 5px 10px; background: var(--deep); color: #fff; border-radius: 4px;
}
@media (max-width: 700px) { .compare-row, .lb-case-gallery { grid-template-columns: 1fr !important; } }

/* ── 시공사례 상세 관련 링크: 이미지 카드 2장 한 줄 ──────────── */
.lb-case-related { display: grid !important; grid-template-columns: 1fr 1fr; gap: 16px; }
.lb-case-related .lb-related-card img { width: 100%; height: 180px; object-fit: cover; }
.lb-case-related .lb-related-card-body h3 { font-size: 16px; margin: 10px 0 4px; }
.lb-case-related-all { text-align: center; margin-top: 24px; }
@media (max-width: 560px) { .lb-case-related { grid-template-columns: 1fr; } }

/* ── CTA 밴드 ─────────────────────────────────────────────── */
.lb-cta-band {
  background: var(--deep); color: #fff; padding: 52px 24px;
  border-top: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  text-align: center;
}
.lb-cta-band p { font-size: clamp(18px, 2.4vw, 22px); font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.lb-cta-band .lb-btn { background: var(--accent); color: var(--deep); }
.lb-cta-band .lb-btn:hover { background: #A9863F; }

/* ── 지역 칩 그리드 ───────────────────────────────────────── */
.lb-region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lb-region-chip {
  padding: 16px; text-align: center; background: var(--bg); border: 1px solid #e0e0e0;
  border-radius: var(--radius); font-weight: 600; font-size: 14px;
}
.lb-region-chip:hover { border-color: var(--deep); background: var(--bg-soft); }

/* ── FAQ ──────────────────────────────────────────────────── */
.lb-faq-list { max-width: 800px; }
.lb-faq-item { border-bottom: 1px solid #e4e0da; padding: 18px 0; }
.lb-faq-item summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; }
.lb-faq-item summary::-webkit-details-marker { display: none; }
.lb-faq-item summary::after { content: '+'; float: right; font-size: 20px; color: var(--accent); }
.lb-faq-item[open] summary::after { content: '−'; }
.lb-faq-item p { margin-top: 12px; color: var(--desc); }

/* ── 크로스 레이아웃 (교차 이미지-텍스트, 고정 스펙) ───────── */
.lb-cross-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 56px;
}
.lb-cross-row img { border-radius: var(--radius-img); aspect-ratio: 4/3; object-fit: cover; }
.lb-cross-row-rev { direction: rtl; }
.lb-cross-row-rev > * { direction: ltr; }

/* ── 체크리스트 ───────────────────────────────────────────── */
.lb-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lb-checklist-item {
  padding: 20px; background: var(--bg); border: 1px solid #e4e0da; border-radius: var(--radius);
  font-size: 14px; color: var(--desc);
}
.lb-checklist-item strong { color: var(--ink); display: block; margin-bottom: 6px; }

/* ── 상담 카드 ────────────────────────────────────────────── */
.lb-consult-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.lb-info-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 40px 24px; border: 1px solid #e4e0da; border-radius: var(--radius);
  background: var(--bg-soft);
}
.lb-info-card svg { width: 44px; height: 44px; color: var(--deep); margin-bottom: 16px; }
.lb-info-card .lb-btn { margin-top: 16px; }
.lb-consult-card:hover { border-color: var(--deep); }

/* ── 리스트/본문 ──────────────────────────────────────────── */
.lb-list { padding-left: 20px; max-width: 700px; color: var(--desc); }
.lb-list li { margin-bottom: 8px; }
.lb-body-text { max-width: 760px; color: var(--desc); font-size: 16px; }

/* ── 사이트맵 ─────────────────────────────────────────────── */
.lb-sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.lb-sitemap-col-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-img); margin-bottom: 14px; }
.lb-sitemap-col-desc { color: var(--desc); font-size: 14px; margin: -4px 0 12px; }
.lb-sitemap-col a { display: block; padding: 6px 0; color: var(--desc); }
.lb-sitemap-col a:hover { color: var(--deep); text-decoration: underline; }

/* ── Closing 사진 (B-25) ──────────────────────────────────── */
.lb-closing { position: relative; }
.lb-closing img { width: 100%; height: 650px; object-fit: cover; display: block; }
.lb-closing-overlay {
  position: absolute; inset: 0;
  background: rgba(19,19,19,.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 24px; padding: 40px;
}
.lb-closing-copy {
  color: #fff; font-size: 28px; font-weight: 700; line-height: 1.4; margin: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.lb-btn-closing { background: transparent; border: 1px solid var(--cream); color: var(--cream); }
.lb-btn-closing:hover { background: var(--cream); color: var(--deep); }
.lb-closing-quote { color: #f2f2f2; font-size: 14px; font-style: italic; margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
@media (max-width: 560px) {
  .lb-closing-copy { font-size: 20px; }
}

/* ── 푸터 (uapti DNA · 다크 3열, 링크는 사이트맵으로 수렴) ──── */
.lb-footer { background: var(--deep); color: #9a9a9a; padding: 56px 24px 24px; }
.lb-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 32px;
}
.lb-footer-logo { font-size: 20px; font-weight: 800; color: #fff; }
.lb-footer-logo span { color: var(--brand-accent); }
.lb-footer-desc { font-size: 14px; margin-top: 8px; }
.lb-footer-col h3 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.lb-footer-col a { display: block; font-size: 13px; padding: 4px 0; color: #9a9a9a; }
.lb-footer-col a:hover { color: #fff; }
.lb-footer-biz p { font-size: 13px; color: #9a9a9a; margin-bottom: 16px; line-height: 1.6; }
.lb-footer-addr { display: block; white-space: nowrap; font-size: 12px; }
.lb-footer-phone-note { font-size: 11px; color: #777; }
@media (max-width: 560px) { .lb-footer-addr { white-space: normal; } }
.lb-footer-biz .lb-btn { padding: 10px 20px; font-size: 13px; }
.lb-footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid #333;
  font-size: 12px; color: #808080;
}

/* ── 하단 고정 CTA 바 (B-23, CRO: 모바일 2분할) ────────────── */
.lb-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  min-height: 48px; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--bar-chrome);
  border-top: 1px solid #E5E7EB; box-shadow: 0 -6px 22px rgba(0,0,0,.08);
  transform: translateY(100%); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.lb-sticky-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.lb-sticky-quick {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 14px; font-size: 14px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid #D8D4CC;
}
.lb-sticky-cta .lb-btn-sticky { flex: 1.4; width: auto; }

/* ── 애니메이션 훅 ────────────────────────────────────────── */
[data-anim] { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
[data-anim].is-in { opacity: 1; transform: none; }
[data-anim="slide-left"] { transform: translateX(-24px); }
[data-anim="slide-left"].is-in { transform: none; }
[data-anim="scale-in"] { transform: scale(.94); }
[data-anim="scale-in"].is-in { transform: none; }
[data-anim][data-delay="1"] { transition-delay: .05s; }
[data-anim][data-delay="2"] { transition-delay: .1s; }
[data-anim][data-delay="3"] { transition-delay: .15s; }
[data-anim][data-delay="4"] { transition-delay: .2s; }
[data-anim][data-delay="5"] { transition-delay: .25s; }

/* ── 반응형 ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lb-hero { min-height: 520px; }
  .lb-symptom-list, .lb-checklist, .lb-region-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
  .lb-cross-row, .lb-cross-row-rev { grid-template-columns: 1fr; direction: ltr; }
  .lb-footer-inner, .lb-sitemap-grid { grid-template-columns: 1fr 1fr; }
  .lb-consult-cards { grid-template-columns: 1fr; }
  .lb-nav { display: none; }
  .lb-btn-header { display: none; }
  .lb-burger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; margin-left: auto; padding: 8px;
  }
  .lb-burger span { width: 22px; height: 2px; }
  .lb-nav-mobile {
    display: none; flex-direction: column; background: var(--bg); padding: 16px 24px;
    border-top: 1px solid #eee;
  }
  .lb-nav-mobile.is-open { display: flex; }
  .lb-nav-mobile a { padding: 10px 0; border-bottom: 1px solid #eee; color: var(--ink); }
}
@media (max-width: 560px) {
  .lb-symptom-list, .lb-checklist, .lb-region-grid, .lb-gallery-grid, .lb-gallery-grid-full, .lb-sitemap-grid, .lb-footer-inner, .lb-compare {
    grid-template-columns: 1fr;
  }
}
/* ── 홈(메인) 전용 컴포넌트 — uapti DNA 재구성, 서브페이지 클래스와 분리 ── */
body.home { background: var(--cream); }

.lb-home-hero {
  position: relative; overflow: hidden; color: #fff;
  margin-top: -76px; padding-top: 76px;
  height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
}
.lb-home-hero-slides { position: absolute; inset: 0; }
.lb-home-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; z-index: 0;
  transition: opacity 1.6s ease;
  animation: lb-slow-zoom 16s ease-in-out infinite alternate;
}
.lb-home-hero-bg.is-active { opacity: 1; z-index: 1; }
.lb-home-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(19,19,19,.05) 0%, rgba(19,19,19,.18) 45%, rgba(19,19,19,.78) 100%);
}
.lb-home-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 24px 88px;
}
.lb-home-hero-inner h1 {
  font-size: 25px; font-weight: 800; line-height: 1;
  color: #fff; margin: 0 0 18px;
}
.lb-home-hero-brand { font-size: 50px; font-weight: 600; letter-spacing: .04em; margin: 0 0 18px; color: #fff; }
.lb-home-hero-brand span { color: var(--accent); }
.lb-home-hero-desc { font-size: 17px; color: #ececec; white-space: nowrap; margin: 0 0 28px; }
@keyframes lb-slow-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.lb-quicklinks { padding: 72px 24px; background: var(--cream); }
.lb-quicklinks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lb-quicklink-card { position: relative; display: flex; align-items: flex-end; overflow: hidden; border-radius: var(--radius-img); aspect-ratio: 4/3; background: var(--deep); }
.lb-quicklink-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .4s ease; }
.lb-quicklink-card:hover img { transform: scale(1.05); filter: brightness(1.08); }
.lb-quicklink-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,19,19,0) 40%, rgba(19,19,19,.75) 100%); }
.lb-quicklink-card span { position: relative; z-index: 1; padding: 18px; color: #fff; font-weight: 700; font-size: 15px; }

/* 브랜드소개 — 텍스트헤드(상단·중앙) + 4장 비대칭 콜라주(하단) 타입.
   FLOORGRIND(좌 콜라주 2x2 균등 그리드 / 우 텍스트, 좌우 분할)와 겹치지 않도록
   가로 분할 대신 세로 스택 + 균등 그리드 대신 비대칭 벤토 그리드로 재구성. */
.lb-about { padding: 88px 24px; background: var(--bg); }
.lb-about-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.lb-about-head .lb-eyebrow { display: block; }
.lb-about-bento {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px);
  gap: 14px;
}
.lb-about-bento img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-img); }
.lb-about-bento img:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
.lb-about-bento img:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 3; }
.lb-about-bento img:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
.lb-about-bento img:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
.lb-about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; border-top: 1px solid #e4e0da; padding-top: 24px; }
.lb-about-fact { display: flex; flex-direction: column; gap: 4px; }
.lb-about-fact h3 { font-size: 14px; color: var(--terracotta); margin: 0; }
.lb-about-fact p { font-size: 13px; color: var(--desc); margin: 0; }

.lb-process-v2 { padding: 88px 24px; background: var(--cream-soft); }
.lb-process-v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 8px; list-style: none; padding: 0; margin-left: 0; }
.lb-process-v2-step span { display: block; font-size: 36px; font-weight: 800; color: var(--terracotta); margin-bottom: 12px; }
.lb-process-v2-step h3 { margin-bottom: 8px; }
.lb-process-v2-step p { color: var(--desc); font-size: 14px; margin: 0; }

.lb-portfolio-v2 { padding: 88px 24px; background: var(--bg); }
.lb-portfolio-v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.lb-portfolio-v2-card { position: relative; display: block; border: 1px solid var(--border); border-radius: var(--radius-img); overflow: hidden; }
.lb-portfolio-v2-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 2px; z-index: 2;
  background: var(--deep); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.lb-portfolio-v2-card:hover::before { transform: scaleX(1); }
.lb-portfolio-v2-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .4s var(--ease); }
.lb-portfolio-v2-card:hover img { transform: scale(1.05); }
.lb-portfolio-v2-body { padding: 18px 20px; }
.lb-portfolio-v2-meta { font-size: 12px; color: var(--terracotta); font-weight: 700; letter-spacing: .04em; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid #d8d6d0; }
.lb-portfolio-v2-body h3 { font-size: 17px; margin-bottom: 6px; }
.lb-portfolio-v2-body p { font-size: 13px; color: var(--desc); margin-bottom: 10px; }
.lb-portfolio-v2-body .lb-link-more { font-size: 12px; color: var(--terracotta); }
.lb-portfolio-v2-all { display: block; text-align: center; }

@media (max-width: 900px) {
  .lb-quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-about-bento {
    grid-template-columns: 1fr 1fr; grid-template-rows: none;
  }
  .lb-about-bento img { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4/3; height: auto; }
  .lb-process-v2-grid { grid-template-columns: 1fr; gap: 24px; }
  .lb-portfolio-v2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lb-home-hero-inner { padding-bottom: 56px; }
  .lb-quicklinks-grid, .lb-portfolio-v2-grid { grid-template-columns: 1fr; }
  .lb-about-facts { grid-template-columns: 1fr; }
  .lb-about-bento { grid-template-columns: 1fr; }
  .lb-home-hero-desc { white-space: normal; }
}

/* ── 비용 표 (AEO: 비용/절차 table 인용 최적화) ─────────────── */
.lb-price-table { width: 100%; max-width: 760px; border-collapse: collapse; margin-top: 16px; font-size: 14px; }
.lb-price-table th, .lb-price-table td { padding: 12px 16px; border: 1px solid #e4e0da; text-align: left; }
.lb-price-table th { background: var(--bg-soft); font-weight: 700; }
.lb-price-table td { color: var(--desc); }
@media (max-width: 560px) {
  .lb-price-table { font-size: 13px; }
  .lb-price-table th, .lb-price-table td { padding: 8px 10px; }
}
