  :root {
    --navy: #0d1b2e;
    --navy-mid: #152641;
    --navy-light: #1e3557;
    --gold: #c4a24a;
    --gold-light: #d4b86a;
    --gold-pale: #f0e2b8;
    --cream: #f8f4eb;
    --white: #ffffff;
    --gray-light: #f0ede8;
    --gray-mid: #9a9488;
    --text-dark: #1a1a1a;
    --text-mid: #444;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: #222; }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* ── HEADER ── */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
  }

  /* TOP BRAND BAR — 10% 투명도 */
  .header-brand-bar {
    background: rgba(43, 41, 41, 0.30);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
    transition: background 0.4s ease;
  }
  .brand-left {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
  }
  .brand-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 5px;
    color: var(--white);
    text-transform: uppercase;
  }
  .brand-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.25);
  }
  .brand-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
  }
  .brand-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .brand-logo {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
  }
  .brand-tel-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 28px;
  }

  /* NAV BAR — 10% 투명도 */
  .header-nav-bar {
    background: rgba(30, 28, 28, 0.30);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196,162,74,0.15);
    transition: background 0.4s ease;
  }
  .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
  }
  nav a {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 0 22px;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    font-weight: 400;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: left 0.3s, right 0.3s;
  }
  nav a:hover::after,
  nav a.active::after {
    left: 0; right: 0;
  }
  nav a:hover,
  nav a.active {
    color: var(--white);
  }
  .nav-register {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    padding: 0 22px !important;
    letter-spacing: 1px !important;
    height: 50px !important;
  }
  .nav-register::after { display: none !important; }
  .nav-register:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
  }

  .header-tel {
    display: none; /* moved to brand bar */
  }
  .tel-label { display: none; }
  .tel-number { display: none; }

  /* ── HERO SECTION — 헤더 뒤까지 풀블리드 ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #1a1818;
    overflow: hidden;
    /* padding-top 제거 — 슬라이더가 헤더 아래까지 꽉 채움 */
  }
  .hero-slider {
    position: absolute;
    inset: 0;          /* top:0 — 헤더 뒷면까지 채움 */
    overflow: hidden;
  }
  /* Slides */
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .hero-slide.active { opacity: 1; }

  /* Slide 1: YouTube video */
  .hero-slide-video iframe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw;
    pointer-events: none;
  }
  /* Slide 2 & 3: image */
  .hero-slide-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.0)  0%,
      rgba(0,0,0,0.0)  30%,
      rgba(0,0,0,0.18) 65%,
      rgba(0,0,0,0.62) 100%
    );
    z-index: 1;
  }

  /* Slide indicator bar (top of slider) */
  .hero-indicator-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 5;
  }
  .hero-indicator-fill {
    height: 100%;
    background: var(--gold);
    transition: width 0.1s linear;
  }

  .hero-content {
    position: absolute;
    bottom: 16px;      /* 16px 위로 올림 (기존 0 → 16px) */
    left: 0; right: 0;
    z-index: 3;
    padding: 0 80px 86px;   /* 70 + 16 = 86 */
    max-width: 1400px;
    margin: 0 auto;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease both;
  }
  .hero-badge-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
  }
  .hero-badge span {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
  }
  .hero-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(28px, 4.5vw, 58px);
    font-weight: 100;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: 2px;
    animation: fadeUp 1s 0.15s ease both;
  }
  .hero-title strong {
    font-weight: 700;
    color: var(--white);
    display: block;
    letter-spacing: 3px;
  }
  .hero-title em {
    font-style: normal;
    color: var(--gold-light);
  }
  .hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    margin-bottom: 36px;
    line-height: 2;
    text-transform: uppercase;
    animation: fadeUp 1s 0.3s ease both;
  }
  .hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    animation: fadeUp 1s 0.45s ease both;
    min-height: 0;
  }
  .hero-cta-row:empty {
    display: none;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ═══════════════════════════════════════
     슬라이더 컨트롤 레이아웃
     - 이전/다음: 양쪽 세로 중앙
     - 정지/재생: 슬라이더 정 중앙
     - 마우스 오버시 노출
  ═══════════════════════════════════════ */

  /* 이전 버튼 — 왼쪽 세로 중앙 */
  .slider-btn-prev {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s, border-color 0.25s;
    pointer-events: none;
  }
  /* 다음 버튼 — 오른쪽 세로 중앙 */
  .slider-btn-next {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s, border-color 0.25s;
    pointer-events: none;
  }
  /* 정지/재생 버튼 — 정 중앙 */
  .slider-btn-pause {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.25s, border-color 0.25s;
    pointer-events: none;
  }
  /* 호버 시 모두 노출 */
  #hero:hover .slider-btn-prev,
  #hero:hover .slider-btn-next,
  #hero:hover .slider-btn-pause {
    opacity: 1;
    pointer-events: auto;
  }

  /* 공통 버튼 스타일 */
  .slider-ctrl-btn {
    width: 64px;          /* 2× (기존 38→64) */
    height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
  }
  .slider-ctrl-btn:hover {
    background: rgba(196,162,74,0.30);
    border-color: var(--gold);
    transform: scale(1.08);
  }
  .slider-btn-prev .slider-ctrl-btn:hover {
    transform: scale(1.08) translateX(-3px);
  }
  .slider-btn-next .slider-ctrl-btn:hover {
    transform: scale(1.08) translateX(3px);
  }
  .slider-ctrl-btn svg {
    width: 28px; height: 28px;   /* 2× (기존 14→28) */
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }
  /* 정지 버튼 상태 아이콘 */
  .slider-ctrl-btn.pause-btn svg.icon-pause { display: block; }
  .slider-ctrl-btn.pause-btn svg.icon-play  { display: none;  }
  .slider-ctrl-btn.pause-btn.paused svg.icon-pause { display: none;  }
  .slider-ctrl-btn.pause-btn.paused svg.icon-play  { display: block; }

  /* 도트 + 프로그레스 — 하단 중앙 유지 */
  .slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  /* Slider nav dots */
  .slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
  }
  .slider-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .slider-dot.active { background: rgba(255,255,255,0.2); }
  .slider-dot.active::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: var(--gold);
    animation: dotFill var(--dot-dur, 3000ms) linear forwards;
  }
  @keyframes dotFill {
    from { width: 0%; }
    to   { width: 100%; }
  }

  /* Slide caption bottom-right */
  .hero-slide-caption {
    position: absolute;
    bottom: 70px;
    right: 120px;
    z-index: 4;
    text-align: right;
  }
  .slide-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
  }

  /* ── MUTE TOGGLE BUTTON ── */
  .hero-mute-btn {
    position: absolute;
    top: 112px;          /* 헤더(52+50=102px) 바로 아래 + 10px 여백 */
    left: 40px;
    z-index: 6;
    width: 57px;         /* 44px × 1.3 ≈ 57px */
    height: 57px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero-mute-btn:hover {
    background: rgba(196,162,74,0.28);
    border-color: var(--gold);
    transform: scale(1.08);
  }
  .hero-mute-btn svg {
    width: 26px;
    height: 26px;
    color: var(--white);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
  }

  /* 소리 퍼지는 물결 애니메이션 (소리 ON 상태일 때) */
  .hero-mute-btn.sound-on::before,
  .hero-mute-btn.sound-on::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196,162,74,0.5);
    animation: soundRipple 2s ease-out infinite;
  }
  .hero-mute-btn.sound-on::before {
    width: 80px; height: 80px;
    animation-delay: 0s;
  }
  .hero-mute-btn.sound-on::after {
    width: 108px; height: 108px;
    animation-delay: 0.6s;
  }
  @keyframes soundRipple {
    0%   { opacity: 0.7; transform: scale(0.85); }
    100% { opacity: 0;   transform: scale(1.15); }
  }

  /* 영상 슬라이드 활성화시 버튼 노출 */
  .video-active .hero-mute-btn {
    display: flex;
  }

  /* ── 스크롤 인디케이터 ── */
  .hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 4;
    cursor: pointer;
  }
  .hero-scroll span {
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(196,162,74,0.7), transparent);
    animation: scrollDown 2s ease-in-out 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; }
  }

  /* ── SECTION COMMON ── */
  section {
    position: relative;
  }
  .section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .section-header {
    text-align: center;
    padding: 90px 0 60px;
  }
  .section-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.5;
  }
  .section-title strong {
    font-weight: 700;
    color: var(--gold);
  }
  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }
  .section-divider span {
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .section-divider i {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    display: block;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    padding: 15px 34px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
  }
  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,162,74,0.35);
  }
  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 400;
    padding: 14px 34px;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── MONTSERRAT FOR ALL NUMBERS (global) ── */
  /* Apply Montserrat to any element containing digits via .num or font-variant */
  .num, 
  .biz-num,
  .sched-step,
  .plan-type-badge,
  .spec-value,
  .unit-size-badge,
  .mh-tel-big,
  .sale-table tbody td,
  .tel-number,
  .brand-tel-small,
  .news-date,
  .footer-bottom,
  .side-panel-item {
    font-family: 'Montserrat', sans-serif !important;
  }

  /* CSS @font-face unicode-range trick:
     Override font for digit characters in ALL elements */
  @font-face {
    font-family: 'NumericOverride';
    src: local('Montserrat');
    unicode-range: U+0030-0039, U+002E, U+002C, U+0025, U+20A9, U+33A1;
  }

  body, * {
    /* stack: element's specified font → Montserrat for digits → fallback */
    font-family: 'Noto Sans KR', 'NumericOverride', sans-serif;
  }

  /* Re-declare specific font families that should take priority */
  .brand-title, .brand-sub, nav a, .section-title, .biz-text, 
  .fi-value, .footer-notice, .form-label, .form-input, .form-select, .form-textarea {
    font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
  }
  .brand-logo, .hero-title, .section-title, .plan-name,
  .biz-title, .unit-title, .sched-title, .mh-address, .news-title {
    font-family: 'Noto Sans KR', 'Montserrat', sans-serif;
  }
  .hero-badge span, .section-en, .biz-label, .unit-type, .sched-label,
  .spec-label, .mh-label, .news-category, .fi-label, .tel-label, .brand-sub {
    font-family: 'Cormorant Garamond', 'Montserrat', serif;
  }

  /* ── 사업안내 ── */
  #business {
    background: var(--cream);
    padding-bottom: 90px;
  }
  .business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .biz-card {
    background: var(--white);
    padding: 48px 40px;
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .biz-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(196,162,74,0.04) 0%, transparent 60%);
    transition: opacity 0.4s;
    opacity: 0;
  }
  .biz-card:hover {
    border-left-color: var(--gold);
    transform: translateX(4px);
  }
  .biz-card:hover::before { opacity: 1; }
  .biz-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 300;
    color: rgba(196,162,74,0.15);
    line-height: 1;
    margin-bottom: 8px;
  }
  .biz-label {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .biz-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .biz-text {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.9;
  }

  /* ── 분양안내 ── */
  #sale {
    background: var(--navy);
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
  }
  #sale::before {
    content: 'SALE';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 288px;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    top: -30px;
    right: -20px;
    pointer-events: none;
    letter-spacing: -10px;
  }
  #sale .section-title { color: var(--white); }
  #sale .section-en { color: var(--gold); }
  .sale-table-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,162,74,0.2);
    overflow: hidden;
    margin-bottom: 40px;
  }
  .sale-table {
    width: 100%;
    border-collapse: collapse;
  }
  .sale-table thead tr {
    background: var(--gold);
  }
  .sale-table thead th {
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 700;
    text-align: center;
  }
  .sale-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
  }
  .sale-table tbody tr:hover {
    background: rgba(196,162,74,0.07);
  }
  .sale-table tbody td {
    padding: 14px 20px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    text-align: center;
  }
  .sale-table tbody td:first-child {
    color: var(--gold-light);
    font-weight: 600;
  }
  .sale-schedule {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .schedule-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,162,74,0.15);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .schedule-item:hover {
    background: rgba(196,162,74,0.08);
    border-color: var(--gold);
  }
  .sched-step {
    font-family: 'Cormorant Garamond', serif;
    font-size: 43px;
    font-weight: 300;
    color: rgba(196,162,74,0.3);
    display: block;
    margin-bottom: 8px;
  }
  .sched-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }
  .sched-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 6px;
  }
  .sched-date {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
  }

  /* ── 평면도 ── */
  #floorplan {
    background: var(--white);
    padding-bottom: 90px;
  }
  .plan-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #e5dfd2;
  }
  .plan-tab {
    padding: 14px 32px;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--gray-mid);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s;
    font-family: 'Noto Serif KR', serif;
  }
  .plan-tab.active,
  .plan-tab:hover {
    color: var(--navy);
    border-bottom-color: var(--gold);
  }
  .plan-panels { }
  .plan-panel { display: none; }
  .plan-panel.active { display: block; }
  .plan-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .plan-image {
    background: var(--gray-light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .plan-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  /* SVG Floor Plan Placeholder */
  .fp-svg {
    width: 100%;
    max-width: 400px;
    opacity: 0.9;
  }
  .plan-info { }
  .plan-type-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 43px;
    font-weight: 600;
    padding: 8px 20px;
    margin-bottom: 20px;
  }
  .plan-name {
    font-family: 'Noto Serif KR', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
  }
  .plan-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e5dfd2;
    margin-bottom: 30px;
  }
  .plan-spec {
    background: var(--white);
    padding: 20px;
  }
  .spec-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }
  .spec-value {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    color: var(--navy);
    font-weight: 500;
  }
  .plan-rooms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .room-tag {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 14px;
  }

  /* ── 세대정보 ── */
  #unit {
    background: var(--cream);
    padding-bottom: 90px;
  }
  .unit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .unit-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
  }
  .unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13,27,46,0.12);
  }
  .unit-card-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8e0d0 0%, #d4c9b4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .unit-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(13,27,46,0.6), transparent);
  }
  .unit-img-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 86px;
    color: rgba(13,27,46,0.08);
    font-weight: 700;
    line-height: 1;
  }
  .unit-size-badge {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--white);
    font-weight: 600;
  }
  .unit-size-badge em {
    font-size: 17px;
    font-style: normal;
    color: var(--gold-light);
  }
  .unit-card-body {
    padding: 24px;
    border-top: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .unit-card:hover .unit-card-body {
    border-top-color: var(--gold);
  }
  .unit-type {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .unit-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .unit-detail {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.8;
  }
  .unit-detail span {
    display: inline-block;
    margin-right: 12px;
  }

  /* ── 모델하우스 ── */
  #modelhouse {
    background: var(--navy);
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
  }
  #modelhouse .section-title { color: var(--white); }
  .mh-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .mh-info-block {
    margin-bottom: 40px;
  }
  .mh-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .mh-address {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .mh-hours {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
  }
  .mh-tel-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
  }
  .mh-map-placeholder {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196,162,74,0.2);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .mh-map-icon {
    text-align: center;
    color: rgba(255,255,255,0.2);
  }
  .mh-map-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: block;
    margin: 0 auto 12px;
  }
  .mh-map-icon p {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold);
  }
  .mh-map-overlay-text {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 144px;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
  }
  .mh-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-map {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(196,162,74,0.3);
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 2px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-map:hover {
    background: rgba(196,162,74,0.12);
    border-color: var(--gold);
  }

  /* ── 소식지 ── */
  #news {
    background: var(--white);
    padding-bottom: 90px;
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .news-card {
    background: var(--cream);
    padding: 32px 28px;
    border-top: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
  }
  .news-card:hover {
    border-top-color: var(--gold);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  }
  .news-category {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .news-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 19px;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .news-excerpt {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .news-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #bbb;
    letter-spacing: 1px;
  }
  .news-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 32px;
    height: 32px;
    border: 1px solid #e0d9ce;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--gray-mid);
    font-size: 17px;
  }
  .news-card:hover .news-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }

  /* ── 관심고객등록 ── */
  #register {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
  }
  #register::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 60% at 80% 50%, rgba(196,162,74,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,162,74,0.05) 0%, transparent 60%);
  }
  .register-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .register-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .register-header .section-en { color: var(--gold); }
  .register-header .section-title { color: var(--white); }
  .register-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(196,162,74,0.1);
    padding: 2px;
    margin-bottom: 16px;
  }
  .form-group {
    background: rgba(13,27,46,0.8);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-group.full {
    grid-column: 1 / -1;
  }
  .form-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
  }
  .form-input,
  .form-select,
  .form-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(196,162,74,0.2);
    color: var(--white);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    padding: 8px 0;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }
  .form-input::placeholder,
  .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-bottom-color: var(--gold);
  }
  .form-select option { background: var(--navy); }
  .form-textarea {
    resize: none;
    height: 80px;
  }
  .form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
  }
  .form-privacy input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .form-privacy label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }
  .form-privacy label a {
    color: var(--gold);
    text-decoration: underline;
  }
  .btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Noto Serif KR', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 22px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-submit:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 32px rgba(196,162,74,0.3);
  }

  /* ── FOOTER ── */
  footer {
    background: #080f1c;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(196,162,74,0.15);
  }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 30px;
  }
  .footer-logo {
    font-family: 'Noto Serif KR', serif;
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
  }
  .footer-logo em { color: var(--gold); font-style: normal; }
  .footer-logo small {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'Cormorant Garamond', serif;
  }
  .footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .fi-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }
  .fi-value {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
  }
  .footer-notice {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    line-height: 1.9;
  }
  .footer-notice p { margin-bottom: 4px; }
  .footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.2);
  }

  /* ═══════════════════════════════
     오른쪽 고정 사이드 패널
  ═══════════════════════════════ */
  .side-panel {
    position: fixed;
    right: 0;
    top: 75%;                    /* 화면 하단 25% 위치 */
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 64px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    background: var(--navy);
    border: 1px solid rgba(196,162,74,0.18);
    border-right: none;
  }

  /* 각 아이템 */
  .side-panel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px 0;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
  }
  .side-panel-item:last-child { border-bottom: none; }
  .side-panel-item:hover {
    background: rgba(196,162,74,0.12);
    color: var(--gold-light);
  }
  .side-panel-item svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  .side-panel-item span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 9px;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
  }

  /* 전화 버튼 — 골드 강조 */
  .side-item-tel {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
  }
  .side-item-tel:hover {
    background: var(--gold-light);
    color: var(--navy);
  }
  .side-item-tel svg { stroke: var(--navy); }

  /* 관심고객 버튼 — 네이비 강조 */
  .side-item-reg {
    background: rgba(196,162,74,0.1);
    color: var(--gold-light);
  }
  .side-item-reg:hover {
    background: rgba(196,162,74,0.22);
  }

  /* TOP 버튼 */
  .side-item-top {
    color: rgba(255,255,255,0.45);
  }
  .side-item-top:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
  }

  /* 구분선 */
  .side-panel-divider {
    height: 1px;
    background: rgba(196,162,74,0.18);
    margin: 0;
    flex-shrink: 0;
  }

  /* ── ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── MOBILE ── */
  /* ═══════════════════════════════
     모바일 햄버거 메뉴
  ═══════════════════════════════ */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1100;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* 모바일 드로어 */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,18,26,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .mobile-nav.open {
    display: flex;
    opacity: 1;
  }
  .mobile-nav a {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 18px 0;
    width: 220px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.25s;
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover, .mobile-nav a.mobile-nav-reg {
    color: var(--gold-light);
  }
  .mobile-nav a.mobile-nav-reg {
    margin-top: 20px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 16px;
    letter-spacing: 2px;
    border-bottom: none;
  }
  .mobile-nav-tel {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 26px !important;
    color: var(--gold-light) !important;
    letter-spacing: 2px !important;
    padding: 24px 0 !important;
    border-bottom: 1px solid rgba(196,162,74,0.2) !important;
  }
  .mobile-nav-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
    border-radius: 50%;
  }
  .mobile-nav-close:hover { border-color: var(--gold); color: var(--gold); }

  @media (max-width: 900px) {
    .header-inner { padding: 0 20px; }
    nav { display: none; }
    .hamburger { display: flex; }
    .brand-tel-small { display: none; }
    .hero-content { padding: 0 30px 86px; }
    .section-inner { padding: 0 24px; }
    .business-grid { grid-template-columns: 1fr; }
    .sale-schedule { grid-template-columns: 1fr 1fr; }
    .plan-display { grid-template-columns: 1fr; }
    .unit-grid { grid-template-columns: 1fr 1fr; }
    .mh-content { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .register-form { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-info { grid-template-columns: 1fr 1fr; }
    /* 모바일: side-panel을 하단 가로 배열로 변경 */
    .side-panel {
      top: auto;
      bottom: 0;
      right: 0; left: 0;
      transform: none;
      width: 100%;
      flex-direction: row;
      border-radius: 0;
      border: none;
      border-top: 1px solid rgba(196,162,74,0.18);
      height: 56px;
    }
    .side-panel-item {
      flex: 1;
      border-bottom: none;
      border-right: 1px solid rgba(255,255,255,0.06);
      padding: 8px 0;
    }
    .side-panel-item:last-child { border-right: none; }
    .side-panel-divider {
      width: 1px; height: 100%;
      background: rgba(196,162,74,0.18);
    }
    .slider-controls { bottom: 16px; }
    /* 모바일: 호버 없으므로 항상 표시, 버튼 크기 줄임 */
    .slider-btn-prev,
    .slider-btn-next,
    .slider-btn-pause {
      opacity: 1;
      pointer-events: auto;
    }
    .slider-btn-prev { left: 14px; }
    .slider-btn-next { right: 14px; }
    .slider-ctrl-btn { width: 48px; height: 48px; }
    .slider-ctrl-btn svg { width: 22px; height: 22px; }
    .hero-mute-btn { top: 108px; left: 16px; }
  }

/* ─────────────────────────────────────────
   WordPress 관리자바 오프셋 보정
───────────────────────────────────────── */
.admin-bar #header {
  top: 32px;
}
.admin-bar .hero-mute-btn {
  top: calc(112px + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar #header {
    top: 46px;
  }
  .admin-bar .hero-mute-btn {
    top: calc(108px + 46px);
  }
}

/* ─────────────────────────────────────────
   WordPress 기본 스타일 초기화
───────────────────────────────────────── */
.wp-block-image,
.wp-block-paragraph {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────
   소식지 CPT 아카이브 (선택)
───────────────────────────────────────── */
.single-ghs_news {
  padding-top: 140px;
  min-height: 100vh;
  background: var(--cream);
}
.single-ghs_news .entry-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--white);
}
.single-ghs_news .entry-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 31px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.single-ghs_news .entry-meta {
  font-size: 14px;
  color: var(--gray-mid);
  letter-spacing: 1px;
  border-bottom: 1px solid #e5dfd2;
  padding-bottom: 20px;
  margin-bottom: 32px;
}
.single-ghs_news .entry-content {
  font-size: 18px;
  line-height: 1.95;
  color: var(--text-mid);
}
