/* elevator-access.css — 사무실이전철거 엘리베이터반출 (Hue 300 / Neutral / 단독 페이지 전용) */

:root{
  --h: 300;
  --bg:      hsl(0 0% 97%);
  --surface: hsl(0 0% 100%);
  --ink:     hsl(0 0% 15%);
  --muted:   hsl(0 0% 40%);
  --accent:  hsl(var(--h) 46% 38%);
  --accent-ink: hsl(var(--h) 46% 24%);
  --accent-tint: hsl(var(--h) 46% 96%);
  --line:    hsl(0 0% 86%);
  --r: 3px;
  --font-head: "Pretendard", "Pretendard Variable", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-body: "Nanum Gothic", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  line-height:1.72;
  font-size:16.5px;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:var(--font-head);
  font-weight:600;
  color:var(--ink);
  line-height:1.35;
}

a{ color:var(--accent-ink); }
a:focus-visible, button:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:2px;
}

img{ max-width:100%; }

.wrap{
  max-width:920px;
  margin:0 auto;
  padding:0 20px;
}

/* ---------- 헤더: 슬림 스티키 ---------- */
.hdr{
  position:sticky;
  top:0;
  z-index:50;
  background:hsla(0,0%,100%,0.92);
  backdrop-filter:saturate(140%) blur(6px);
  border-bottom:1px solid var(--line);
}
.hdr__inner{
  max-width:920px;
  margin:0 auto;
  padding:0 20px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.hdr__logo{
  font-family:var(--font-head);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:-0.01em;
  color:var(--ink);
  text-decoration:none;
  white-space:nowrap;
}
.hdr__nav{
  display:flex;
  gap:16px;
}
.hdr__nav a{
  font-size:13.5px;
  color:var(--muted);
  text-decoration:none;
  padding:4px 2px;
  border-bottom:2px solid transparent;
}
.hdr__nav a:hover{
  color:var(--accent-ink);
  border-bottom-color:var(--accent);
}

/* ---------- 히어로: 세로 타임라인 ---------- */
.hero{
  padding:44px 0 36px;
  border-bottom:1px solid var(--line);
}
.hero__eyebrow{
  display:inline-block;
  font-size:12.5px;
  color:var(--accent-ink);
  background:var(--accent-tint);
  border:1px solid hsl(var(--h) 46% 86%);
  padding:3px 10px;
  border-radius:99px;
  margin-bottom:14px;
  letter-spacing:0.01em;
}
.hero h1{
  font-size:clamp(24px, 4.2vw, 34px);
  margin:0 0 12px;
}
.hero__lead{
  color:var(--muted);
  font-size:15.5px;
  max-width:60ch;
  margin:0 0 30px;
}

.tl{
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}
.tl::before{
  content:"";
  position:absolute;
  left:9px;
  top:6px;
  bottom:6px;
  width:2px;
  background:var(--line);
}
.tl li{
  position:relative;
  padding:0 0 22px 34px;
}
.tl li:last-child{ padding-bottom:0; }
.tl li::before{
  content:"";
  position:absolute;
  left:2px;
  top:3px;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--surface);
  border:3px solid var(--accent);
}
.tl__step{
  font-size:12px;
  color:var(--accent-ink);
  font-weight:700;
  letter-spacing:0.04em;
  display:block;
  margin-bottom:2px;
}
.tl__title{
  font-family:var(--font-head);
  font-weight:600;
  font-size:15.5px;
  color:var(--ink);
  display:block;
  margin-bottom:3px;
}
.tl__desc{
  font-size:13.5px;
  color:var(--muted);
  margin:0;
}

/* ---------- 본문 ---------- */
.main{ padding:40px 0 8px; }
.sec{ margin:0 0 46px; }
.sec h2{
  font-size:21px;
  margin:0 0 14px;
  padding-bottom:10px;
  border-bottom:1px solid var(--line);
}
.sec p{ margin:0 0 14px; color:var(--ink); }
.sec p.muted{ color:var(--muted); }

.steps{
  margin:0;
  padding:0;
  list-style:none;
  counter-reset:step;
}
.steps li{
  counter-increment:step;
  position:relative;
  padding:14px 16px 14px 52px;
  margin-bottom:10px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
}
.steps li::before{
  content:counter(step);
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
.steps strong{
  display:block;
  font-size:15px;
  margin-bottom:3px;
}
.steps span{
  font-size:13.5px;
  color:var(--muted);
}

.notice{
  background:var(--accent-tint);
  border:1px solid hsl(var(--h) 46% 85%);
  border-radius:var(--r);
  padding:18px 20px;
  margin:18px 0;
}
.notice h3{
  font-size:14.5px;
  margin:0 0 8px;
  color:var(--accent-ink);
}
.notice ul{
  margin:0;
  padding-left:18px;
}
.notice li{
  font-size:14px;
  margin-bottom:6px;
  color:var(--ink);
}
.notice li:last-child{ margin-bottom:0; }

.cmp{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
  margin:6px 0 4px;
}
.cmp caption{
  text-align:left;
  font-size:13px;
  color:var(--muted);
  margin-bottom:8px;
}
.cmp th,.cmp td{
  border:1px solid var(--line);
  padding:10px 12px;
  text-align:left;
  vertical-align:top;
}
.cmp thead th{
  background:var(--surface);
  font-family:var(--font-head);
  font-weight:600;
}
.cmp tbody th{
  background:hsl(0 0% 99%);
  font-weight:600;
  white-space:nowrap;
}

/* 인라인 SVG 도식 */
.diagram{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:18px;
  margin:8px 0 4px;
}
.diagram svg{ width:100%; height:auto; display:block; }
.diagram figcaption{
  font-size:12.5px;
  color:var(--muted);
  margin-top:10px;
  text-align:center;
}

/* 이미지 2장 */
.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); border:1px solid var(--line); }
.shot figcaption{ text-align:center; font-size:12.5px; color:var(--muted); margin-top:8px; }
@media (max-width:640px){ .shot__row{ flex-wrap:wrap; } .shot__row img{ flex:1 1 100%; } }

/* FAQ */
.faq dl{ margin:0; }
.faq__item{
  border-bottom:1px solid var(--line);
  padding:16px 0;
}
.faq__item:first-child{ padding-top:0; }
.faq__item:last-child{ border-bottom:none; }
.faq dt{
  font-family:var(--font-head);
  font-weight:600;
  font-size:15px;
  margin:0 0 6px;
  display:flex;
  gap:8px;
}
.faq dt::before{
  content:"Q";
  color:var(--accent);
  font-weight:700;
}
.faq dd{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  font-size:14px;
}

/* ---------- CTA: 틴티드 스트립 ---------- */
.cta{
  background:linear-gradient(90deg, hsl(var(--h) 46% 94%), hsl(var(--h) 46% 90%));
  border-top:1px solid hsl(var(--h) 46% 84%);
  border-bottom:1px solid hsl(var(--h) 46% 84%);
  padding:26px 0;
  margin:8px 0 46px;
}
.cta__inner{
  max-width:920px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta__text{
  font-size:14.5px;
  color:var(--accent-ink);
  margin:0;
}
.cta__text strong{
  display:block;
  font-family:var(--font-head);
  font-size:16.5px;
  color:var(--ink);
  margin-bottom:2px;
}
.cta__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 18px;
  border-radius:99px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn--solid{
  background:var(--accent);
  color:#fff;
}
.btn--solid:hover{ background:var(--accent-ink); }
.btn--line{
  background:transparent;
  color:var(--accent-ink);
  border-color:var(--accent);
}
.btn--line:hover{ background:hsl(0 0% 100% / 0.6); }

/* ---------- footer: 상단 보더 단문 ---------- */
.ftr{
  border-top:2px solid var(--line);
  padding:26px 0 32px;
}
.ftr__inner{
  max-width:920px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.ftr__biz{
  font-size:12.5px;
  line-height:1.8;
  color:var(--muted);
  margin:0;
}
.ftr__biz a{ color:var(--muted); text-decoration:underline; }
.ftr__nav{
  display:flex;
  gap:14px;
}
.ftr__nav a{
  font-size:12.5px;
  color:var(--muted);
  text-decoration:none;
}
.ftr__nav a:hover{ color:var(--accent-ink); }
.ftr__copy{
  font-size:12px;
  color:hsl(0 0% 62%);
  margin:4px 0 0;
}

@media (max-width:640px){
  .hdr__inner{ height:44px; }
  .hero{ padding:32px 0 26px; }
  .main{ padding:30px 0 4px; }
  .cta__inner{ flex-direction:column; align-items:flex-start; }
  .steps li{ padding-left:48px; }
}

@media (max-width:375px){
  .wrap,.hdr__inner,.cta__inner,.ftr__inner{ padding-left:14px; padding-right:14px; }
  .hero h1{ font-size:22px; }
}
