@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

/* 과천 펜타원 기업유치 랜딩
 * 디자인 문법은 기존 pentaone.co.kr을 그대로 따른다 —
 *   · 상단 가로 GNB(로고 좌 · 굵은 검정 메뉴 · 우측 보라 전화번호)
 *   · 섹션 제목 가운데 정렬(작은 리드 + 큰 제목, 포인트만 보라)
 *   · 사선 컷 카드(보라·코랄 교차) · 우측 세로 플로팅 탭
 *   · 밝은 배경 · 각진 모서리 · Noto Sans
 * 임의 색·둥근 버튼·좌측 정렬 헤딩을 쓰지 않는다. */

:root {
  --brand: #6E3695;         /* 보라는 이 한 가지만 쓴다 */
  --brand-dk: #4E2570;
  --coral: #D0384B;
  --coral-dk: #B02A3C;

  /* 어두운 면 위의 글자는 보라끼를 뺀 중성 회색으로 — 연보라는 촌스러워진다 */
  --on-dark: #D8D8DC;
  --on-dark-2: #9A9AA4;
  --on-dark-3: #6F6F79;

  --ink: #222222;
  --ink-2: #4A4A4A;
  --muted: #8A8A8E;
  --line: #E1E1E1;
  --paper: #FFFFFF;
  --wash: #F7F7F9;
  --dark: #1E1A24;        /* 마감 섹션용 뉴트럴 다크 — 보라기 없음 */

  --font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1200px;
  --pad: clamp(18px, 4vw, 40px);
  --sec: clamp(56px, 5.6vw, 84px);

  --t-hero: clamp(2.1rem, 1.1rem + 4.2vw, 4.4rem);
  --t-h2: clamp(1.55rem, 1.1rem + 1.9vw, 2.5rem);
  --t-h3: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
  --t-body: clamp(0.96rem, 0.92rem + 0.2vw, 1.06rem);
  --t-small: 0.85rem;

  --cut: 22px;                       /* 사선 컷 크기 */
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* 헤더가 고정이라 앵커로 점프하면 섹션 상단이 헤더 뒤로 들어간다.
   헤더 높이만큼 내려서 섹션이 헤더 바로 아래에서 시작하게 한다. */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 900px) { section[id] { scroll-margin-top: 72px; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.76;
  color: var(--ink-2);
  background: var(--paper);
  word-break: keep-all;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
/* 리듬 — 강조 섹션은 여백을 더 주고, 붙는 섹션은 줄인다 */
.section--tight { padding-block: clamp(44px, 4.4vw, 66px); }
.section--tall { padding-block: clamp(68px, 7vw, 104px); }
.section--wash { background: var(--wash); }

/* ---------- 섹션 헤딩 — 가운데 정렬이 기존 문법 ---------- */

.shead { text-align: center; margin-bottom: clamp(28px, 3vw, 38px); }
.shead__lead { font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem); color: var(--muted); margin: 0 0 14px; }
.shead h2 {
  font-size: var(--t-h2);
  font-weight: 900;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0;
}
.shead h2 b { color: var(--brand); font-weight: 900; }
.shead__desc { max-width: 62ch; margin: 16px auto 0; color: #666; font-size: 1.06rem; line-height: 1.65; }

h3 { font-size: var(--t-h3); font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.note { font-size: var(--t-small); color: var(--muted); margin-top: 16px; }

/* ---------- GNB ---------- */

/* 히어로 위에서는 투명하게 얹히고, 히어로를 지나면 흰 바로 내려앉는다 */
.gnb {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gnb.is-stuck {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(10px);
}

/* 로고는 흰색/컬러 두 벌을 두고 상태에 따라 바꾼다 */
.gnb__logo--c { display: none; }
.gnb.is-stuck .gnb__logo--w { display: none; }
.gnb.is-stuck .gnb__logo--c { display: block; }

.gnb__in { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); height: 88px; }
.gnb__logo { display: block; line-height: 0; flex-shrink: 0; }
.gnb__logo img { height: 50px; width: auto; }

.gnb__menu { display: flex; align-items: center; gap: clamp(13px, 1.8vw, 30px); margin-left: auto; }
.gnb__menu a {
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1.05rem);
  font-weight: 700; color: #fff; text-decoration: none; white-space: nowrap;
  padding: 6px 0; border-bottom: 2px solid transparent;
  text-shadow: 0 1px 12px rgba(10, 6, 16, 0.5);
  transition: color 0.3s var(--ease), border-color 0.18s var(--ease), text-shadow 0.3s var(--ease);
}
.gnb__menu a:hover { border-bottom-color: currentColor; }
.gnb.is-stuck .gnb__menu a { color: var(--ink); text-shadow: none; }
.gnb.is-stuck .gnb__menu a:hover { color: var(--brand); border-bottom-color: var(--brand); }

.gnb__tel { display: flex; align-items: baseline; gap: 7px; text-decoration: none; margin-left: clamp(14px, 2vw, 34px); white-space: nowrap; }
.gnb__tel span { font-size: var(--t-small); color: rgba(255, 255, 255, 0.82); transition: color 0.3s var(--ease); }
.gnb.is-stuck .gnb__tel span { color: var(--muted); }
.gnb__tel b {
  font-size: clamp(1.05rem, 0.9rem + 0.55vw, 1.32rem); font-weight: 700; color: #fff; letter-spacing: -0.01em;
  text-shadow: 0 1px 14px rgba(10, 6, 16, 0.55);
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
.gnb.is-stuck .gnb__tel b { color: var(--brand); text-shadow: none; }

/* ---------- 히어로 — 이미지 위 가운데 제목 ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; background: #17141C;
}
/* 히어로 3장 크로스페이드 — 느린 줌으로 정지 사진의 답답함을 없앤다 */
.hero__slides { position: absolute; inset: 0; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; z-index: 0;
  transition: opacity 1500ms ease-in-out;
}
/* 나가는 장은 깔린 채로 두고 들어오는 장을 그 위에 겹쳐 띄운다 —
   둘 다 투명해지는 순간이 없어야 검은 화면이 안 보인다 */
.hero__bg.is-prev { opacity: 1; z-index: 1; }
.hero__bg.is-on { opacity: 1; z-index: 2; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(to bottom, rgba(16, 10, 22, 0.34) 0%, rgba(16, 10, 22, 0.5) 46%, rgba(16, 10, 22, 0.72) 100%);
}
.hero__in {
  position: relative; z-index: 4;
  padding-block: clamp(96px, 12vw, 150px);
  /* 가운데 정렬은 폭을 좁혀야 축이 선다 — 1200px 전체로 두면 문장이 흩어진다 */
  max-width: 860px;
}

.hero__tag {
  display: inline-block; background: var(--coral-dk); color: #fff;
  font-size: var(--t-small); font-weight: 700; letter-spacing: 0.06em;
  padding: 7px 15px; margin-bottom: 18px;
}
.hero h1 {
  font-size: var(--t-hero); font-weight: 900; line-height: 1.16;
  letter-spacing: -0.05em; margin: 0 0 24px; color: #fff;
  text-shadow: 0 2px 28px rgba(10, 6, 16, 0.55);
}
.hero__sub { font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.32rem); line-height: 1.55; color: #fff; font-weight: 600; margin: 0 auto 32px; max-width: 62ch; }
.hero__sub2 { display: inline-block; margin-top: 14px; font-size: clamp(0.92rem, 0.88rem + 0.25vw, 1.05rem); font-weight: 500; color: #E6E6EB; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero__sub2 b { font-weight: 800; color: #fff; }
.br-m { display: none; }
.btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* 지표는 히어로 하단 바로 분리한다 — 중앙 텍스트 아래 빈 공간이 사라지고
   위아래 무게가 맞는다 */
.hero__bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(to top, rgba(14, 10, 18, 0.72), rgba(14, 10, 18, 0.18));
  backdrop-filter: blur(2px);
}
.hero__facts {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 24px;
  padding-block: clamp(18px, 2.2vw, 30px);
}
.hero__fact { flex: 1 1 auto; min-width: 120px; text-align: center; }
.hero__fact b { display: block; font-size: clamp(1.2rem, 1rem + 0.85vw, 1.65rem); font-weight: 900; color: #fff; letter-spacing: -0.025em; line-height: 1.2; }
.hero__fact span { display: block; margin-top: 6px; }
.hero__fact span { font-size: var(--t-small); color: var(--on-dark-2); }

/* ---------- 버튼 ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border: 1px solid transparent; border-radius: 0;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn::after { content: "→"; font-weight: 400; transition: transform 0.18s var(--ease); }
.btn:hover::after { transform: translateX(4px); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-dk); }
.btn--coral { background: var(--coral-dk); color: #fff; }
.btn--coral:hover { background: #B72639; }
.btn--line { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--line:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

/* ---------- 사선 컷 카드 — 펜타원 시각 시그니처 ---------- */

.cuts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }

.cut {
  position: relative;
  padding: clamp(30px, 3vw, 40px) clamp(20px, 2vw, 28px);
  text-align: center; color: #fff;
}
.cut { background: #fff; border: 1px solid #DDDDE2; color: var(--ink-2); min-height: 236px; display: flex; flex-direction: column; justify-content: center; }
.cut__label { font-size: 0.875rem; color: var(--muted); margin: 0 0 12px; line-height: 1.45; }
.cut__value {
  font-size: clamp(1.5rem, 1.15rem + 1.4vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.045em; line-height: 1.15; margin: 0 0 12px;
  color: var(--ink); white-space: nowrap;
}

.cut__note { font-size: var(--t-small); color: var(--muted); margin: 0; line-height: 1.6; }
.cut .ico { color: var(--brand); opacity: 1; width: 28px; height: 28px; margin-bottom: 18px; }

/* ---------- 정보 셀(밝은 카드) ---------- */

.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.cell { background: var(--paper); padding: clamp(24px, 2.8vw, 34px); text-align: center; }
.section--wash .cell { background: #fff; }
.cell__label { font-size: var(--t-small); color: var(--muted); margin: 0 0 6px; }
.cell__value { font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.1rem); font-weight: 700; color: var(--ink); letter-spacing: -0.045em; line-height: 1.15; margin: 0 0 8px; }
.cell__note { font-size: var(--t-small); color: var(--muted); margin: 0; }

/* ---------- 층 스택 ---------- */

.stack { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 28px; align-items: stretch; }
.stack__tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.tab {
  flex: 1; min-height: 52px; border: 1px solid #D7D7DC; background: #fff;
  color: var(--ink-2); font-family: inherit; font-size: 0.94rem; font-weight: 700; cursor: pointer;
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.tab[aria-selected="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }
.tab:hover:not([aria-selected="true"]) { border-color: var(--brand); color: var(--brand); }

.floors { display: flex; flex-direction: column; max-height: 520px; overflow-y: auto; border: 1px solid #E4E4E7; }
.floor {
  display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px;
  width: 100%; min-height: 50px; padding: 0 14px;
  border: 0; border-bottom: 1px solid #E4E4E7; border-left: 4px solid transparent; background: #fff;
  color: var(--ink-2); font-family: inherit; font-size: 0.92rem; text-align: left; cursor: pointer;
  transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.floor:hover { background: #FAF7FC; }
.floor[aria-pressed="true"] { background: #F4EDF8; border-left-color: var(--brand); color: var(--ink); }
.floor:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.floor__no { font-weight: 900; font-size: 0.98rem; }
.floor__bar { height: 4px; background: #E5E5E9; }
.floor[aria-pressed="true"] .floor__bar { background: var(--brand); }
.floor__area { font-size: var(--t-small); color: var(--muted); white-space: nowrap; text-align: right; }
.floor[aria-pressed="true"] .floor__area { color: var(--ink-2); }

.panel { border: 1px solid var(--line); background: #fff; padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.panel__head { display: flex; align-items: baseline; gap: 10px; }
.panel__title { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem); font-weight: 900; color: var(--brand); letter-spacing: -0.03em; margin: 0; }
.panel__sub { font-size: var(--t-small); color: var(--muted); }
.panel__rows { margin: 20px 0 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.prow { display: grid; grid-template-columns: auto 1fr; align-items: baseline; align-content: center; flex: 1; min-height: 58px; gap: 20px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.prow:last-child { border-bottom: 0; }
.prow dt { font-size: var(--t-small); color: var(--muted); margin: 0; }
.prow dd { margin: 0; font-weight: 700; color: var(--ink); font-size: 1.05rem; text-align: right; }
.prow dd b { font-size: 1.35rem; font-weight: 800; color: var(--brand); letter-spacing: -0.025em; }
.panel__cta { margin-top: 26px; flex: none; }
.panel__cta .btn { display: flex; width: 100%; justify-content: center; }

/* ---------- 리스트 ---------- */

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding-left: 20px; margin-bottom: 11px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 7px; background: var(--brand); }

/* ---------- 표 ---------- */

.table-scroll { overflow-x: auto; }
table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 0.98rem; }
th, td { text-align: left; padding: 15px 10px; border-bottom: 1px solid var(--line); }
tbody th { font-weight: 700; color: var(--ink); width: 36%; background: var(--wash); padding-left: 18px; }

/* ---------- split ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }

/* ---------- 절차 ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stepitem { background: #fff; border: 1px solid var(--line); padding: clamp(24px, 2.8vw, 34px); }
.stepitem i { font-style: normal; display: inline-block; font-size: var(--t-small); font-weight: 900; color: #fff; background: var(--brand); padding: 4px 11px; margin-bottom: 12px; }
.stepitem h3 { font-size: 1.12rem; margin: 0 0 8px; }
.stepitem p { margin: 0; color: var(--ink-2); line-height: 1.75; }

/* ---------- 폼 ---------- */

.form { display: grid; row-gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-size: var(--t-small); font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 0;
  background: #fff; color: var(--ink); font-family: inherit; font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: var(--t-small); color: var(--muted); margin: 6px 0 4px; }
.consent input { margin-top: 5px; accent-color: var(--brand); }
.consent a { color: var(--brand); }
.form__msg { font-size: var(--t-small); margin: 0; min-height: 1.4em; }
.form__box { background: #fff; border: 1px solid var(--line); padding: clamp(24px, 3vw, 36px); text-align: left; }

/* ---------- 우측 플로팅 탭 ---------- */

.floattab {
  position: fixed; right: 24px; top: 300px; z-index: 55;
  display: flex; flex-direction: column; gap: 1px; width: 104px;
}
.floattab a {
  min-height: 70px; padding: 14px 10px; text-align: center; color: #fff; text-decoration: none;
  display: flex; flex-direction: column; justify-content: center;
  font-size: 0.875rem; font-weight: 700; line-height: 1.35;
  transition: filter 0.18s var(--ease);
}
.floattab a:hover { filter: brightness(1.1); }
.floattab a:first-child { background: var(--brand); }
.floattab a:last-child { background: var(--coral-dk); }
.floattab small { display: block; font-weight: 400; opacity: 0.8; margin-top: 4px; font-size: 0.75rem; }

/* ---------- 푸터 ---------- */

.footer { background: #1E1A24; color: var(--on-dark-2); padding-block: 56px 44px; font-size: var(--t-small); text-align: left; }
.footer a { color: var(--on-dark); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer p { margin: 0 0 5px; }

.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer__id img { height: 46px; width: auto; display: block; margin: 0 0 18px; }
.footer__call { text-align: right; }
.footer__calllabel { color: var(--on-dark-3); margin-bottom: 6px; }
.footer__tel { display: inline-block; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.footer__callnote { color: var(--on-dark-3); margin: 4px 0 0; }

@media (max-width: 640px) {
  .footer__top { display: block; }
  .footer__call { text-align: left; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}
.disc {
  margin: 32px 0 0; padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none; color: #5C5C66;
  font-size: 0.7rem; line-height: 1.6;
}
.disc li { display: grid; grid-template-columns: auto 1fr; gap: 7px; align-items: baseline; margin-bottom: 5px; }
.disc li::before { content: "\203B"; opacity: 0.75; }

.footer__meta { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: var(--on-dark-3); }
.footer__meta span { margin-left: 10px; }

/* ---------- 모바일 하단 바 ---------- */

.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; gap: 0; padding-bottom: env(safe-area-inset-bottom); }
.callbar .btn { flex: 1; justify-content: center; padding-block: 15px; }

/* ---------- 반응형 ---------- */

@media (max-width: 1080px) {
  .gnb__menu { display: none; }
  .floattab { display: none; }
}

@media (max-width: 900px) {
  .grid--3, .form__row, .split, .steps { grid-template-columns: 1fr; }
  .stack { grid-template-columns: 1fr; }
  .floors { max-height: 320px; }
  .callbar { display: flex; }
  body { padding-bottom: 66px; }
  .gnb__in { height: 68px; }
  .gnb__logo img { height: 38px; }
  /* 지표 바를 흐름 안으로 — absolute로 두면 짧은 화면에서 본문 위로 올라탄다 */
  .hero { min-height: calc(100svh - 66px); flex-direction: column; }
  .hero__in { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; padding: 92px 0 44px; }
  .hero__bar { position: static; width: 100%; }
  .br-m { display: inline; }
  /* 목록의 계약면적은 아래 패널과 같은 값이라 세로로 쌓이면 같은 표가 두 번 보인다.
     모바일에서는 목록을 "층 고르기"로만 두고 수치는 패널에만 남긴다 */
  .floor__m2 { display: none; }
  .cut { min-height: 0; padding-block: 28px; }
  #spec { padding-bottom: 40px; }
  .gnb__tel { margin-left: auto; }
  .hero .btns { display: none; }
}

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

/* ---------- 아이콘 — 파일은 assets/icon/ 한 곳, 색은 부모에서 상속 ---------- */

.ico {
  display: block; width: 34px; height: 34px; flex: 0 0 auto; margin: 0 auto 14px;
  background-color: currentColor;
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
}
.ico-power   { --ico: url("./assets/icon/power.svg"); }
.ico-lobby   { --ico: url("./assets/icon/lobby.svg"); }
.ico-storage { --ico: url("./assets/icon/storage.svg"); }
.ico-load    { --ico: url("./assets/icon/load.svg"); }
.ico-height  { --ico: url("./assets/icon/height.svg"); }
.ico-parking { --ico: url("./assets/icon/parking.svg"); }
.ico-chart   { --ico: url("./assets/icon/chart.svg"); }
.ico-check   { --ico: url("./assets/icon/check.svg"); }
.ico-city    { --ico: url("./assets/icon/city.svg"); }
.ico-area    { --ico: url("./assets/icon/area.svg"); }
.ico-pin     { --ico: url("./assets/icon/pin.svg"); }
.ico-road    { --ico: url("./assets/icon/road.svg"); }
.ico-train   { --ico: url("./assets/icon/train.svg"); }
.ico-future  { --ico: url("./assets/icon/future.svg"); }
.ico-sign    { --ico: url("./assets/icon/sign.svg"); }
.ico-hvac    { --ico: url("./assets/icon/hvac.svg"); }
.ico-floorsys{ --ico: url("./assets/icon/floorsys.svg"); }
.ico-lift    { --ico: url("./assets/icon/lift.svg"); }
.ico-view    { --ico: url("./assets/icon/view.svg"); }

/* ---------- 입지 ---------- */

/* 원본 1855px — 화면 폭으로 써도 2배 가까운 밀도가 나온다 */
.mapwrap { border: 1px solid #DEDEDE; background: #fff; padding: 12px; margin-bottom: clamp(20px, 2.4vw, 30px); }
.mapwrap img { width: 100%; height: auto; }
.maplinks { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.maplinks .btn { padding: 12px 22px; font-size: 0.92rem; }

.locs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.loc {
  background: #fff; border: 1px solid var(--line); padding: clamp(24px, 2.6vw, 32px);
  text-align: center;
}
.loc .ico { color: var(--brand); }
.loc h3 { margin-bottom: 10px; line-height: 1.4; }
.loc h3 b { color: var(--brand); }
.loc ul { list-style: none; margin: 0; padding: 0; text-align: left; }
.loc li { position: relative; padding-left: 14px; font-size: 0.94rem; margin-bottom: 8px; color: var(--ink-2); }
.loc li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 5px; height: 5px; background: var(--brand); }

/* 사선 컷 카드에도 아이콘 */


/* 사진 밸런스 — split 좌우 높이를 맞춘다 */
.split img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; }


/* ---------- 단지 사진 — 입지 카드와 같은 액자 문법 ---------- */

.walk { border: 1px solid #DEDEDE; background: #fff; padding: 12px; margin: 0; }
.walk img { width: 100%; height: clamp(220px, 24vw, 330px); object-fit: cover; display: block; }
.walk figcaption { padding: 14px 2px 2px; font-size: var(--t-small); color: var(--muted); }

/* ---------- 스크롤 리빌 ---------- */

.rv { opacity: 0; transform: translateY(18px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 80ms; }
.rv-d2 { transition-delay: 160ms; }
.rv-d3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
}

/* ---------- 그 밖에 — 대표 카드 1 + 보조 카드 3 ---------- */

.feat { display: grid; grid-template-columns: 1.35fr 1fr; gap: 14px; align-items: stretch; }

.feat__hero {
  position: relative; overflow: hidden; background: #17141C; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(300px, 34vw, 440px);
}
.feat__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feat__hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14, 9, 18, 0.88) 0%, rgba(14, 9, 18, 0.34) 40%, rgba(14, 9, 18, 0) 68%),
    linear-gradient(100deg, rgba(14, 9, 18, 0.55) 0%, rgba(14, 9, 18, 0.12) 46%, rgba(14, 9, 18, 0) 70%);
}
.feat__body { position: relative; z-index: 2; padding: clamp(26px, 3vw, 40px); }
.feat__body .ico { color: var(--coral); margin: 0 0 14px; width: 38px; height: 38px; }
.feat__body h3 {
  color: #fff; font-size: clamp(1.4rem, 1.05rem + 1.5vw, 2.15rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.22; margin: 0 0 12px;
}
.feat__body p { margin: 0; color: var(--on-dark); max-width: 44ch; }

.feat__side { display: grid; gap: 14px; }
.feat__item {
  background: #fff; border: 1px solid var(--line);
  padding: clamp(18px, 2vw, 26px);
  display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start;
}
.feat__item .ico { margin: 2px 0 0; width: 30px; height: 30px; color: var(--brand); }
.feat__item h3 { font-size: 1.02rem; margin: 0 0 4px; }
.feat__item p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.62; }

@media (max-width: 900px) {
  .feat { grid-template-columns: 1fr; }
}


/* ---------- 문의 — 페이지 마감이라 어둡게 받는다 ---------- */

/* 폼이 주인공인 섹션이라 배경 사진을 깔지 않는다 — 깔면 입력칸이 묻힌다 */
.contact { position: relative; background: var(--dark); color: var(--on-dark); overflow: clip; }
.contact::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--coral));
}
.contact > .wrap { position: relative; z-index: 2; }
.contact .shead h2 { color: #fff; }
.contact .shead h2 b { color: #FFFFFF; }
.contact .shead__lead { color: var(--on-dark-2); }
.contact .shead__desc { color: var(--on-dark-2); }

.contact__grid { display: grid; grid-template-columns: 360px 1fr; gap: 22px; align-items: stretch; max-width: 1060px; margin-inline: auto; }

.mgr {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
}
.mgr__head { color: #fff; font-size: 1rem; margin: 0 0 4px; }
.mgr > * + * { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.mgr__row { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.mgr__who { font-size: 0.875rem; color: var(--on-dark-2); margin: 0 0 6px; }
.mgr__tel { display: inline-block; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; text-decoration: none; }
.mgr__tel:hover { color: #FFFFFF; }
.mgr__note { font-size: 0.8125rem; color: var(--on-dark-3); margin: 0; padding: 18px 0 0; line-height: 1.7; }
.mgr__note + .mgr__note { margin-top: 18px; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.form textarea { min-height: 112px; }
.form button[type=submit] { min-height: 56px; }

/* ---------- 갤러리 — 같은 비율 6장 균등 격자 ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.shot { position: relative; margin: 0; overflow: hidden; background: #17141C; aspect-ratio: 900 / 640; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.shot:hover img { transform: scale(1.04); }

.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  background: linear-gradient(to top, rgba(16, 12, 20, 0.86), rgba(16, 12, 20, 0));
  color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 사업개요 — 좌 조감도 / 우 제원, 아래 배치도 ---------- */

.ovw {
  display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(20px, 2.6vw, 36px);
  align-items: stretch; margin-bottom: 14px;
}
.ovw__fig { margin: 0; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.ovw__fig > .zoom { flex: 1; min-height: 0; }
.ovw__fig img { width: 100%; height: 100%; object-fit: cover; }
.ovw__fig figcaption,
.ovw__site figcaption { padding: 11px 14px; font-size: var(--t-small); color: var(--muted); border-top: 1px solid var(--line); }

.ovw__table { border: 1px solid var(--line); background: #fff; }
.ovw__table table { min-width: 0; }
.ovw__table tbody th { width: 40%; }
.ovw__table th, .ovw__table td { padding: 14px 16px; }
.ovw__table tr:last-child th, .ovw__table tr:last-child td { border-bottom: 0; }

.ovw__site { margin: 0; border: 1px solid var(--line); background: #fff; }
.ovw__pair { display: grid; gap: 14px; margin-top: clamp(20px, 2.4vw, 30px); }
@media (min-width: 860px) { .ovw__pair { grid-template-columns: 1fr 1fr; align-items: start; } }
.ovw__site img { width: 100%; height: clamp(220px, 24vw, 330px); object-fit: cover; object-position: center 42%; display: block; }

@media (max-width: 900px) {
  .ovw { grid-template-columns: 1fr; }
}

/* ---------- 도면·지도 탭 확대 — 모바일에서 글자가 안 보인다 ---------- */

.zoom { display: block; position: relative; }
.zoom img { display: block; }
.zoom::after {
  content: "탭하면 크게 보기";
  position: absolute; right: 10px; bottom: 10px;
  padding: 7px 12px; border-radius: 2px;
  background: rgba(30, 26, 36, 0.82); color: #fff;
  font-size: 0.75rem; font-weight: 600; letter-spacing: -0.02em;
  display: none;
}
@media (max-width: 720px) { .zoom::after { display: block; } }

.panel__free { margin: 14px 0 0; font-size: var(--t-small); font-weight: 600; color: var(--coral); }

.floor.is-sold .floor__bar { filter: grayscale(0.65); }
.floor__tag {
  display: inline-block; font-style: normal; font-size: 0.72rem; font-weight: 700;
  letter-spacing: -0.02em; color: #fff; background: var(--brand-dk);
  padding: 3px 7px; border-radius: 2px;
}

.prow__py { margin-left: 6px; font-size: 0.82em; font-weight: 500; color: var(--muted); }

/* ---------- 세제 감면 ---------- */

.taxnote {
  margin-top: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line); background: #fff;
  padding: clamp(26px, 3vw, 38px);
}
.taxnote h3 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--brand); margin: 0 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.taxnote ul { margin: 0; padding: 0; list-style: none; }
.taxnote li {
  position: relative; padding-left: 15px;
  color: var(--body); font-size: 0.95rem; line-height: 1.75; margin-bottom: 11px;
}
.taxnote li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
  opacity: 0.45;
}
.taxnote li b { color: var(--ink); font-weight: 700; }
.taxnote .note { margin: 0; padding-top: 20px; border-top: 1px solid var(--line); }
.taxnote__col + .taxnote__col { margin-top: 28px; }

@media (min-width: 860px) {
  .taxnote { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; align-items: start; }
  .taxnote__col + .taxnote__col { margin-top: 0; }
  .taxnote .note { grid-column: 1 / -1; margin-top: 26px; }
}

/* ---------- 특장점 — 사진 2장 + 아이콘 목록 ---------- */

.shots2 { display: grid; gap: 14px; margin-top: clamp(30px, 3.4vw, 48px); }
@media (min-width: 760px) { .shots2 { grid-template-columns: 1fr 1fr; } }

.shot2 { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.shot2 img { width: 100%; height: clamp(230px, 22vw, 310px); object-fit: cover; display: block; }
.shot2:nth-child(2) img { object-position: center 42%; }
.shot2__body { padding: clamp(20px, 2.2vw, 28px); flex: 1; }
.shot2__body .ico { width: 28px; height: 28px; color: var(--brand); margin-bottom: 12px; }
.shot2__body h3 { font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem); margin: 0 0 8px; }
.shot2__body p { margin: 0; color: var(--ink-2); line-height: 1.75; font-size: 0.95rem; }

.merits {
  list-style: none; margin: clamp(28px, 3vw, 40px) 0 0; padding: clamp(6px, 1vw, 10px) 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: 0;
}
@media (min-width: 760px) { .merits { grid-template-columns: 1fr 1fr; column-gap: clamp(28px, 3.5vw, 56px); } }
.merits li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: clamp(18px, 2vw, 24px) 0; border-bottom: 1px solid var(--line); }
.merits .ico { width: 26px; height: 26px; color: var(--brand); margin-top: 2px; }
.merits b { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 5px; }
.merits span { display: block; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
