/* =============================================
   HOBAN SUMMIT THEME - main.css
   ============================================= */

/* ── CSS Variables ── */
:root {
    --color-primary:      #1a3a2a;
    --color-primary-light:#2d5c42;
    --color-gold:         #c8a96e;
    --color-gold-light:   #e0c99a;
    --color-white:        #ffffff;
    --color-off-white:    #f5f2ed;
    --color-dark:         #111111;
    --color-dark-2:       #1c1c1c;
    --color-dark-3:       #2a2a2a;
    --color-text:         #333333;
    --color-text-light:   #666666;
    --color-text-muted:   #999999;
    --color-border:       #e0ddd6;

    --font-kr:      'Noto Serif KR', serif;
    --font-kr-sans: 'Noto Sans KR', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-eng:     'Cinzel', serif;

    --header-h:     80px;
    --section-pad:  120px;
    --inner-max:    1280px;
    --inner-pad:    40px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
    --transition:    0.4s var(--ease-in-out);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-kr-sans);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Skip Navigation ── */
#sp-navi a {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
#sp-navi a:focus {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    z-index: 99999;
}

/* ── Layout ── */
.section-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 var(--inner-pad);
}
.section-pad { padding: var(--section-pad) 0; }


/* =============================================
   HEADER  (메가메뉴 스타일은 hoban-mega-menu 플러그인 담당)
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    overflow: visible;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    position: relative;
    gap: 0;
}

/* Logo */
.site-logo { flex-shrink: 0; margin-right: 32px; }
.site-logo img { height: 44px; width: auto; }
.logo-text {
    font-family: var(--font-eng);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

/* Fallback nav (플러그인 미설치시) */
.fallback-nav { flex: 1; }
.fallback-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
    height: var(--header-h);
}
.fallback-menu li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.fallback-menu li a:hover { color: var(--color-gold); }

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s;
}
.header-phone:hover { color: var(--color-gold); }
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-family: var(--font-kr-sans);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s;
}
.header-cta-btn:hover { background: var(--color-gold-light); }

/* Responsive: tablet/mobile handled by plugin */
@media (max-width: 1023px) {
    :root { --section-pad: 80px; --inner-pad: 24px; }
    .header-phone { display: none; }
    /* Premium */
    .premium-content,
    .premium-content.reverse { flex-direction: column; gap: 40px; }
    /* Contact */
    .contact-inner { flex-direction: column; gap: 40px; }
    .contact-info { flex: none; width: 100%; }
    .cta-registration { min-width: auto; width: 100%; }
    .contact-cta { text-align: left; }
}


/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider,
.hero-slide { height: 100vh; min-height: 700px; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.5) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--inner-pad) 140px;
    max-width: var(--inner-max);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hero-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo) 0.4s,
                transform 0.8s var(--ease-out-expo) 0.4s;
}
.swiper-slide-active .hero-text { opacity: 1; transform: translateY(0); }

.hero-line1,
.hero-line2 {
    font-family: var(--font-kr);
    color: var(--color-white);
    line-height: 1.2;
}
.hero-line1 {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    margin-bottom: 6px;
}
.hero-line2 {
    font-size: clamp(34px, 4.5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--inner-max);
    padding: 0 var(--inner-pad);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-pagination {
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    min-width: 60px;
}

.hero-progress {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
    max-width: 200px;
    position: relative;
    overflow: hidden;
}
.hero-progress span {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--color-gold);
    width: 0;
    transition: width 0.3s;
}

.hero-nav { display: flex; gap: 16px; margin-left: auto; }
.hero-prev, .hero-next {
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    transition: color var(--transition);
}
.hero-prev:hover, .hero-next:hover { color: var(--color-gold); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.scroll-indicator span {
    font-family: var(--font-eng);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}
.scroll-line span {
    display: block;
    width: 100%;
    height: 50%;
    background: var(--color-gold);
    animation: scrollDown 2s ease-in-out infinite;
    writing-mode: horizontal-tb;
}
@keyframes scrollDown {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}


/* =============================================
   UNIT PLAN SECTION
   ============================================= */
.unit-plan-section {
    background: var(--color-off-white);
}

.section-header { margin-bottom: 60px; }
.section-label {
    font-family: var(--font-eng);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-kr);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.4;
}
.section-title em {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.unit-slider-wrap { position: relative; }

.unit-slider { overflow: visible !important; }

.unit-slide {
    width: 260px;
    transition: transform 0.4s var(--ease-out-expo);
}
.unit-slide:hover { transform: translateY(-6px); }

.unit-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unit-img img { width: 100%; height: 100%; object-fit: contain; }
.unit-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e4dd 0%, #d5d0c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 13px;
}

.unit-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.unit-size {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-dark);
}
.unit-size i {
    font-style: normal;
    font-size: 16px;
    font-family: var(--font-kr-sans);
    color: var(--color-text-muted);
    margin: 0 2px;
}

.unit-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid var(--color-dark);
    border-radius: 50%;
    transition: all var(--transition);
    font-size: 0;
}
.unit-more span {
    font-family: var(--font-eng);
    font-size: 0;
    color: var(--color-white);
}
.unit-more:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.unit-more::after {
    content: '→';
    font-size: 14px;
    color: var(--color-dark);
    transition: color var(--transition);
}
.unit-more:hover::after { color: var(--color-white); }

.unit-nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    justify-content: flex-end;
}
.unit-prev, .unit-next {
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all var(--transition);
}
.unit-prev:hover, .unit-next:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
}


/* =============================================
   E-MODEL HOUSE SECTION
   ============================================= */
.emodel-section {
    position: relative;
    padding: var(--section-pad) 0;
    background: var(--color-dark-2);
    overflow: hidden;
}

.emodel-bg-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-dark) 40%, transparent 100%);
    z-index: 1;
}

.emodel-section .section-inner { position: relative; z-index: 2; }

.emodel-title {
    font-family: var(--font-eng);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-bottom: 50px;
}

.emodel-slider-wrap { position: relative; }

.emodel-slide { cursor: pointer; }

.emodel-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-dark-3);
    margin-bottom: 20px;
}
.emodel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.emodel-slide:hover .emodel-img img { transform: scale(1.04); }
.emodel-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.emodel-info {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-white);
}
.emodel-info i { font-style: normal; font-size: 14px; color: var(--color-text-muted); margin: 0 2px; }
.emodel-info em { font-style: normal; font-size: 13px; color: var(--color-gold); margin-left: 6px; font-family: var(--font-eng); letter-spacing: 0.1em; }

.emodel-nav {
    display: flex; gap: 12px; margin-top: 30px;
}
.emodel-prev, .emodel-next {
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all var(--transition);
}
.emodel-prev:hover, .emodel-next:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.emodel-more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}
.emodel-more span {
    font-family: var(--font-eng);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 2px;
    transition: opacity var(--transition);
}
.emodel-more:hover span { opacity: 0.7; }


/* =============================================
   LOCATION SECTION
   ============================================= */
.location-section { position: relative; overflow: hidden; }

.location-title {
    font-family: var(--font-kr);
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 50px;
}
.location-title em { font-style: normal; font-weight: 700; color: var(--color-primary); }

.location-slider { overflow: hidden; border-radius: 2px; }

.location-slide {
    display: flex !important;
    min-height: 480px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.location-text {
    flex: 0 0 380px;
    padding: 60px 50px;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.location-text em {
    font-style: normal;
    font-family: var(--font-kr);
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 600;
    color: var(--color-gold);
}
.location-text p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
}

.location-img {
    flex: 1;
    overflow: hidden;
}
.location-img > div {
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-3);
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.location-img-placeholder {
    background: linear-gradient(135deg, #2d5c42 0%, #1a3a2a 100%) !important;
}
.swiper-slide-active .location-img > div { transform: scale(1.04); }

/* Location Controls */
.location-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.location-pagination {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--color-text-muted);
    min-width: 60px;
}
.location-progress-line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
    max-width: 200px;
    position: relative;
    overflow: hidden;
}
.location-progress-line span {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: var(--color-primary);
    width: 0;
    transition: width 0.3s;
}
.location-nav { display: flex; gap: 12px; margin-left: auto; }
.location-prev, .location-next {
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    text-transform: uppercase;
    transition: all var(--transition);
}
.location-prev:hover, .location-next:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Marquee */
.marquee-wrap {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.04;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.marquee-track > div {
    font-family: var(--font-eng);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    flex-shrink: 0;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}


/* =============================================
   PREMIUM SECTION
   ============================================= */
.premium-intro {
    padding: var(--section-pad) 0 40px;
    background: var(--color-white);
    text-align: center;
}

.brand-logo-area { margin-bottom: 24px; }
.brand-logo { max-height: 60px; width: auto; margin: 0 auto; }
.brand-logo-text {
    font-family: var(--font-eng);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.15em;
}

.premium-intro-title {
    font-family: var(--font-kr);
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
}
.premium-intro-title em { font-style: normal; font-weight: 700; }

/* Premium Blocks */
.premium-block {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}
.pb-parkbelt { background: var(--color-off-white); }
.pb-sangbang { background: var(--color-dark); }
.pb-design   { background: var(--color-white); }
.pb-health   { background: var(--color-primary); }
.pb-kids     { background: var(--color-dark-2); }

.pb-sangbang .premium-kw,
.pb-sangbang h3,
.pb-health .premium-kw,
.pb-health h3,
.pb-kids .premium-kw,
.pb-kids h3 { color: var(--color-white); }

.pb-sangbang .premium-list li,
.pb-health .premium-list li,
.pb-kids .premium-list li { color: rgba(255,255,255,0.7); }

.pb-health .premium-list li strong,
.pb-kids .premium-list li strong { color: var(--color-gold); }

.premium-content {
    display: flex;
    gap: 80px;
    align-items: center;
}
.premium-content.reverse { flex-direction: row-reverse; }

.premium-text { flex: 1; }
.premium-img { flex: 1; }

.premium-kw {
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.premium-text h3 {
    font-family: var(--font-kr);
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dark);
    margin-bottom: 30px;
}
.premium-text h3 em { font-style: normal; font-weight: 700; display: block; }

.pb-sangbang .premium-text h3,
.pb-health .premium-text h3,
.pb-kids .premium-text h3 { color: var(--color-white); }

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
}
.premium-link span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
}
.premium-link:hover span { width: 50px; }
.premium-link::before { content: 'VIEW MORE'; }

.premium-list { display: flex; flex-direction: column; gap: 14px; }
.premium-list li {
    font-size: 14px;
    color: var(--color-text);
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.premium-list li em {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    flex-shrink: 0;
    min-width: 100px;
}
.premium-list li span { color: var(--color-text-light); }
.premium-list.dot li::before { content: '—'; color: var(--color-gold); flex-shrink: 0; }

.premium-stats { display: flex; flex-direction: column; gap: 20px; }
.premium-stats li { display: flex; align-items: center; gap: 24px; }
.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--color-primary);
    min-width: 120px;
    line-height: 1;
}
.stat-num span { font-size: 20px; color: var(--color-gold); }
.premium-stats li p { font-size: 14px; color: var(--color-text-light); }

/* Premium Images */
.premium-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.premium-img-placeholder {
    width: 100%;
    height: 460px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    opacity: 0.3;
}


/* =============================================
   BRAND SECTION
   ============================================= */
.brand-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
    background: var(--color-dark);
}

.brand-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 60%);
    opacity: 0.8;
}

.brand-section .section-inner { position: relative; z-index: 2; }

.brand-content {
    max-width: 680px;
    padding: 40px 0;
}

.brand-tagline {
    font-family: var(--font-kr);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 30px;
}

.brand-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.brand-more span {
    font-family: var(--font-eng);
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 2px;
    transition: opacity var(--transition);
}
.brand-more:hover span { opacity: 0.7; }

.brand-logo-2 { max-height: 80px; width: auto; margin-bottom: 20px; }
.brand-logo-2-text {
    font-family: var(--font-eng);
    font-size: 52px;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}


/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--color-off-white); }

.contact-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.contact-map {
    flex: 1;
    overflow: hidden;
}
.contact-map img { width: 100%; height: auto; }
.map-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
}

.contact-info { flex: 0 0 400px; }

.contact-title {
    font-family: var(--font-eng);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.contact-title span {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--color-primary);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.contact-addresses { display: flex; flex-direction: column; gap: 24px; }
.contact-addresses li { display: flex; gap: 20px; }
.contact-addresses em {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(26,58,42,0.08);
    padding: 4px 12px;
    border-radius: 2px;
    flex-shrink: 0;
    height: fit-content;
    margin-top: 2px;
}
.contact-addresses p { font-size: 14px; color: var(--color-text); line-height: 1.7; margin-bottom: 10px; }

.map-links { display: flex; gap: 8px; }
.map-btn {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
    transition: opacity var(--transition);
}
.map-btn:hover { opacity: 0.8; }
.map-btn.naver { background: #03c75a; color: var(--color-white); }
.map-btn.kakao { background: #fee500; color: #3a1d1d; }

/* CTA Registration */
.contact-cta { text-align: right; }
.cta-registration {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 50px;
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
    min-width: 360px;
}
.cta-registration:hover { background: var(--color-primary-light); }
.cta-registration::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,169,110,0.1) 0%, transparent 60%);
}
.cta-registration > * { position: relative; z-index: 1; }

.cta-registration {
    font-family: var(--font-kr);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 6px;
}
.cta-registration em {
    display: block;
    font-family: var(--font-eng);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.cta-registration span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-eng);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
}
.cta-registration span em {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0;
    transition: width var(--transition);
}
.cta-registration:hover span em { width: 60px; }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--color-dark);
    padding: 60px 0 40px;
    position: relative;
}

.footer-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 var(--inner-pad);
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo img { max-height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-logo-text {
    font-family: var(--font-eng);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
}

.footer-company { flex: 1; }
.company-addr {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}

.footer-phone {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-align: right;
    white-space: nowrap;
}
.footer-phone em {
    font-style: normal;
    font-size: 22px;
    font-family: var(--font-display);
    color: var(--color-gold);
    display: block;
    margin-top: 4px;
}

.footer-middle { margin-bottom: 30px; }

.footer-addresses {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-addresses span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.footer-addresses em {
    font-style: normal;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-right: 8px;
}

.footer-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-disclaimers li {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-partners img { max-height: 50px; width: auto; opacity: 0.6; filter: brightness(0) invert(1); }
.footer-partner-placeholder {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-units {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-align: right;
}
.footer-units strong { color: var(--color-gold); }
.footer-units p { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* Scroll Top */
.scroll-top-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: all var(--transition);
}
.scroll-top-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}


/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 500;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s var(--ease-out-expo);
    pointer-events: none;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform var(--transition), background var(--transition);
}
.floating-cta-btn:hover { background: var(--color-primary-light); transform: scale(1.05); }
.floating-cta-btn span {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    text-align: center;
}

.floating-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--color-gold);
    border-radius: 50%;
    color: var(--color-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform var(--transition);
}
.floating-cta-phone:hover { transform: scale(1.05); }


/* =============================================
   RESPONSIVE – TABLET/MOBILE (< 1024px)
   ============================================= */
@media (max-width: 1199px) {
    .mega-top-link { padding: 0 10px; font-size: 13px; }
    .header-cta-btn { padding: 7px 12px; font-size: 12px; }
    .header-phone { display: none; } /* hide phone text on tablet */
}

@media (max-width: 1023px) {
    :root { --section-pad: 80px; --inner-pad: 24px; }

    /* Hide desktop nav and CTA, show hamburger */
    .main-navigation { display: none !important; }
    .header-right    { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }

    /* Premium */
    .premium-content,
    .premium-content.reverse { flex-direction: column; gap: 40px; }

    /* Contact */
    .contact-inner { flex-direction: column; gap: 40px; }
    .contact-info { flex: none; width: 100%; }
    .cta-registration { min-width: auto; width: 100%; }
    .contact-cta { text-align: left; }
}


/* =============================================
   RESPONSIVE – MOBILE (< 768px)
   ============================================= */
@media (max-width: 767px) {
    :root {
        --section-pad: 60px;
        --inner-pad: 20px;
        --header-h: 64px;
    }

    /* Hero */
    .hero-line1 { font-size: 24px; }
    .hero-line2 { font-size: 30px; }
    .scroll-indicator { display: none; }
    .hero-content { padding: 0 20px 100px; }
    .hero-controls { bottom: 30px; padding: 0 20px; }

    /* Unit */
    .unit-slide { width: 200px; }

    /* Location */
    .location-slide { flex-direction: column; min-height: auto; }
    .location-text { flex: none; padding: 40px 24px; }
    .location-img { min-height: 220px; }

    /* Premium stats */
    .premium-stats li { flex-direction: column; gap: 8px; }

    /* Footer */
    .footer-top { flex-direction: column; text-align: center; }
    .footer-phone { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-units { text-align: center; }
    .scroll-top-btn { right: 20px; bottom: 20px; }

    /* Floating CTA */
    .floating-cta { right: 16px; bottom: 80px; }
    .floating-cta-btn, .floating-cta-phone { width: 48px; height: 48px; }
}


/* =============================================
   POPUP (메인 팝업)
   ============================================= */
.site-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.site-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.site-popup {
    background: var(--color-white);
    max-width: 420px;
    width: calc(100% - 40px);
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}
.site-popup-overlay.active .site-popup { transform: translateY(0); }
.site-popup img { width: 100%; display: block; }
.popup-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--color-dark);
}
.popup-controls label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}
.popup-controls input[type="checkbox"] { width: 14px; height: 14px; }
.popup-close-btn {
    font-family: var(--font-eng);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.popup-close-btn:hover { color: var(--color-gold); }


/* =============================================
   SWIPER OVERRIDES
   ============================================= */
.swiper-wrapper { align-items: stretch; }
.unit-slider.swiper { padding-bottom: 10px; }
