/* handover.css — 사무실이전철거 명도 (Hue 38 / 하이컨트라스트 H) */

:root{
  --h: 38;
  --bg: hsl(0 0% 100%);
  --surface: hsl(38 30% 97%);
  --ink: hsl(38 22% 14%);
  --muted: hsl(38 8% 38%);
  --accent: hsl(38 60% 30%);
  --accent-2: hsl(38 68% 42%);
  --accent-ink: hsl(0 0% 100%);
  --line: hsl(38 16% 82%);
  --r: 3px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
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.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3{
  font-family: "Gmarket Sans", "Gmarket Sans TTF", "Apple SD Gothic Neo", "Pretendard", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 .6em;
  color: var(--ink);
}
p{ margin: 0 0 1em; }
a{ color: var(--accent); }
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
}
img{ max-width: 100%; }
.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;
}

.wrap{ max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- 헤더: 두꺼운 상단 바 ---------- */
.hdr{
  background: var(--ink);
  border-bottom: 6px solid var(--accent);
}
.hdr__inner{
  max-width: 1080px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.hdr__brand{
  font-family: "Gmarket Sans", "Apple SD Gothic Neo", sans-serif;
  font-weight: 700; font-size: 1.05rem; color: #fff; letter-spacing: -.01em;
}
.hdr__nav{ display: flex; gap: 1.4rem; }
.hdr__nav a{
  color: hsl(38 25% 88%); text-decoration: none; font-size: .92rem;
}
.hdr__nav a:hover{ color: #fff; }

/* ---------- 히어로: 색면 블록 분할 (반전) ---------- */
.hero{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}
.hero__block{ padding: 4rem 2.4rem; display: flex; flex-direction: column; justify-content: center; }
.hero__block--dark{
  background: var(--accent);
  color: var(--accent-ink);
}
.hero__block--light{
  background: var(--surface);
  color: var(--ink);
  border-left: 6px solid var(--accent);
}
.hero__eyebrow{
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: hsl(38 60% 90%); margin-bottom: .9rem;
}
.hero h1{
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: #fff; margin-bottom: .7rem;
}
.hero__lead{
  font-size: 1.02rem; max-width: 40ch; color: hsl(38 40% 95%);
}
.hero__cta{ display: flex; gap: .8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.btn{
  display: inline-block; padding: .8rem 1.5rem; border-radius: var(--r);
  font-weight: 700; text-decoration: none; font-size: .95rem;
  background: #fff; color: var(--accent);
  border: 2px solid #fff;
}
.btn--ghost{
  background: transparent; color: #fff; border-color: hsl(38 40% 92%);
}
.hero__list{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.hero__list li{
  padding-left: 1.6rem; position: relative; font-size: .96rem;
}
.hero__list li::before{
  content: ""; position: absolute; left: 0; top: .45em;
  width: .6rem; height: .6rem; background: var(--accent);
}
.hero__list-title{ font-weight: 700; margin-bottom: 1rem; font-size: 1rem; }

@media (max-width: 760px){
  .hero{ grid-template-columns: 1fr; }
  .hero__block{ padding: 2.6rem 1.5rem; }
  .hero__block--light{ border-left: none; border-top: 6px solid var(--accent); }
}

/* ---------- 본문 ---------- */
main{ padding: 3.5rem 0 1rem; }
.sec{ margin: 0 auto 3.4rem; max-width: 1080px; padding: 0 1.5rem; }
.sec h2{
  font-size: 1.4rem; border-left: 6px solid var(--accent); padding-left: .8rem;
}
.sec p{ color: var(--ink); }
.sec__icon{ margin-bottom: .8rem; }

table{
  width: 100%; border-collapse: collapse; margin-top: 1.2rem;
  font-size: .94rem;
}
caption{ text-align: left; color: var(--muted); font-size: .85rem; margin-bottom: .5rem; }
th, td{
  border: 1px solid var(--line); padding: .75rem .9rem; text-align: left;
  vertical-align: top;
}
thead th{ background: var(--accent); color: #fff; font-weight: 700; }
tbody tr:nth-child(even){ background: var(--surface); }

.steps{ counter-reset: step; list-style: none; margin: 1.2rem 0 0; padding: 0; }
.steps li{
  counter-increment: step; position: relative; padding: .9rem 0 .9rem 3rem;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child{ border-bottom: none; }
.steps li::before{
  content: counter(step);
  position: absolute; left: 0; top: .75rem;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}

.notice{
  background: var(--surface); border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  padding: 1.5rem 1.7rem; border-radius: var(--r);
}

/* ---------- 이미지 (공통 규격) ---------- */
.shot{ margin: 3rem auto; max-width: 1000px; }
.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 ---------- */
.faq__item{ border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq__item:first-child{ border-top: 1px solid var(--line); }
.faq__q{
  margin: 0 0 .5rem; font-size: 1.02rem; font-weight: 700;
  display: flex; gap: .6rem; align-items: flex-start;
}
.faq__q svg{ flex: none; margin-top: .2rem; color: var(--accent); }
.faq__a{ margin: 0; padding-left: 1.8rem; color: var(--muted); }

/* ---------- CTA: 풀와이드 밴드 ---------- */
.ctaband{
  background: var(--ink);
  padding: 3rem 0;
  margin: 0 0 3.4rem;
}
.ctaband__inner{
  max-width: 1080px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.ctaband h2{
  color: #fff; border: none; padding: 0; margin: 0; font-size: 1.3rem;
}
.ctaband p{ color: hsl(38 20% 78%); margin: .4rem 0 0; }
.ctaband__actions{ display: flex; gap: .8rem; flex-wrap: wrap; }
.ctaband .btn{ background: var(--accent); color: #fff; border-color: var(--accent); }
.ctaband .btn--ghost{ background: transparent; color: #fff; border-color: hsl(38 20% 60%); }

/* ---------- 푸터: 중앙 1행 ---------- */
.ftr{
  border-top: 6px solid var(--accent);
  background: var(--surface);
  padding: 2.4rem 0;
}
.ftr__inner{
  max-width: 780px; margin: 0 auto; padding: 0 1.5rem;
  text-align: center;
}
.ftr__biz{
  margin: 0 0 1.2rem; font-size: .88rem; color: var(--muted); line-height: 1.8;
}
.ftr__biz a{ color: var(--accent); }
.ftr__nav{
  display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 1rem;
}
.ftr__nav a{ color: var(--ink); text-decoration: none; font-size: .92rem; }
.ftr__nav a:hover{ text-decoration: underline; }
.ftr__copy{ margin: 0; font-size: .8rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
}

@media (max-width: 480px){
  .hero__block{ padding: 2.2rem 1.2rem; }
  .sec{ padding: 0 1.1rem; }
  .ctaband__inner{ flex-direction: column; align-items: flex-start; }
}
