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

:root {
    /* === 기존 컬러 === */
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --gold: #c9a96e;
    --gold-light: #d4b97a;
    --white: #ffffff;
    --gray-100: #f8f8f8;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-500: #888888;
    --gray-700: #444444;
    --gray-900: #1a1a1a;
    --font: 'Noto Sans KR', sans-serif;

    /* === 팝업 컬러 토큰 (Figma 추출) === */
    --popup-bg-primary: #123821;
    --popup-bg-button: #265933;
    --popup-bg-button-opacity: 0.8;
    --popup-stroke-button: #7ca27c;
    --popup-stroke-button-opacity: 0.5;
    --popup-text-primary: #ffffff;
    --popup-text-accent: #ffd94d;
    --popup-cta-bg: #d9a633;
    --popup-cta-stroke: #ffe580;
    --popup-cta-stroke-opacity: 0.4;

    /* === 팝업 넘버 토큰 (Figma 추출) === */
    --popup-width: 500px;
    --popup-height: 700px;
    --popup-btn-width: 380px;
    --popup-btn-height: 50px;
    --popup-cta-width: 300px;
    --popup-cta-height: 55px;
    --popup-radius-btn: 25px;
    --popup-radius-cta: 30px;
    --popup-spacing-text: 12px;
    --popup-spacing-btn-gap: 10px;

    /* === 팝업 타이포 토큰 (Figma 추출) === */
    --popup-font-title: 'Gmarket Sans', sans-serif;
    --popup-font-body: 'Pretendard Variable', 'Pretendard', sans-serif;
    --popup-title-size: 36px;
    --popup-title-weight: 300;
    --popup-title-leading: 36px;
    --popup-title-tracking: 0;
    --popup-btn-size: 24px;
    --popup-btn-weight-normal: 300;
    --popup-btn-weight-accent: 800;
    --popup-btn-leading: 29px;
    --popup-btn-tracking: 0;
    --popup-cta-size: 24px;
    --popup-cta-weight: 800;
    --popup-cta-leading: 29px;
}

html {
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); font-size: 15px; }

/* ===== Popup ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s;
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup {
    position: relative;
    width: var(--popup-width);
    max-width: 90%;
    height: auto;
    max-height: 90vh;
    background: var(--popup-bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* 배경 이미지 */
.popup-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    pointer-events: none;
}

/* 팝업 컨텐츠 */
.popup-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 24px;
}

/* 로고 */
.popup-logo {
    width: 160px;
    height: auto;
    margin-bottom: 12px;
}

/* 메인 타이틀 */
.popup-title {
    font-family: var(--popup-font-title);
    font-size: var(--popup-title-size);
    font-weight: var(--popup-title-weight);
    line-height: var(--popup-title-leading);
    letter-spacing: var(--popup-title-tracking);
    color: var(--popup-text-primary);
    text-align: center;
    margin-bottom: 4px;
}

.popup-title-accent {
    font-family: var(--popup-font-title);
    font-size: var(--popup-title-size);
    font-weight: var(--popup-title-weight);
    line-height: var(--popup-title-leading);
    color: var(--popup-text-accent);
    text-align: center;
    margin-bottom: 20px;
}

/* 혜택 버튼 영역 */
.popup-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--popup-spacing-btn-gap);
    width: 100%;
    max-width: var(--popup-btn-width);
    margin-bottom: 20px;
}

.popup-benefit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--popup-spacing-text);
    width: 100%;
    height: var(--popup-btn-height);
    background: rgba(38, 89, 51, var(--popup-bg-button-opacity));
    border: 1px solid rgba(124, 162, 124, var(--popup-stroke-button-opacity));
    border-radius: var(--popup-radius-btn);
    padding: 0 20px;
}

.popup-benefit-btn .label {
    font-family: var(--popup-font-body);
    font-size: var(--popup-btn-size);
    font-weight: var(--popup-btn-weight-normal);
    line-height: var(--popup-btn-leading);
    color: var(--popup-text-primary);
}

.popup-benefit-btn .value {
    font-family: var(--popup-font-body);
    font-size: var(--popup-btn-size);
    font-weight: var(--popup-btn-weight-accent);
    line-height: var(--popup-btn-leading);
    color: var(--popup-text-accent);
}

/* CTA 버튼 */
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--popup-cta-width);
    height: var(--popup-cta-height);
    background: var(--popup-cta-bg);
    border: 1.5px solid rgba(255, 229, 128, var(--popup-cta-stroke-opacity));
    border-radius: var(--popup-radius-cta);
    font-family: var(--popup-font-body);
    font-size: var(--popup-cta-size);
    font-weight: var(--popup-cta-weight);
    line-height: var(--popup-cta-leading);
    color: var(--popup-text-primary);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* 하단 닫기 바 */
.popup-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0,0,0,0.3);
}

.popup-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}

.popup-check input { width: 16px; height: 16px; }

.popup-close-btn {
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    color: var(--popup-text-primary);
    font-size: 13px;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.popup-close-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== Full Page Container ===== */
.fp-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.fp-scroll-inner {
    height: 100%;
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.fp-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* ===== Background & Overlay ===== */
.fp-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.fp-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26,26,46,0.5);
}

.fp-overlay.dark {
    background: rgba(26,26,46,0.7);
}

/* ===== Hero ===== */
.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* ===== Side Tab (left collapsible) ===== */
.side-tab {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: block;
    text-decoration: none;
    color: var(--gray-900);
    width: 60px;
    overflow: hidden;
    background: rgba(245, 242, 237, 0.88);
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: width 0.4s ease;
}

.side-tab:hover {
    width: 200px;
}

/* Collapsed state (visible by default) */
.side-tab-collapsed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 10px;
    width: 60px;
    gap: 10px;
    transition: opacity 0.3s;
}

.side-tab:hover .side-tab-collapsed {
    opacity: 0;
    pointer-events: none;
}

.stab-label-v {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gray-700);
    font-weight: 400;
}

.stab-title-v {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-900);
    text-align: center;
    line-height: 1.4;
}

.stab-title-v strong {
    font-weight: 700;
}

/* Expanded state (visible on hover) */
.side-tab-expanded {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
}

.side-tab:hover .side-tab-expanded {
    opacity: 1;
}

.stab-label {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gray-700);
    font-weight: 400;
}

.stab-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-300);
}

.stab-copy {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.7;
    text-align: center;
    letter-spacing: 1px;
}

/* ===== Hero Main Copy ===== */
.hero-copy {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    text-align: right;
    color: var(--white);
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 20px;
}

.hero-brand-img {
    height: 180px;
    width: auto;
    margin-bottom: 16px;
}

.hero-brand-main {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-brand-sub {
    font-size: 14px;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-top: 4px;
}

.hero-catch-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-catch-main {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 3px 25px rgba(0,0,0,0.5);
}

/* ===== Hero Copy Image ===== */
.hero-copy-img {
    max-width: 825px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

/* ===== Location Slide Panel (image slides from left, smaller) ===== */
.loc-panel {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateX(calc(-100% - 40px)) translateY(-50%);
    z-index: 500;
    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.loc-panel.open {
    transform: translateX(0) translateY(-50%);
    pointer-events: auto;
}

.loc-panel-img {
    height: 65vh;
    width: auto;
    display: block;
    cursor: pointer;
}

@media (max-width: 768px) {
    .loc-panel { left: 10px; }
    .loc-panel-img {
        height: 50vh;
    }
}

/* ===== Premium Slider (Section 2) ===== */
.prem-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    overflow: hidden;
}

.prem-slider-left {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

.prem-slider-sub {
    font-size: 15px;
    color: #999;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.prem-slider-title {
    font-size: 30px;
    font-weight: 300;
    color: var(--gray-900);
    line-height: 1.5;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.prem-slider-title strong {
    font-weight: 700;
}

/* Category Icons */
.prem-slider-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.prem-icon-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s;
    color: #999;
}

.prem-icon-btn.active,
.prem-icon-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.06);
}

.prem-icon-btn svg {
    width: 100%;
    height: 100%;
}

/* Slide Text */
.prem-slide-text {
    display: none;
    animation: premFadeIn 0.5s ease;
}

.prem-slide-text.active {
    display: block;
}

@keyframes premFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.prem-slide-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.prem-slide-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
}

/* Right: Arch Images */
.prem-slider-right {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 60px 40px 0;
    position: relative;
    z-index: 2;
}

.prem-arch-main {
    width: 55%;
    height: 80%;
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.prem-arch-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.prem-arch-img.active {
    opacity: 1;
}

.prem-arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prem-arch-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 28%;
}

.prem-arch-thumb {
    border-radius: 100px 100px 8px 8px;
    overflow: hidden;
    height: 36%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.prem-arch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Leaves */
.prem-leaf {
    position: absolute;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 90 Q10 10 90 10 Q50 30 30 50 Q20 60 10 90Z" fill="%234a7c59" opacity="0.15"/></svg>') no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}

.prem-leaf-tl { top: -20px; left: -20px; transform: rotate(-30deg); }
.prem-leaf-bl { bottom: 20px; left: 60px; transform: rotate(20deg) scaleX(-1); }
.prem-leaf-tr { top: 30px; right: 40px; transform: rotate(140deg); width: 80px; height: 80px; }

/* Bottom Progress */
.prem-slider-progress {
    position: absolute;
    bottom: 30px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
}

.prem-dots {
    display: flex;
    gap: 8px;
}

.prem-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.prem-dot.active {
    background: var(--gray-900);
}

.prem-prog-num {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.prem-prog-bar {
    width: 80px;
    height: 3px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
}

.prem-prog-fill {
    width: 25%;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
}

/* Premium Slider Responsive */
@media (max-width: 1024px) {
    .prem-slider-left { padding: 60px 30px 60px 40px; }
    .prem-slider-title { font-size: 24px; }
}

@media (max-width: 768px) {
    .prem-slider { flex-direction: column; }
    .prem-slider-left { width: 100%; height: 50%; padding: 30px 20px; }
    .prem-slider-right { width: 100%; height: 50%; padding: 10px 20px; }
    .prem-slider-title { font-size: 20px; margin-bottom: 24px; }
    .prem-arch-main { height: 90%; }
    .prem-slider-progress { bottom: 10px; left: 20px; }
    .prem-leaf { display: none; }
}

/* ===== Video Background Section ===== */
.video-bg-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.video-bg-iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 180vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

.video-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.video-section-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
    color: #fff;
}

.video-section-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.video-section-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 20px rgba(0,0,0,0.4);
}

.video-section-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .video-section-content { bottom: 40px; left: 24px; right: 24px; }
    .video-section-title { font-size: 30px; }
    .video-section-sub { font-size: 13px; }
    .video-section-desc { font-size: 13px; }
}

/* Unit Plan Video Background */
.up-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ===== Unit Plan Section ===== */
.up-script {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 90px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 6px;
}

.up-left {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    z-index: 5;
    color: #fff;
    text-align: center;
}

.up-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.up-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.up-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

.up-btn-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.up-btn {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}

.up-btn.active,
.up-btn:hover {
    background: #fff;
    color: var(--gray-900);
    border-color: #fff;
}

/* Center Type Display */
.up-center {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}

.up-type-display {
    margin-bottom: 12px;
}

.up-type-size {
    font-size: 72px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.up-type-unit {
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    vertical-align: super;
}

.up-type-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
}

/* Right: Floor Plan */
.up-right {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    z-index: 5;
    width: 55%;
    max-width: 700px;
}

.up-plan-img {
    display: none;
}

.up-plan-img.active {
    display: block;
    animation: premFadeIn 0.5s ease;
}

.up-plan-img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Bottom Type Tabs */
.up-type-tabs {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
}

.up-type-tab {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    border: none;
    background: transparent;
    cursor: pointer;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.up-type-tab + .up-type-tab {
    border-left: 1px solid rgba(255,255,255,0.3);
}

.up-type-tab.active {
    color: #fff;
    background: var(--gold);
}

.up-type-tab:hover {
    color: #fff;
}

/* Unit Plan Responsive */
@media (max-width: 1024px) {
    .up-left { left: 50%; top: 40px; transform: translateX(-50%); text-align: center; }
    .up-title { font-size: 36px; }
    .up-right { width: 50%; max-width: 600px; left: 50%; transform: translate(-50%, -55%); }
    .up-script { font-size: 60px; }
}

@media (max-width: 768px) {
    .up-left { left: 50%; bottom: auto; top: 28%; transform: translate(-50%, -100%); text-align: center; width: 90%; }
    .up-title { font-size: 24px; }
    .up-sub { font-size: 13px; }
    .up-desc { display: none; }
    .up-btn-row { justify-content: center; }
    .up-center { display: none; }
    .up-right { width: 75%; max-width: 340px; right: auto; left: 50%; top: 50%; transform: translate(-50%, -55%); }
    .up-script { display: none; }
    .up-type-tabs { left: 50%; right: auto; bottom: 24px; transform: translateX(-50%); }
    .up-type-tab { padding: 12px 32px; font-size: 15px; }
}

/* ===== Scroll Down (right side vertical) ===== */
.scroll-down-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-down-right span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.scroll-line-v {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line-v::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLineV 2.5s ease-in-out infinite;
}

@keyframes scrollLineV {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ===== Side Indicator (right dots) ===== */
.side-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.side-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.side-dot:hover {
    border-color: var(--gold);
}

/* ===== Top Header ===== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 60px;
    background: transparent;
    transition: background 0.3s;
}

.top-header.scrolled {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
}

.header-left { display: flex; align-items: center; }

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.header-logo-img {
    height: auto;
    width: 300px;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1.2;
}

.logo-sub-text {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 40, 60, 0.8);
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.header-tel svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.header-tel:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.header-tel:hover svg { color: var(--navy); }

.header-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.header-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.header-menu-btn:hover span { background: var(--gold); }

/* ===== Full Screen Nav Overlay ===== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Left panel - dark with logo */
.nav-left {
    width: 50%;
    height: 100%;
    background: linear-gradient(160deg, #1a1a2e 0%, #0d0d1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.06);
}

.nav-left-logo {
    text-align: center;
}

.nav-logo-img {
    height: 120px;
    width: auto;
    margin: 0 auto;
}

.nav-logo-main {
    display: block;
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 12px;
}

.nav-logo-sub {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 4px;
}

/* Right panel - menu items */
.nav-right {
    width: 50%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 36px;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    line-height: 1;
}

.nav-close:hover { color: var(--gold); }

.nav-right-inner {
    padding: 80px 60px 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-catch {
    margin-bottom: 50px;
}

.nav-catch-en {
    font-size: 22px;
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 6px;
}

.nav-catch-ko {
    font-size: 14px;
    color: var(--gray-500);
    letter-spacing: 1px;
}

.nav-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-group {
    display: flex;
    align-items: baseline;
    gap: 40px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-200);
}

.nav-group:first-child {
    border-top: 1px solid var(--gray-200);
}

.nav-group-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    min-width: 90px;
    letter-spacing: 1px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 1px;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
}

.nav-link:hover {
    color: var(--gold);
}

/* ===== Floating Contact ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.float-btn {
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    padding: 0;
    width: 48px;
    transition: width 0.35s ease, padding 0.35s ease;
}

.float-btn:hover {
    width: 140px;
    padding-right: 16px;
}

.float-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon svg { width: 22px; height: 22px; }

.float-text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.float-btn:hover .float-text {
    opacity: 1;
}

.float-register {
    background: var(--white);
    color: var(--gray-900);
}

.float-register .float-icon { color: var(--gold); }

.float-tel {
    background: var(--gold);
    color: var(--navy);
}

.float-map {
    background: rgba(80, 80, 80, 0.9);
    color: var(--white);
}

/* ===== Right Content Area ===== */
.fp-content-right {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 80px 40px 80px;
    z-index: 10;
}

/* ===== Overview Info Grid ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 700px;
    width: 100%;
}

.info-item {
    padding: 30px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.info-item.highlight {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 400;
}

.info-value {
    display: block;
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
    font-weight: 300;
}

.info-value.big {
    font-size: 32px;
    font-weight: 700;
}

/* ===== Location Grid ===== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    width: 100%;
}

.loc-card {
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.loc-card:hover { border-color: var(--gold); }

.loc-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

.loc-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.loc-card p {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ===== Premium List ===== */
.premium-list {
    max-width: 600px;
    width: 100%;
}

.prem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.prem-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.prem-num {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    flex-shrink: 0;
    padding-top: 2px;
    font-weight: 500;
}

.prem-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.prem-item p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ===== Unit Section ===== */
.unit-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.unit-tab {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-300);
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 2px;
    transition: all 0.3s;
}

.unit-tab:first-child { border-radius: 4px 0 0 4px; }
.unit-tab:last-child { border-radius: 0 4px 4px 0; }

.unit-tab.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.unit-info { display: none; }
.unit-info.active { display: block; }

.unit-card {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
}

.unit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.unit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.unit-table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }

.unit-table th, .unit-table td {
    padding: 14px 8px;
    font-size: 14px;
}

.unit-table th {
    text-align: left;
    color: var(--gray-300);
    font-weight: 400;
    width: 40%;
}

.unit-table td {
    text-align: right;
    color: var(--white);
    font-weight: 500;
}

.unit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.unit-tags span {
    padding: 6px 16px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* ===== Sales Section ===== */
.sales-box {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
}

.sales-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
}

.sales-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.sales-table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }

.sales-table th, .sales-table td {
    padding: 12px 6px;
    font-size: 14px;
}

.sales-table th {
    text-align: left;
    color: var(--gold);
    font-weight: 500;
    width: 28%;
    white-space: nowrap;
}

.sales-table td {
    color: var(--gray-300);
}

.sales-tel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.sales-tel-btn strong {
    font-size: 20px;
    letter-spacing: 2px;
}

.sales-tel-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.sales-hours {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
}

/* ===== Register Form ===== */
.register-form {
    max-width: 480px;
    width: 100%;
}

.form-desc {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--gray-300);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder { color: var(--gray-500); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group select option { background: var(--navy); color: var(--white); }

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-300);
}

.checkbox-wrap input[type="checkbox"] { display: none; }

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.checkbox-wrap input:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-wrap input:checked + .checkmark::after {
    content: '\2713';
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.btn-privacy {
    font-size: 12px;
    color: var(--gray-500);
    text-decoration: underline;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* ===== Footer Section ===== */
/* ===== Footer New (이수더써밋 스타일) ===== */
.fp-footer {
    background: linear-gradient(160deg, #0d0f1a 0%, #151830 50%, #1a1d35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-new {
    width: 100%;
    max-width: 1100px;
    padding: 60px 60px 40px;
    margin: 0 auto;
}

.footer-new-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-new-logo-img {
    height: auto;
    width: 280px;
    margin: 0 auto;
}

.footer-new-body {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-new-left {
    flex: 1;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.footer-info-box {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-info-box:nth-child(odd) {
    padding-right: 30px;
}

.footer-info-box:nth-child(even) {
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.footer-info-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-info-box p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-new-right {
    width: 320px;
    flex-shrink: 0;
}

.footer-keyword-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.footer-keyword-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.footer-keyword-box:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
}

.footer-keyword-box.highlight {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
}

.fkb-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.fkb-main {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-keyword-box.highlight .fkb-main {
    color: var(--gold);
}

.footer-new-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-new-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
}

.footer-new-bottom .footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .footer-new { padding: 30px 20px 20px; }
    .footer-new-body { flex-direction: column; gap: 30px; }
    .footer-new-right { width: 100%; }
    .footer-new-logo-img { width: 200px; }
    .footer-info-grid { grid-template-columns: 1fr; }
    .footer-info-box:nth-child(even) { padding-left: 0; border-left: none; }
    .footer-info-box:nth-child(odd) { padding-right: 0; }
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}

.modal.open { display: flex; }

.modal-content {
    background: var(--white);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 16px;
    color: var(--navy);
}

.modal-close {
    font-size: 28px;
    color: var(--gray-500);
    line-height: 1;
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 10px;
    line-height: 1.7;
}

.modal-confirm {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
}

.modal-confirm:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===== Section enter animation (removed - using scroll snap) ===== */

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .fp-content-right {
        padding: 30px 60px 30px 80px;
    }

    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-header { padding: 0 12px; height: 50px; }
    .header-logo-img { width: 160px; }
    .header-tel { padding: 5px 10px; font-size: 12px; gap: 4px; white-space: nowrap; }
    .header-tel svg { width: 12px; height: 12px; }
    .header-right { gap: 8px; }
    .header-menu-btn span { width: 18px; }

    .side-tab { width: 48px; }
    .side-tab:hover { width: 160px; }
    .side-tab-collapsed { width: 48px; padding: 18px 8px; }
    .side-tab-expanded { width: 160px; padding: 18px 14px; }
    .stab-label-v { font-size: 8px; letter-spacing: 3px; }
    .stab-title-v { font-size: 11px; }
    .stab-copy { font-size: 12px; }

    .fp-content-right {
        padding: 20px 20px 20px 60px;
        overflow-y: auto;
    }

    .side-indicator { right: 12px; }
    .side-dot { width: 8px; height: 8px; }

    .hero-copy { right: 20px; }
    .hero-brand-main { font-size: 22px; }
    .hero-catch-sub { font-size: 13px; }
    .hero-catch-main { font-size: 28px; }
    .scroll-down-right { right: 12px; }
    .scroll-down-right span { font-size: 8px; }
    .scroll-line-v { height: 40px; }

    .floating-contact { bottom: 15px; right: 15px; }
    .float-btn { width: 44px; height: 44px; }
    .float-btn:hover { width: 130px; }

    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .unit-tab { padding: 10px 24px; font-size: 13px; }
    .unit-card { padding: 24px; }

    .form-row-half { grid-template-columns: 1fr; }

    .popup { max-width: 340px; }
    .popup-image { height: 220px; }

    /* Nav overlay mobile */
    .nav-overlay { flex-direction: column; }
    .nav-left { width: 100%; height: 30%; min-height: 160px; }
    .nav-right { width: 100%; height: 70%; }
    .nav-logo-main { font-size: 24px; letter-spacing: 4px; }
    .nav-right-inner { padding: 50px 30px 30px; }
    .nav-catch { margin-bottom: 30px; }
    .nav-catch-en { font-size: 16px; }
    .nav-group { gap: 24px; padding: 16px 0; }
    .nav-group-title { font-size: 15px; min-width: 70px; }
    .nav-link { font-size: 13px; }
}

@media (max-width: 480px) {
    .info-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .info-item { padding: 18px 12px; }
    .info-value { font-size: 13px; }
    .info-value.big { font-size: 24px; }

    .location-grid { grid-template-columns: 1fr 1fr; }
    .loc-card { padding: 16px 12px; }
    .loc-num { font-size: 18px; }
    .loc-card h3 { font-size: 14px; }
    .loc-card p { font-size: 12px; }

    .sales-box { padding: 24px; }
    .sales-tel-btn strong { font-size: 17px; }
}
