/* wall.css — 사무실이전철거 벽체철거 (slug: wall) — page-specific, not shared */

:root{
  --h: 0;
  --bg:      hsl(0 0% 100%);
  --surface: hsl(0 8% 97%);
  --ink:     hsl(0 15% 12%);
  --muted:   hsl(0 8% 40%);
  --accent:  hsl(0 60% 30%);
  --accent-2:hsl(0 55% 45%);
  --line:    hsl(0 10% 85%);
  --r: 3px;
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Spoqa Han Sans Neo','Apple SD Gothic Neo','Malgun Gothic',-apple-system,BlinkMacSystemFont,sans-serif;
  line-height:1.72;
  font-size:16px;
}
h1,h2,h3{
  font-family:'Pretendard Black','Pretendard',-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo',sans-serif;
  font-weight:900;
  color:var(--ink);
  letter-spacing:-0.01em;
}
img{ max-width:100%; }
a{ color:var(--accent); }
:focus-visible{ outline:3px solid var(--accent-2); outline-offset:3px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- 헤더: 두꺼운 상단 바 ---------- */
.hdr{
  background:var(--ink);
  border-bottom:10px solid var(--accent);
}
.hdr__inner{
  max-width:1120px;
  margin:0 auto;
  padding:1.5rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.hdr__tag{
  color:hsl(0 0% 96%);
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.02em;
}
.hdr__nav{ display:flex; gap:1.25rem; }
.hdr__nav a{
  color:hsl(0 10% 88%);
  text-decoration:none;
  font-size:0.95rem;
  font-weight:600;
  border-bottom:2px solid transparent;
  padding-bottom:2px;
}
.hdr__nav a:hover{ border-bottom-color:hsl(0 0% 96%); }

/* ---------- 히어로: 색면 블록 분할 ---------- */
.hero{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  min-height:360px;
}
.hero__panel{ padding:3.25rem 2rem; display:flex; flex-direction:column; justify-content:center; }
.hero__panel--accent{
  background:var(--accent);
  color:hsl(0 0% 98%);
}
.hero__panel--plain{
  background:var(--surface);
  border-left:6px solid var(--accent);
  gap:1.5rem;
}
.hero__eyebrow{
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  opacity:0.85;
  margin:0 0 0.75rem;
}
.hero__title{
  font-size:clamp(1.9rem,4.4vw,2.7rem);
  line-height:1.28;
  margin:0 0 1rem;
  color:hsl(0 0% 99%);
}
.hero__lead{
  font-size:1.05rem;
  max-width:38ch;
  margin:0;
  color:hsl(0 15% 94%);
}
.hero__facts{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.6rem;
}
.hero__facts li{
  position:relative;
  padding-left:1.3rem;
  color:var(--muted);
  font-size:0.95rem;
}
.hero__facts li::before{
  content:"";
  position:absolute;
  left:0; top:0.5em;
  width:8px; height:8px;
  background:var(--accent);
  border-radius:2px;
}

/* ---------- CTA: 아웃라인 듀얼 ---------- */
.cta--dual{
  display:flex;
  gap:0.9rem;
  flex-wrap:wrap;
}
.cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.85rem 1.6rem;
  border:2px solid var(--accent);
  border-radius:var(--r);
  color:var(--accent);
  background:transparent;
  font-weight:700;
  font-size:0.98rem;
  text-decoration:none;
  transition:background 0.15s ease, color 0.15s ease;
}
.cta__btn:hover{ background:var(--accent); color:hsl(0 0% 100%); }
.cta__btn--ghost{
  border-color:var(--ink);
  color:var(--ink);
}
.cta__btn--ghost:hover{ background:var(--ink); color:hsl(0 0% 100%); }
.cta--bottom{
  max-width:1120px;
  margin:3rem auto 4rem;
  padding:0 1.25rem;
  justify-content:center;
}

/* ---------- 본문 섹션 ---------- */
main{ max-width:1120px; margin:0 auto; }
.sec{ padding:2.75rem 1.25rem; border-top:1px solid var(--line); }
.sec h2{
  font-size:1.5rem;
  margin:0 0 1.1rem;
}
.sec p{ color:var(--ink); max-width:74ch; }
.sec p + p{ margin-top:1rem; }

.tbl-wrap{ overflow-x:auto; margin-top:1.25rem; }
.tbl{
  width:100%;
  border-collapse:collapse;
  min-width:520px;
}
.tbl caption{ text-align:left; }
.tbl th, .tbl td{
  border:1px solid var(--line);
  padding:0.75rem 0.9rem;
  text-align:left;
  font-size:0.95rem;
}
.tbl thead th{
  background:var(--accent);
  color:hsl(0 0% 99%);
  font-weight:700;
}
.tbl tbody th{ background:var(--surface); font-weight:700; white-space:nowrap; }

.steps{
  margin:1.25rem 0 0;
  padding-left:1.2rem;
  display:flex;
  flex-direction:column;
  gap:0.85rem;
  max-width:74ch;
}
.steps li{ padding-left:0.3rem; }
.steps strong{ color:var(--accent); }

.diagram{
  width:100%;
  max-width:640px;
  height:auto;
  margin-top:2rem;
  color:var(--ink);
}

/* ---------- 이미지 2장 ---------- */
.shot{ margin: 3rem auto; max-width: 1000px; padding:0 1.25rem; }
.shot__row{ display:flex; justify-content:center; align-items:stretch; gap:1rem; flex-wrap:nowrap; }
.shot__row img{ flex:1 1 0; min-width:0; width:100%; height:auto; display:block; object-fit:cover; border-radius: var(--r, 3px); border:1px solid var(--line); }
@media (max-width: 640px){ .shot__row{ flex-wrap:wrap; } .shot__row img{ flex:1 1 100%; } }

/* ---------- FAQ ---------- */
.sec--faq{ background:var(--surface); }
.faq{
  padding:1.4rem 0;
  border-bottom:1px solid var(--line);
}
.faq:last-child{ border-bottom:none; }
.faq h3{
  font-size:1.08rem;
  margin:0 0 0.6rem;
}
.faq p{ margin:0; color:var(--muted); max-width:74ch; }

/* ---------- 푸터: 2단 좌우 ---------- */
.ftr{
  background:var(--ink);
  color:hsl(0 8% 88%);
  margin-top:1rem;
}
.ftr__inner{
  max-width:1120px;
  margin:0 auto;
  padding:2.75rem 1.25rem;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:2rem;
  align-items:start;
}
.ftr__biz{
  margin:0;
  font-size:0.92rem;
  line-height:1.9;
  color:hsl(0 8% 82%);
}
.ftr__biz a{ color:hsl(0 40% 78%); }
.ftr__nav{
  display:flex;
  gap:1.25rem;
  justify-self:end;
}
.ftr__nav a{
  color:hsl(0 8% 88%);
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
}
.ftr__nav a:hover{ text-decoration:underline; }
.ftr__copy{
  grid-column:1 / -1;
  margin:1.5rem 0 0;
  font-size:0.82rem;
  color:hsl(0 6% 60%);
  border-top:1px solid hsl(0 10% 24%);
  padding-top:1.25rem;
}

/* ---------- 반응형 ---------- */
@media (max-width: 860px){
  .hero{ grid-template-columns:1fr; }
  .hero__panel--plain{ border-left:none; border-top:6px solid var(--accent); }
  .ftr__inner{ grid-template-columns:1fr; }
  .ftr__nav{ justify-self:start; }
}
@media (max-width: 375px){
  .hero__panel{ padding:2rem 1.25rem; }
  .cta__btn{ width:100%; }
}

@media (prefers-reduced-motion: reduce){
  .cta__btn{ transition:none; }
}
