/* ============ 힐스테이트 양산더스카이 ============
   테마: 화이트 갤러리 베이스 + 힐스테이트 버건디(와인) + 뮤트 샴페인 골드
   헤드라인 MaruBuri / 영문 디스플레이 Cormorant Garamond / 본문 Pretendard */
:root {
  --brand: #7a1e2d;
  --brand-deep: #5c1622;
  --brand-dark: #200d13;
  --brand-soft: #55424a;
  --gold: #a38757;
  --gold-light: #c4ab7d;
  --gold-pale: #f0eade;
  --ink: #29262a;
  --gray: #7b757c;
  --gray-light: #aaa4ab;
  --bg: #ffffff;
  --bg-soft: #faf8f7;
  --line: #eae6e4;
  --serif: "MaruBuriSemiBold", "MaruBuri", "Noto Serif KR", serif;
  --serif-r: "MaruBuri", "Noto Serif KR", serif;
  --display: "Cormorant Garamond", "MaruBuri", serif;
  --sans: "Pretendard Variable", Pretendard, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.7; overflow-x: hidden; font-weight: 400; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.reveal.show { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; } .delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; } .delay-4 { transition-delay: .6s; }

/* ---- Buttons ---- */
.btn { display: inline-block; padding: 15px 40px; font-weight: 600; font-size: 15px; letter-spacing: .06em; transition: all .3s ease; cursor: pointer; border: 0; border-radius: 0; }
.btn-gold { background: var(--brand); color: #fff; }
.btn-gold:hover { background: var(--brand-deep); }
.btn-line { border: 1px solid rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-line:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-navy-line { border: 1px solid #d5cfcc; color: var(--brand); background: transparent; padding: 13px 34px; font-size: 14px; }
.btn-navy-line:hover { border-color: var(--brand); background: var(--brand); color: #fff; }

/* ---- Header (최초 투명 → 스크롤 시 화이트) ---- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: transparent; border-bottom: 1px solid transparent; transition: background .4s ease, border-color .4s ease, box-shadow .4s ease; }
.header::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 130%; background: linear-gradient(180deg, rgba(12,6,9,.42) 0%, transparent 100%); pointer-events: none; opacity: 1; transition: opacity .4s ease; }
.header-inner { position: relative; max-width: 1360px; margin: 0 auto; padding: 0 24px; height: 76px; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; flex-direction: column; line-height: 1.3; white-space: nowrap; }
.logo-brand { font-family: var(--display); font-size: 11px; letter-spacing: .42em; color: var(--gold-light); font-weight: 600; transition: color .4s; }
.logo-name { font-family: var(--serif); font-size: 18px; color: #fff; letter-spacing: .02em; transition: color .4s; }
.gnb { display: flex; flex-wrap: nowrap; gap: 34px; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.gnb a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.86); position: relative; padding: 8px 0; letter-spacing: .02em; transition: color .3s; white-space: nowrap; word-break: keep-all; }
.gnb a:hover { color: #fff; }
.gnb a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 0; height: 1px; background: var(--gold-light); transition: width .3s; }
.gnb a:hover::after { width: 100%; }
.gnb-cta { color: var(--gold-light) !important; }
.header-tel { display: flex; align-items: baseline; gap: 10px; line-height: 1; margin-left: auto; }
.tel-label { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: .1em; transition: color .4s; }
.header-tel strong { font-family: var(--display); font-size: 21px; font-weight: 600; color: #fff; letter-spacing: .04em; transition: color .4s; }
.ham { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.ham span { display: block; width: 22px; height: 1.5px; background: #fff; transition: background .4s; }

/* 스크롤 or 모바일 메뉴 오픈 시 */
.header.scrolled, .header.menu-open { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(32,13,19,.03); }
.header.scrolled::before, .header.menu-open::before { opacity: 0; }
.header.scrolled .logo-name, .header.menu-open .logo-name { color: var(--brand); }
.header.scrolled .logo-brand, .header.menu-open .logo-brand { color: var(--gold); }
.header.scrolled .gnb a, .header.menu-open .gnb a { color: var(--brand-soft); }
.header.scrolled .gnb a:hover, .header.menu-open .gnb a:hover { color: var(--brand); }
.header.scrolled .gnb a::after { background: var(--gold); }
.header.scrolled .gnb-cta, .header.menu-open .gnb-cta { color: var(--brand) !important; }
.header.scrolled .tel-label { color: var(--gray-light); }
.header.scrolled .header-tel strong { color: var(--brand); }
.header.scrolled .ham span, .header.menu-open .ham span { background: var(--brand); }

.m-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(32,13,19,.08); }
.m-menu.open { display: block; }
.m-menu nav { display: flex; flex-direction: column; padding: 10px 0; }
.m-menu a { padding: 14px 28px; font-weight: 500; font-size: 15px; color: var(--brand-soft); }
.m-menu-tel { color: var(--brand); font-weight: 700; }

/* ---- Hero ---- */
.hero { position: relative; height: 100svh; min-height: 580px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-dim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,8,11,.45) 0%, rgba(15,8,11,.16) 45%, rgba(15,8,11,.6) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 0 20px; margin-top: 24px; }
.hero-eyebrow { font-family: var(--display); font-size: 13px; letter-spacing: .5em; text-indent: .5em; color: var(--gold-light); font-weight: 500; }
.hero-title { font-family: var(--serif); font-size: clamp(38px, 6.2vw, 66px); font-weight: 400; line-height: 1.28; margin: 26px 0 18px; letter-spacing: .06em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-sub { font-size: clamp(14px, 1.8vw, 17px); font-weight: 300; letter-spacing: .42em; text-indent: .42em; opacity: .92; }
.hero-stats { list-style: none; display: flex; justify-content: center; align-items: stretch; gap: 0; margin: 44px auto 46px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; padding: 2px clamp(20px, 3.6vw, 44px); border-right: 1px solid rgba(255,255,255,.22); }
.hero-stats li:last-child { border-right: 0; }
.hero-stats strong { font-family: var(--display); font-size: clamp(24px, 3.2vw, 34px); font-weight: 500; color: #fff; letter-spacing: .04em; }
.hero-stats span { font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.72); margin-top: 4px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-disclaimer { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 2; text-align: center; font-size: 10.5px; letter-spacing: .02em; color: rgba(255,255,255,.6); padding: 0 16px; }

/* ---- Sections ---- */
.section { padding: 120px 0; }
.section-gray { background: var(--bg-soft); }
.section-navy { background: linear-gradient(175deg, var(--brand-dark) 0%, #3d1420 100%); }
.sec-eyebrow { font-family: var(--display); font-size: 13px; letter-spacing: .45em; text-indent: .45em; color: var(--gold); font-weight: 500; text-align: center; }
.sec-eyebrow.gold { color: var(--gold-light); }
.sec-title { font-family: var(--serif); font-size: clamp(26px, 3.6vw, 36px); font-weight: 400; color: var(--brand); text-align: center; margin: 16px 0 0; letter-spacing: .08em; }
.sec-title.white { color: #fff; }
.sec-title::after { content: ""; display: block; width: 1px; height: 36px; background: var(--gold); margin: 26px auto 0; opacity: .8; }
.sec-desc { text-align: center; color: var(--gray); max-width: 680px; margin: 24px auto 0; font-size: 15px; font-weight: 300; line-height: 1.9; }
.sec-desc.white { color: rgba(255,255,255,.78); }
.sub-title { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--brand); margin: 0 0 20px; letter-spacing: .05em; }
.sub-title small { font-family: var(--sans); font-size: 13px; color: var(--gray-light); font-weight: 400; letter-spacing: .02em; }
.caution { font-size: 11.5px; color: #bcb6b3; margin-top: 28px; line-height: 1.8; font-weight: 300; }

/* ---- 이미지 카드 (흰색 프레임 통일) ---- */
.wide-img { margin-top: 40px; }
.wide-img a { display: block; position: relative; background: #fff; padding: 18px; border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s; }
.wide-img a:hover { border-color: #d9cfc9; box-shadow: 0 24px 48px rgba(32,13,19,.07); }
.wide-img img { width: 100%; }
.zoom-badge { position: absolute; right: 30px; bottom: 30px; background: rgba(32,13,19,.85); color: #fff; font-size: 11.5px; font-weight: 500; letter-spacing: .08em; padding: 9px 18px; backdrop-filter: blur(4px); }

/* ---- Overview ---- */
.overview-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; margin-top: 64px; }
.overview-img { background: #fff; border: 1px solid var(--line); padding: 16px; }
.overview-img figcaption { font-size: 10.5px; color: #bcb6b3; margin-top: 12px; font-weight: 300; }
.overview-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--brand); }
.overview-table th { width: 112px; text-align: left; padding: 15px 6px 15px 2px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: var(--brand); border-bottom: 1px solid var(--line); vertical-align: top; }
.overview-table td { padding: 15px 6px 15px 12px; font-size: 14px; color: var(--ink); font-weight: 300; border-bottom: 1px solid var(--line); }
.overview-links { display: flex; gap: 12px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }

/* ---- Premium ---- */
.premium-wrap { margin-top: 110px; }
.premium-wrap .sub-title { text-align: center; font-family: var(--display); font-size: 26px; letter-spacing: .3em; text-indent: .3em; }
.premium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; margin-top: 48px; }
.p-card { border-top: 1px solid var(--line); padding-top: 24px; transition: border-color .4s; }
.p-card:hover { border-top-color: var(--brand); }
.p-card em { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--gold); font-weight: 500; }
.p-card h4 { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--brand); margin: 12px 0 10px; letter-spacing: .03em; }
.p-card p { font-size: 13.5px; color: var(--gray); line-height: 1.8; font-weight: 300; }

/* ---- 입지환경 ---- */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 48px; margin-top: 56px; }

/* ---- 단지배치 ---- */
#siteplan .wide-img a { border: 0; padding: 0; background: none; }
#siteplan .wide-img a:hover { box-shadow: 0 24px 48px rgba(32,13,19,.12); }
#siteplan .zoom-badge { right: 16px; bottom: 16px; }

.type-table-wrap { margin-top: 72px; }
.table-scroll { overflow-x: auto; background: #fff; border: 1px solid var(--line); padding: 8px; }
.type-table { width: 100%; min-width: 560px; border-collapse: collapse; text-align: center; }
.type-table th, .type-table td { padding: 13px 10px; font-size: 14px; border-bottom: 1px solid var(--line); }
.type-table thead th { color: var(--brand); font-weight: 600; letter-spacing: .04em; border-bottom: 1px solid var(--brand); background: #fff; }
.type-table tbody tr:last-child th, .type-table tbody tr:last-child td { border-bottom: 0; }
.type-table tbody th { color: var(--brand-soft); font-weight: 500; background: var(--bg-soft); }
.type-table td { font-weight: 300; }
.dongho-wrap { margin-top: 80px; }

/* ---- Unit tabs ---- */
.unit-tabs { display: flex; justify-content: center; gap: 0; margin: 56px 0 40px; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.unit-tabs button { font-family: var(--sans); font-size: 15px; font-weight: 500; padding: 14px 30px; border: 0; background: none; color: var(--gray-light); cursor: pointer; transition: color .25s; position: relative; letter-spacing: .04em; }
.unit-tabs button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .3s; }
.unit-tabs button.on { color: var(--brand); font-weight: 600; }
.unit-tabs button.on::after { transform: scaleX(1); }
.unit-panel { display: none; max-width: 920px; margin: 0 auto; }
.unit-panel.on { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.area-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); padding: 8px; margin-bottom: 14px; }
.area-table { width: 100%; min-width: 560px; border-collapse: collapse; text-align: center; }
.area-table th, .area-table td { padding: 12px 8px; font-size: 13.5px; border-bottom: 1px solid var(--line); }
.area-table thead th { color: var(--brand); font-weight: 600; letter-spacing: .04em; border-bottom: 1px solid var(--brand); }
.area-table tbody tr:last-child th, .area-table tbody tr:last-child td { border-bottom: 0; }
.area-table tbody th { color: var(--brand-soft); font-weight: 500; background: var(--bg-soft); }
.area-table td { font-weight: 300; }
.unit-panel figure a { display: block; position: relative; background: #fff; padding: 24px; border: 1px solid var(--line); }
.unit-panel figure a:hover { box-shadow: 0 24px 48px rgba(32,13,19,.06); }
.unit-panel .zoom-badge { right: 36px; bottom: 36px; }
.opt-acc { margin-top: 16px; border: 1px solid var(--line); background: #fff; }
.opt-acc summary { padding: 16px 24px; font-size: 14px; font-weight: 500; letter-spacing: .04em; color: var(--brand-soft); cursor: pointer; list-style: none; transition: color .2s; }
.opt-acc summary:hover { color: var(--brand); }
.opt-acc summary::before { content: "＋"; color: var(--gold); margin-right: 10px; }
.opt-acc[open] summary::before { content: "－"; }
.opt-acc figure { padding: 0 24px 24px; }

/* ---- VR ---- */
.vr-frame { max-width: 960px; margin: 56px auto 0; aspect-ratio: 16 / 9; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; }
.vr-frame iframe { width: 100%; height: 100%; border: 0; }
.vr-load { display: flex; flex-direction: column; align-items: center; gap: 18px; background: none; border: 0; color: rgba(255,255,255,.9); font-size: 15px; font-weight: 400; letter-spacing: .14em; cursor: pointer; font-family: var(--sans); }
.vr-play { width: 72px; height: 72px; border-radius: 50%; border: 1px solid var(--gold-light); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gold-light); transition: .35s; }
.vr-load:hover .vr-play { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---- Community ---- */
.myhills { margin-top: 80px; }

/* ---- Register ---- */
.section-register { background: linear-gradient(175deg, var(--brand-dark) 0%, #431627 100%); }
.gold-link strong { color: var(--gold-light); font-family: var(--display); font-size: 1.3em; font-weight: 600; letter-spacing: .05em; }
.reg-form { max-width: 560px; margin: 56px auto 0; background: #fff; padding: 48px 44px; box-shadow: 0 40px 80px rgba(0,0,0,.35); }
.form-row { margin-bottom: 22px; position: relative; }
.form-row label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--brand); margin-bottom: 9px; }
.form-row label em, .form-agree em { color: #b9403a; font-style: normal; }
.form-row input, .form-row select { width: 100%; height: 52px; border: 1px solid #e0dad7; border-radius: 0; padding: 0 16px; font-size: 15px; font-family: var(--sans); font-weight: 300; color: var(--ink); background: #fff; transition: border .2s; appearance: auto; }
.form-row input:focus, .form-row select:focus { outline: none; border-color: var(--brand); }
.form-row input[readonly] { cursor: pointer; }
.hidden-field { display: none; }
.form-agree { margin: 28px 0; font-size: 13.5px; }
.form-agree label { display: flex; gap: 9px; align-items: flex-start; cursor: pointer; font-weight: 400; }
.form-agree input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--brand); }
.agree-detail { margin-top: 12px; }
.agree-detail summary { font-size: 12px; color: var(--gray-light); cursor: pointer; }
.agree-detail p { font-size: 12px; color: var(--gray); background: var(--bg-soft); padding: 14px 16px; margin-top: 10px; line-height: 1.8; font-weight: 300; }
.btn-submit { width: 100%; font-size: 15.5px; padding: 18px; letter-spacing: .12em; }

/* ---- Calendar ---- */
.calendar { position: absolute; z-index: 20; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 56px rgba(32,13,19,.16); padding: 18px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head strong { font-family: var(--serif-r); font-size: 15px; font-weight: 500; color: var(--brand); letter-spacing: .06em; }
.cal-head button { background: none; border: 1px solid var(--line); width: 32px; height: 32px; font-size: 16px; color: var(--brand); cursor: pointer; transition: .2s; }
.cal-head button:hover:not(:disabled) { border-color: var(--brand); }
.cal-head button:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; text-align: center; }
.cal-week span { font-size: 11px; letter-spacing: .06em; color: var(--gray-light); font-weight: 600; padding: 4px 0; }
.cal-week span:first-child { color: #c47b76; }
.cal-grid button { border: 0; background: none; height: 36px; font-size: 13.5px; font-weight: 400; color: var(--ink); cursor: pointer; font-family: var(--sans); transition: .15s; }
.cal-grid button:hover:not(:disabled) { background: var(--gold-pale); }
.cal-grid button.today { box-shadow: inset 0 0 0 1px var(--gold); }
.cal-grid button.selected { background: var(--brand); color: #fff; }
.cal-grid button:disabled { color: #ddd8d6; cursor: default; }
.cal-grid .sun:not(:disabled) { color: #b9403a; }

/* ---- Footer ---- */
.footer { background: var(--brand-dark); color: rgba(255,255,255,.72); padding: 56px 0 120px; font-size: 13px; }
.footer-info { color: rgba(255,255,255,.92); font-size: 13.5px; letter-spacing: .02em; margin-bottom: 20px; font-weight: 300; }
.footer-info strong { font-family: var(--serif-r); font-weight: 500; letter-spacing: .06em; }
.footer-info a { color: var(--gold-light); font-weight: 600; }
.footer-disclaimer { line-height: 1.9; font-size: 11.5px; color: rgba(255,255,255,.42); font-weight: 300; }
.footer-copy { margin-top: 22px; font-family: var(--display); font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.38); }

/* ---- Floating buttons ---- */
.floating { position: fixed; right: 26px; bottom: 30px; z-index: 95; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 62px; height: 62px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 10px; font-weight: 600; letter-spacing: .04em; box-shadow: 0 10px 28px rgba(32,13,19,.22); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(32,13,19,.3); }
.fab svg { width: 20px; height: 20px; }
.fab-tel { background: #fff; color: var(--brand); border: 1px solid var(--line); }
.fab-tel svg { fill: var(--brand); }
.fab-reg { background: var(--brand); color: #fff; }
.fab-reg:hover { background: var(--brand-deep); }
.fab-reg svg { fill: #fff; }

/* ---- Quickbar ---- */
.quickbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: 58px; }
.quickbar a { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; letter-spacing: .06em; }
.qb-tel { background: #fff; color: var(--brand); border-top: 1px solid var(--line); }
.qb-reg { background: var(--brand); color: #fff; }

/* ---- Lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18,8,11,.93); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-scroll { max-width: 94vw; max-height: 92vh; overflow: auto; }
.lb-scroll img { max-width: none; width: auto; }
.lb-close { position: fixed; top: 18px; right: 22px; z-index: 201; background: none; border: 1px solid rgba(255,255,255,.35); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 24px; line-height: 1; cursor: pointer; transition: .25s; }
.lb-close:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ============ Mobile ============ */
@media (max-width: 1500px) {
  .gnb { gap: 24px; }
  .gnb a { font-size: 14px; }
}
@media (max-width: 1320px) {
  .gnb { gap: 18px; }
  .gnb a { font-size: 13.5px; }
}
@media (max-width: 1180px) {
  .gnb { display: none; }
  .ham { display: flex; margin-left: auto; }
  .header-tel { display: none; }
}
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .premium-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
}
@media (max-width: 640px) {
  html { scroll-padding-top: 62px; }
  .header-inner { height: 62px; }
  .m-menu { top: 62px; }
  .logo-name { font-size: 15.5px; white-space: nowrap; }
  .logo-brand { font-size: 9px; }
  .section { padding: 76px 0; }
  /* 히어로 모바일 최적화 */
  .hero { min-height: 540px; }
  .hero-content { margin-top: 0; padding: 0 24px; width: 100%; }
  .hero-eyebrow { font-size: 10px; letter-spacing: .3em; text-indent: .3em; white-space: nowrap; }
  .hero-title { font-size: clamp(30px, 9vw, 38px); margin: 18px 0 12px; }
  .hero-sub { letter-spacing: .26em; text-indent: .26em; }
  .hero-stats { margin: 26px auto 30px; }
  .hero-stats li { padding: 2px 14px; }
  .hero-stats strong { font-size: 21px; }
  .hero-stats span { font-size: 10.5px; }
  .hero-stats li:nth-child(2) { border-right: 0; }
  .hero-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 340px; margin: 0 auto; }
  .hero-btns .btn { padding: 14px 0; font-size: 14px; text-align: center; }
  /* 퀵바(58px)에 가리지 않도록 면책문구를 위로 */
  .hero-disclaimer { bottom: 70px; font-size: 9.5px; }
  .premium-grid { grid-template-columns: 1fr; gap: 30px; }
  .loc-grid { grid-template-columns: 1fr; gap: 28px; }
  .unit-tabs { display: grid; grid-template-columns: repeat(5, 1fr); }
  .unit-tabs button { padding: 12px 0; font-size: 12.5px; }
  .unit-panel figure a { padding: 12px; }
  .unit-panel .zoom-badge { right: 20px; bottom: 20px; }
  .wide-img a { padding: 10px; }
  .zoom-badge { right: 18px; bottom: 18px; font-size: 10.5px; padding: 7px 13px; }
  .reg-form { padding: 36px 22px; }
  .floating { display: none; }
  .quickbar { display: flex; }
  .footer { padding-bottom: 132px; }
  .overview-table th { width: 92px; }
}
