/* =====================================================
   e편한세상 동대구역 센텀스퀘어 — main.css v1.0.2
===================================================== */
:root {
  --gold:       #b8975a;
  --gold-light: #d4b483;
  --gold-dark:  #8a6e3a;
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e45;
  --navy-light: #243b55;
  --cream:      #f7f3ed;
  --cream-dark: #ede8df;
  --white:      #ffffff;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #888;
  --header-h:   80px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Noto Sans KR', sans-serif;
  background:var(--cream); color:var(--text-dark);
  overflow-x:hidden; -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:none;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

/* ── Container ── */
.container { max-width:1200px; margin:0 auto; padding:0 40px; }
.section-pad { padding:100px 0; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--header-h);
  background:rgba(13,27,42,0.1);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(184,151,90,0.1);
  transition:background 0.35s, border-color 0.35s;
}
.site-header.scrolled {
  background:rgba(13,27,42,0.96);
  border-bottom-color:rgba(184,151,90,0.3);
}
.header-inner {
  max-width:1400px; margin:0 auto;
  height:var(--header-h); padding:0 40px;
  display:flex; align-items:center; gap:32px;
}
.header-logo a { display:flex; flex-direction:column; }
.logo-main {
  font-family:'Noto Serif KR', serif;
  font-size:16px; font-weight:700; color:var(--gold);
  letter-spacing:0.08em; line-height:1.2;
}
.logo-sub { font-size:11px; color:rgba(255,255,255,0.65); letter-spacing:0.15em; }
.header-nav { margin-left:auto; }
.header-nav ul { display:flex; gap:28px; }
.header-nav a {
  color:rgba(255,255,255,0.8); font-size:14px;
  letter-spacing:0.04em; transition:color 0.2s; position:relative;
}
.header-nav a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:var(--gold);
  transform:scaleX(0); transition:transform 0.2s;
}
.header-nav a:hover { color:var(--gold); }
.header-nav a:hover::after { transform:scaleX(1); }
.header-right { display:flex; align-items:center; gap:16px; }
.header-phone { color:var(--gold); font-size:15px; font-weight:700; white-space:nowrap; }
.header-reg-btn {
  background:var(--gold); color:var(--navy);
  border:none; cursor:pointer; padding:10px 22px;
  font-size:13px; font-weight:700; letter-spacing:0.08em;
  transition:background 0.2s; font-family:'Noto Sans KR', sans-serif;
}
.header-reg-btn:hover { background:var(--gold-light); }
.mobile-toggle {
  display:none; flex-direction:column; gap:6px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.mobile-toggle span { display:block; width:26px; height:1.5px; background:var(--gold); }

/* ══════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════ */
.mobile-drawer {
  position:fixed; top:0; right:-320px; width:300px; height:100vh;
  background:var(--navy); z-index:200;
  transition:right 0.35s cubic-bezier(.4,0,.2,1); overflow-y:auto;
}
.mobile-drawer.open { right:0; }
.drawer-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.55); z-index:199;
}
.drawer-overlay.active { display:block; }
.drawer-inner { padding:60px 28px 40px; }
.drawer-logo {
  font-family:'Noto Serif KR',serif; font-size:16px; font-weight:700;
  color:var(--gold); line-height:1.6; margin-bottom:36px;
  padding-bottom:24px; border-bottom:1px solid rgba(184,151,90,0.25);
}
.drawer-logo span { font-size:12px; color:rgba(255,255,255,.6); }
.drawer-nav ul { display:flex; flex-direction:column; gap:2px; }
.drawer-nav a {
  display:block; padding:14px 0; color:rgba(255,255,255,0.8);
  font-size:16px; border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color 0.2s;
}
.drawer-nav a:hover { color:var(--gold); }
.drawer-phone { margin-top:32px; padding:20px; background:rgba(184,151,90,0.12); border:1px solid rgba(184,151,90,0.25); }
.drawer-phone a { color:var(--gold); font-size:18px; font-weight:700; }
.drawer-btns { margin-top:20px; }
.drawer-reg-btn {
  display:block; width:100%; background:var(--gold); color:var(--navy);
  border:none; cursor:pointer; padding:14px; font-size:15px; font-weight:700;
  font-family:'Noto Sans KR',sans-serif; text-align:center;
}
.drawer-reg-btn:hover { background:var(--gold-light); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-gold {
  background:var(--gold); color:var(--navy);
  border:none; cursor:pointer; padding:16px 40px;
  font-size:14px; font-weight:700; letter-spacing:0.1em;
  transition:background 0.2s, transform 0.15s; display:inline-block;
  font-family:'Noto Sans KR',sans-serif;
}
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-outline-white {
  border:1px solid rgba(255,255,255,0.55); color:rgba(255,255,255,0.9);
  padding:15px 36px; font-size:14px; letter-spacing:0.1em;
  transition:all 0.2s; display:inline-block;
}
.btn-outline-white:hover { border-color:var(--gold); color:var(--gold); }
.btn-navy {
  background:var(--navy); color:var(--white);
  padding:12px 28px; font-size:13px; font-weight:600;
  letter-spacing:0.08em; display:inline-block; transition:background 0.2s;
}
.btn-navy:hover { background:var(--navy-mid); }

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
.section-label { font-size:11px; color:var(--gold); letter-spacing:0.3em; text-transform:uppercase; margin-bottom:14px; display:block; }
.section-label.light { color:var(--gold-light); }
.section-title {
  font-family:'Noto Serif KR', serif;
  font-size:clamp(26px,3.5vw,42px); font-weight:700;
  color:var(--navy); line-height:1.4; margin-bottom:20px;
}
.section-title.light { color:var(--white); }
.section-desc { font-size:15px; color:var(--text-mid); line-height:1.9; max-width:600px; }

/* ══════════════════════════════════════
   HERO — 전체 화면 중앙 정렬
══════════════════════════════════════ */
.hero-section { position:relative; min-height:100vh; background:var(--navy); }
.hero-slide {
  min-height:100vh;
  background:var(--navy) center/cover no-repeat;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(13,27,42,0.82) 0%,rgba(13,27,42,0.52) 55%,rgba(13,27,42,0.72) 100%);
}
.hero-content {
  position:relative; z-index:2;
  text-align:center;
  padding:120px 40px 80px;
  max-width:860px; width:100%;
  display:flex; flex-direction:column; align-items:center;
}

/* ── 엠블럼 (깔끔하게 개선) ── */
.hero-emblem {
  width:240px; height:240px; margin-bottom:32px;
  will-change:transform;
  animation:emblemIn 1s cubic-bezier(.22,1,.36,1) both;
}
@keyframes emblemIn {
  from { opacity:0; transform:scale(0.3) rotate(-20deg); }
  to   { opacity:1; transform:scale(1)   rotate(0deg); }
}
.emblem-svg {
  width:100%; height:100%;
  animation:emblemSpin 50s linear infinite;
  animation-delay:1.1s;
  will-change:transform;
  backface-visibility:hidden;
  perspective:800px;
}
@keyframes emblemSpin {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

.hero-badge {
  display:inline-flex; align-items:center;
  border:1px solid rgba(184,151,90,0.6);
  color:rgba(212,180,131,0.9);
  font-size:11px; letter-spacing:0.25em;
  padding:7px 22px; margin-bottom:24px;
  animation:fadeInUp 0.6s ease 0.6s both;
}

/* ── 제목: Noto Serif KR ── */
.hero-title {
  font-family:'Noto Serif KR', serif;
  font-size:clamp(28px,4.5vw,58px); font-weight:700;
  color:var(--white); line-height:1.3; margin-bottom:14px;
  animation:fadeInUp 0.6s ease 0.8s both;
  text-shadow:0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-family:'Noto Sans KR', sans-serif;
  font-size:clamp(13px,1.8vw,16px);
  color:rgba(255,255,255,0.55); letter-spacing:0.18em; margin-bottom:40px;
  animation:fadeInUp 0.6s ease 1s both;
}
.hero-cta {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  animation:fadeInUp 0.6s ease 1.2s both;
}
.hero-phone-box {
  margin-top:36px; display:flex; align-items:center; justify-content:center; gap:12px;
  animation:fadeInUp 0.6s ease 1.4s both;
}
.hero-phone-box span { font-size:12px; color:rgba(255,255,255,.45); letter-spacing:0.1em; }
.hero-phone-box a {
  font-family:'Noto Sans KR',sans-serif;
  color:var(--gold); font-size:20px; font-weight:700; letter-spacing:0.05em;
}
.hero-pagination { bottom:80px !important; }
.hero-pagination .swiper-pagination-bullet { background:rgba(255,255,255,.35); }
.hero-pagination .swiper-pagination-bullet-active { background:var(--gold); }
.hero-prev, .hero-next { color:var(--gold) !important; }
.hero-prev::after, .hero-next::after { font-size:16px !important; }
.scroll-indicator {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.scroll-indicator span { font-size:9px; color:rgba(255,255,255,.3); letter-spacing:0.25em; }
.scroll-line {
  width:1px; height:36px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ══════════════════════════════════════
   OVERVIEW
══════════════════════════════════════ */
.overview-section { background:var(--white); }
.overview-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.apt-illustration-box {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  aspect-ratio:4/3; position:relative; overflow:hidden;
}
.apt-tag {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--gold); color:var(--navy);
  padding:18px 24px; font-size:12px; font-weight:700; line-height:1.7;
}
.info-table { width:100%; margin-top:32px; border-top:2px solid var(--navy); }
.info-table tr { display:grid; grid-template-columns:140px 1fr; border-bottom:1px solid var(--cream-dark); }
.info-table th { background:var(--cream); padding:12px 18px; font-size:13px; font-weight:600; color:var(--navy); text-align:left; }
.info-table td { padding:12px 18px; font-size:13px; color:var(--text-mid); background:var(--white); }
.overview-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:32px; }
.stat-item { border-left:2px solid var(--gold); padding-left:14px; }
.stat-item .num { font-family:'Noto Sans KR',sans-serif; font-size:26px; color:var(--navy); font-weight:700; line-height:1; margin-bottom:5px; }
.stat-item .unit-label { font-size:12px; color:var(--text-light); }
.overview-docs { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.doc-link { border:1px solid var(--navy); color:var(--navy); padding:8px 16px; font-size:12px; font-weight:500; transition:all 0.2s; display:inline-block; }
.doc-link:hover { background:var(--navy); color:var(--white); }

/* ══════════════════════════════════════
   PREMIUM
══════════════════════════════════════ */
.premium-section { background:var(--navy); position:relative; overflow:hidden; }
.premium-section::before {
  content:''; position:absolute; top:0; right:0; width:500px; height:500px;
  background:radial-gradient(circle,rgba(184,151,90,.08) 0%,transparent 70%); pointer-events:none;
}
.premium-intro { color:rgba(255,255,255,.42); font-size:15px; margin-top:10px; }
.premium-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:56px; background:rgba(184,151,90,.14); }
.premium-card { background:var(--bg-img) center/cover no-repeat var(--navy-mid); position:relative; overflow:hidden; }
.premium-card-inner { background:rgba(13,27,42,0.78); padding:48px 36px 44px; transition:background 0.3s; height:100%; }
.premium-card:hover .premium-card-inner { background:rgba(13,27,42,0.58); }
.premium-num { font-family:'Playfair Display',serif; font-size:64px; color:rgba(184,151,90,.1); font-weight:700; line-height:1; margin-bottom:20px; }
.premium-card h3 { font-family:'Noto Serif KR',serif; font-size:18px; color:var(--white); font-weight:600; line-height:1.6; margin-bottom:16px; }
.premium-card h3 em { color:var(--gold); font-style:normal; }
.premium-card p { font-size:13px; color:rgba(255,255,255,.48); line-height:1.85; }

/* ══════════════════════════════════════
   UNITS
══════════════════════════════════════ */
.units-section { background:var(--cream); }
.unit-tabs { display:flex; gap:0; width:fit-content; border:1px solid var(--navy); overflow:hidden; margin:44px 0 36px; }
.unit-tab { padding:11px 26px; font-size:13px; font-weight:500; cursor:pointer; border:none; letter-spacing:0.05em; background:var(--white); color:var(--text-mid); transition:all 0.2s; font-family:'Noto Sans KR',sans-serif; }
.unit-tab.active { background:var(--navy); color:var(--white); }
.unit-tab:hover:not(.active) { background:var(--cream-dark); }
.unit-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.unit-card { background:var(--white); border:1px solid rgba(0,0,0,.07); overflow:hidden; transition:all 0.3s; cursor:pointer; }
.unit-card:hover { transform:translateY(-4px); box-shadow:0 20px 40px rgba(0,0,0,.1); border-color:var(--gold); }
.unit-card-img { background:linear-gradient(135deg,#f0ece4,#e8e0d0); height:160px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.unit-card-img img { width:100%; height:100%; object-fit:contain; padding:8px; }
.unit-plan-svg { width:80%; height:80%; opacity:.65; }
.unit-card-body { padding:18px 20px; }
.unit-type { font-family:'Noto Serif KR',serif; font-size:17px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.unit-pyeong { font-size:12px; color:var(--gold); font-weight:500; margin-bottom:7px; }
.unit-count { font-size:12px; color:var(--text-light); }
.unit-count strong { color:var(--text-mid); }
.unit-summary { margin-top:56px; overflow-x:auto; }
.summary-table { width:100%; border-collapse:collapse; border-top:2px solid var(--navy); }
.summary-table th, .summary-table td { padding:14px 20px; text-align:left; border-bottom:1px solid var(--cream-dark); font-size:14px; }
.summary-table thead th { background:var(--navy); color:var(--white); font-size:13px; }
.summary-table tfoot th { background:var(--cream); color:var(--navy); font-weight:700; }

/* ══════════════════════════════════════
   NEWS
══════════════════════════════════════ */
.news-section { background:var(--white); }
.news-grid { display:grid; grid-template-columns:280px 1fr; gap:80px; align-items:start; }
.news-item { display:flex; align-items:flex-start; gap:16px; padding:18px 0; border-bottom:1px solid var(--cream-dark); cursor:pointer; }
.news-item:hover .news-title { color:var(--gold-dark); }
.news-num { font-family:'Playfair Display',serif; font-size:18px; color:rgba(0,0,0,.12); font-weight:700; min-width:28px; line-height:1; padding-top:2px; }
.news-title { font-size:14px; line-height:1.6; color:var(--text-dark); flex:1; transition:color 0.2s; }
.news-date { font-size:11px; color:var(--text-light); white-space:nowrap; }

/* ══════════════════════════════════════
   BRAND
══════════════════════════════════════ */
.brand-section { background:var(--navy) center/cover no-repeat; padding:100px 0; position:relative; }
.brand-overlay { position:absolute; inset:0; background:rgba(13,27,42,0.78); }
.brand-content { position:relative; z-index:2; text-align:center; }
.brand-sub { font-size:12px; color:var(--gold); letter-spacing:0.3em; margin-bottom:16px; }
.brand-title { font-family:'Noto Serif KR',serif; font-size:clamp(36px,5vw,64px); font-weight:700; color:var(--white); margin-bottom:20px; line-height:1.2; }
.brand-desc { font-size:15px; color:rgba(255,255,255,.52); line-height:2; margin-bottom:36px; }
.brand-builders { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; }
.brand-builders span { font-size:13px; color:rgba(255,255,255,.4); padding:6px 18px; border:1px solid rgba(184,151,90,.25); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { background:var(--navy); }
.contact-section .section-label { color:var(--gold-light); }
.contact-section .section-title { color:var(--white); }
.contact-grid { display:grid; grid-template-columns:1fr 380px; gap:56px; margin-top:56px; }
.map-area { overflow:hidden; }
.map-area iframe { width:100%; min-height:420px; border:0; display:block; }
.map-placeholder { background:rgba(255,255,255,.05); border:2px dashed rgba(184,151,90,.28); min-height:420px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:40px; color:rgba(255,255,255,.38); font-size:14px; line-height:1.8; }
.contact-info { display:flex; flex-direction:column; }
.phone-box { background:rgba(184,151,90,.08); border:1px solid rgba(184,151,90,.25); padding:28px; }
.phone-label { font-size:11px; color:var(--gold); letter-spacing:0.2em; margin-bottom:10px; }
.phone-num { font-family:'Noto Sans KR',sans-serif; font-size:28px; color:var(--gold); font-weight:700; letter-spacing:0.05em; display:block; margin-bottom:8px; }
.phone-hours { font-size:12px; color:rgba(255,255,255,.38); }
.location-box { background:rgba(255,255,255,.04); border-left:2px solid var(--gold); padding:24px; }
.location-label { font-size:11px; color:var(--gold); letter-spacing:0.15em; margin-bottom:8px; }
.location-addr { font-size:14px; color:rgba(255,255,255,.72); line-height:1.7; }
.doc-links-box { margin-top:20px; }
.doc-title { font-size:12px; color:var(--gold); letter-spacing:0.15em; margin-bottom:12px; }
.doc-link-item { display:flex; align-items:center; gap:8px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.06); color:rgba(255,255,255,.52); font-size:13px; transition:color 0.2s; }
.doc-link-item:hover { color:var(--gold); }

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.floating-btns { position:fixed; right:20px; bottom:80px; display:flex; flex-direction:column; gap:8px; z-index:90; }
.floating-btn { width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; text-align:center; font-size:11px; font-weight:700; cursor:pointer; border:none; transition:transform 0.2s, box-shadow 0.2s; line-height:1.3; font-family:'Noto Sans KR',sans-serif; }
.floating-btn:hover { transform:scale(1.08); box-shadow:0 8px 20px rgba(0,0,0,.25); }
.floating-reg { background:var(--gold); color:var(--navy); }
.floating-call { background:var(--navy-mid); color:var(--white); border:1px solid rgba(184,151,90,.3); }

/* ══════════════════════════════════════
   3탭 문의 팝업
══════════════════════════════════════ */
.inq-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.72); z-index:300;
  align-items:center; justify-content:center; padding:20px;
}
.inq-overlay.active { display:flex; }
.inq-popup {
  background:var(--white); width:100%; max-width:560px;
  max-height:90vh; overflow-y:auto;
  position:relative; display:flex; flex-direction:column;
  box-shadow:0 32px 64px rgba(0,0,0,.4);
}
.inq-close {
  position:absolute; top:16px; right:16px; z-index:10;
  background:none; border:none; font-size:20px; cursor:pointer;
  color:rgba(255,255,255,.75); transition:color 0.2s;
}
.inq-close:hover { color:var(--white); }

/* 팝업 헤더 */
.inq-header {
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding:40px 40px 28px;
}
.inq-eyebrow { font-size:10px; color:var(--gold); letter-spacing:0.3em; margin-bottom:8px; }
.inq-heading { font-family:'Noto Serif KR',serif; font-size:22px; color:var(--white); font-weight:700; margin-bottom:6px; }
.inq-sub { font-size:12px; color:rgba(255,255,255,.45); }

/* 탭 바 */
.inq-tabs {
  display:flex; background:var(--navy);
  border-bottom:1px solid rgba(184,151,90,.2);
}
.inq-tab {
  flex:1; padding:14px 10px; font-size:13px; font-weight:600;
  cursor:pointer; border:none; background:transparent;
  color:rgba(255,255,255,.45); letter-spacing:0.04em;
  transition:all 0.2s; font-family:'Noto Sans KR',sans-serif;
  border-bottom:3px solid transparent;
}
.inq-tab:hover { color:rgba(255,255,255,.8); }
.inq-tab.active { color:var(--gold); border-bottom-color:var(--gold); background:rgba(184,151,90,.06); }

/* 탭 패널 */
.inq-panel { display:none; padding:28px 32px 32px; }
.inq-panel.active { display:block; }

/* 폼 요소 */
.inq-form { display:flex; flex-direction:column; gap:16px; }
.inq-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.inq-field { display:flex; flex-direction:column; gap:6px; }
.inq-field label { font-size:12px; font-weight:600; color:var(--navy); letter-spacing:0.06em; }
.inq-field label .req { color:#e53e3e; }
.inq-field input,
.inq-field select,
.inq-field textarea {
  border:1px solid rgba(0,0,0,.15); padding:11px 14px;
  font-size:14px; font-family:'Noto Sans KR',sans-serif;
  color:var(--text-dark); background:var(--cream);
  outline:none; transition:border-color 0.2s; resize:vertical;
}
.inq-field input:focus,
.inq-field select:focus,
.inq-field textarea:focus { border-color:var(--navy); background:var(--white); }
.inq-field textarea { min-height:90px; }

/* 평형 체크박스 */
.unit-checks { display:flex; flex-wrap:wrap; gap:7px; }
.chk-label {
  display:inline-flex; align-items:center; gap:5px;
  font-size:12px; color:var(--text-mid); cursor:pointer;
  padding:5px 11px; border:1px solid rgba(0,0,0,.12);
  background:var(--white); transition:all 0.15s;
}
.chk-label:has(input:checked) { background:var(--navy); color:var(--white); border-color:var(--navy); }
.chk-label input { accent-color:var(--gold); }

/* 동의 */
.inq-agree { display:flex; align-items:center; gap:8px; cursor:pointer; padding-top:4px; }
.inq-agree input[type="checkbox"] { accent-color:var(--navy); width:16px; height:16px; }
.inq-agree span { font-size:12px; color:var(--text-mid); }

/* 제출 버튼 */
.inq-submit {
  width:100%; background:var(--navy); color:var(--white);
  border:none; cursor:pointer; padding:16px; margin-top:4px;
  font-size:15px; font-weight:700; letter-spacing:0.08em;
  font-family:'Noto Sans KR',sans-serif; transition:background 0.2s;
}
.inq-submit:hover { background:var(--gold); color:var(--navy); }
.inq-submit:disabled { opacity:.55; cursor:not-allowed; }
.inq-submit--apt { background:#1a3a55; }
.inq-submit--apt:hover { background:var(--gold); color:var(--navy); }
.inq-submit--store { background:#2a3a1a; }
.inq-submit--store:hover { background:var(--gold); color:var(--navy); }

/* 전송 완료 */
.inq-success {
  display:none; flex-direction:column; align-items:center;
  justify-content:center; padding:60px 40px; text-align:center;
  min-height:300px;
}
.inq-success-icon {
  width:68px; height:68px; border-radius:50%;
  background:var(--gold); color:var(--navy);
  font-size:30px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.inq-success h4 { font-family:'Noto Serif KR',serif; font-size:20px; color:var(--navy); margin-bottom:12px; }
.inq-success p { font-size:14px; color:var(--text-mid); line-height:1.8; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background:#08111a; padding:44px 0; border-top:1px solid rgba(184,151,90,.14); }
.footer-inner {
  max-width:1200px; margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:220px 1fr 260px; gap:40px; align-items:center;
}
.footer-logo { font-family:'Noto Serif KR',serif; color:var(--gold); font-size:14px; font-weight:600; letter-spacing:0.1em; }
.footer-info { font-size:12px; color:rgba(255,255,255,.3); line-height:1.9; text-align:center; }
.footer-disclaimer { font-size:11px; color:rgba(255,255,255,.18); line-height:1.8; text-align:right; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(26px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width:1024px) {
  .container { padding:0 28px; }
  .overview-grid { grid-template-columns:1fr; gap:48px; }
  .premium-grid { grid-template-columns:1fr 1fr; }
  .unit-grid { grid-template-columns:repeat(3,1fr); }
  .contact-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:16px; text-align:center; }
  .footer-info, .footer-disclaimer { text-align:center; }
  .news-grid { grid-template-columns:1fr; gap:40px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width:768px) {
  :root { --header-h:72px; }
  .container { padding:0 20px; }
  .section-pad { padding:64px 0; }

  .header-inner { padding:0 20px; gap:10px; }
  .logo-main { font-size:13px; }
  .logo-sub { font-size:10px; }
  .header-nav, .header-reg-btn { display:none; }
  .header-phone { font-size:13px; }
  .mobile-toggle { display:flex; }

  .hero-emblem { width:170px; height:170px; margin-bottom:20px; }
  .hero-content { padding:90px 20px 60px; }
  .hero-cta { flex-direction:column; align-items:stretch; }
  .btn-gold, .btn-outline-white { text-align:center; }
  .hero-phone-box { flex-direction:column; gap:4px; }
  .hero-phone-box a { font-size:16px; }

  .premium-grid { grid-template-columns:1fr; }
  .unit-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .unit-tabs { flex-wrap:wrap; width:100%; }
  .unit-tab { flex:1 0 calc(50% - 1px); padding:10px 8px; font-size:12px; }

  .news-grid { grid-template-columns:1fr; gap:28px; }
  .contact-grid { gap:28px; }
  .phone-num { font-size:22px; }

  .floating-btns { right:14px; bottom:60px; }
  .floating-btn { width:52px; height:52px; font-size:10px; }

  /* 팝업 */
  .inq-header { padding:28px 24px 20px; }
  .inq-panel { padding:20px; }
  .inq-row { grid-template-columns:1fr; }
  .inq-tab { font-size:12px; padding:12px 6px; }

  .overview-stats { grid-template-columns:1fr 1fr; }
  .info-table tr { grid-template-columns:100px 1fr; }
}
