/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    color: #252525;
    background: #fff;
    overflow-x: hidden;
    word-break: keep-all;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

ul,
ol {
    list-style: none;
}

:root {
    --main: #202124;
    --main-soft: #313236;
    --accent: #b18a5a;
    --gold: #c89c5a;
    --light: #f7f7f6;
    --line: #e8e8e8;
    --text: #242424;
    --subtext: #777;
    --white: #ffffff;
    --container: 1280px;
}


/* =========================================================
   COMMON
========================================================= */

.section {
    padding: 120px 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.section-title-wrap small {
    display: block;
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.25;
}

.section-desc {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--subtext);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 165px;
    height: 54px;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-dark {
    background: #222;
    color: #fff;
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #bbb;
    background: rgba(255,255,255,.8);
}

.btn-outline:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    height: 48px;
    padding: 0 22px;
    border: 1px solid #d9d9d9;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.more-btn:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.icon-arrow {
    font-size: 18px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 82px;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(0,0,0,.05);
    backdrop-filter: blur(12px);
    transition: .3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 8px 30px rgba(0,0,0,.07);
}

.header-inner {
    width: min(calc(100% - 48px), 1450px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 205px;
}

.logo-mark {
    width: 37px;
    height: 32px;
    position: relative;
    border: 2px solid #222;
    border-top: none;
    margin-top: 5px;
}

.logo-mark:before {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-left: 2px solid #222;
    border-top: 2px solid #222;
    transform: rotate(45deg);
    left: 5px;
    top: -14px;
}

.logo-text strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text span {
    display: block;
    margin-top: 4px;
    font-size: 8px;
    font-family: "Poppins";
    letter-spacing: 1.2px;
    color: #777;
}

.gnb {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.3vw, 48px);
}

.gnb a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.gnb a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -9px;
    background: var(--accent);
    transition: .25s;
}

.gnb a:hover:after,
.gnb a.active:after {
    width: 100%;
}

.gnb a.active {
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 145px;
    padding: 0 20px;
    background: #222;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
}

.hamburger {
    width: 34px;
    height: 34px;
    display: none;
    border: 0;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    margin: 5px auto;
    transition: .3s;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    z-index: 999;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 20px 30px rgba(0,0,0,.08);
    padding: 20px 24px 30px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    padding: 17px 5px;
    border-bottom: 1px solid #eee;
    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    height: min(840px, 100vh);
    min-height: 700px;
    padding-top: 82px;
    overflow: hidden;
    background: #eee;
}

.hero-slide {
    position: absolute;
    inset: 0;
    padding-top: 82px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.98) 0%,
            rgba(255,255,255,.9) 23%,
            rgba(255,255,255,.25) 58%,
            rgba(0,0,0,.08) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 1280px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: 540px;
    padding-bottom: 70px;
}

.hero-copy small {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-copy h1 {
    font-size: clamp(52px, 5vw, 78px);
    line-height: 1.17;
    letter-spacing: -4px;
    font-weight: 800;
}

.hero-copy p {
    max-width: 500px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hero-pager {
    position: absolute;
    z-index: 10;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.hero-pager button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 1px solid rgba(0,0,0,.6);
    border-radius: 50%;
    background: transparent;
    transition: .25s;
}

.hero-pager button.active {
    background: #222;
    transform: scale(1.2);
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 48px), 1280px);
    min-height: 110px;
    background: rgba(20,20,20,.92);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 20px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.1);
}

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature-icon {
    font-size: 29px;
}

.hero-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.hero-feature span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255,255,255,.65);
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

.intro-image {
    height: 390px;
    overflow: hidden;
}

.intro-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-content h2 {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
}

.intro-content p {
    margin-top: 22px;
    max-width: 650px;
    font-size: 17px;
    color: #666;
    line-height: 2;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 42px;
    gap: 15px;
}

.intro-feature {
    text-align: center;
}

.intro-feature .intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-size: 32px;
}

.intro-feature strong {
    display: block;
    margin-top: 12px;
    font-size: 15px;
}


/* =========================================================
   ROOMS
========================================================= */

.rooms {
    background: #fafafa;
}

.slider-wrap {
    position: relative;
}

.room-slider {
    overflow: hidden;
}

.room-track {
    display: flex;
    gap: 20px;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.room-card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border: 1px solid #e9e9e9;
    transition: .3s;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.room-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    cursor: zoom-in;
}

.room-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.zoom-icon {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.7);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s;
}

.room-card:hover .zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 21px;
    font-weight: 800;
}

.room-info p {
    margin-top: 9px;
    font-size: 14px;
    color: #888;
}

.room-price {
    margin-top: 18px;
    font-size: 19px;
    font-weight: 800;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    font-size: 25px;
    transition: .25s;
}

.slider-arrow:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

.room-prev {
    left: -25px;
}

.room-next {
    right: -25px;
}


/* =========================================================
   AMENITIES
========================================================= */

.amenities {
    background: #fff;
}

.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.amenity-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 45px;
}

.amenity-item {
    text-align: center;
}

.amenity-icon {
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
}

.amenity-item strong {
    display: block;
    margin-top: 13px;
    font-size: 14px;
}

.amenity-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.amenity-image {
    height: 220px;
    overflow: hidden;
    cursor: zoom-in;
}

.amenity-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.amenity-image:hover img {
    transform: scale(1.08);
}


/* =========================================================
   COMMUNITY
========================================================= */

.community {
    background: #fafafa;
    padding: 0;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
}

.community-image {
    min-height: 450px;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px;
}

.community-content h2 {
    font-size: clamp(34px, 3vw, 48px);
    letter-spacing: -2px;
}

.community-content p {
    margin-top: 18px;
    font-size: 17px;
    color: #777;
    line-height: 1.8;
}

.community-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 55px;
    gap: 20px;
}

.community-item {
    text-align: center;
}

.community-item div {
    font-size: 38px;
}

.community-item strong {
    display: block;
    margin-top: 12px;
    font-size: 15px;
}


/* =========================================================
   LOCATION
========================================================= */

.location {
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    align-items: stretch;
}

.location-info {
    padding: 20px 0;
}

.location-info h2 {
    font-size: 42px;
    letter-spacing: -2px;
}

.location-info > p {
    margin-top: 14px;
    color: #777;
    font-size: 16px;
}

.location-list {
    margin-top: 35px;
}

.location-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 11px 0;
    font-size: 15px;
}

.location-list strong {
    color: var(--accent);
}

.location-map {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),
        url("https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?auto=format&fit=crop&w=1400&q=85")
        center/cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.1) 0,
            rgba(255,255,255,.1) 1px,
            transparent 1px,
            transparent 45px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,.1) 0,
            rgba(255,255,255,.1) 1px,
            transparent 1px,
            transparent 45px
        );
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 68px;
    background: #18384e;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.map-pin:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    left: 21px;
    top: 21px;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    background: #fafafa;
}

.review-slider {
    position: relative;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 20px;
    transition: transform .55s ease;
}

.review-card {
    flex: 0 0 calc(25% - 15px);
    min-height: 230px;
    background: #fff;
    padding: 36px 30px;
    border: 1px solid #eee;
    text-align: center;
}

.stars {
    color: #dca72d;
    font-size: 20px;
    letter-spacing: 3px;
}

.review-card p {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

.review-card strong {
    display: block;
    margin-top: 24px;
    font-size: 14px;
}

.review-prev {
    left: -25px;
}

.review-next {
    right: -25px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background:
        linear-gradient(90deg, rgba(22,24,28,.98), rgba(32,34,39,.96)),
        #222;
    color: #fff;
    padding: 80px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.cta-copy h2 {
    font-size: clamp(34px, 3.5vw, 54px);
    line-height: 1.3;
    letter-spacing: -2.5px;
}

.cta-copy h2 span {
    color: #e2b56d;
}

.cta-copy p {
    margin-top: 18px;
    color: rgba(255,255,255,.7);
    font-size: 17px;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 38px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #e2c9a1;
    font-size: 15px;
    font-weight: 700;
}

.cta-benefit span {
    font-size: 26px;
}

.cta-box {
    background: #fff;
    color: #222;
    padding: 38px;
    border-radius: 6px;
}

.cta-box small {
    display: block;
    color: #777;
    font-size: 14px;
}

.cta-number {
    margin-top: 7px;
    font-family: "Poppins";
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1;
    font-weight: 700;
    color: var(--accent);
}

.cta-time {
    margin-top: 18px;
    color: #777;
    font-size: 13px;
}

.cta-box .btn {
    width: 100%;
    margin-top: 25px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #1b1d20;
    color: #fff;
}

.footer-top {
    padding: 65px 0 45px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 45px;
}

.footer-logo .logo-text strong {
    color: #fff;
}

.footer-logo .logo-mark {
    border-color: #fff;
}

.footer-logo .logo-mark:before {
    border-color: #fff;
}

.footer-desc {
    margin-top: 22px;
    max-width: 260px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,.55);
}

.sns {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.sns a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 13px;
}

.footer-title {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
}

.footer-links a,
.footer-contact p {
    display: block;
    margin: 11px 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    color: rgba(255,255,255,.4);
    font-size: 12px;
}


/* =========================================================
   MODAL
========================================================= */

.image-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0,0,0,.92);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.image-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: min(1100px, 100%);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    width: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,.5);
}

.modal-close {
    position: absolute;
    right: -5px;
    top: -55px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 38px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    color: #fff;
    font-size: 30px;
}

.modal-nav:hover {
    background: #fff;
    color: #222;
}

.modal-prev {
    left: -85px;
}

.modal-next {
    right: -85px;
}

.modal-caption {
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 16px;
}


/* =========================================================
   TOP BUTTON
========================================================= */

.top-btn {
    position: fixed;
    z-index: 900;
    right: 28px;
    bottom: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    background: rgba(25,25,25,.8);
    color: #fff;
    font-size: 21px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .3s;
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   FADE ANIMATION
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: .7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .gnb {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .intro-grid,
    .amenity-grid,
    .location-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .room-card {
        flex-basis: calc(50% - 10px);
    }

    .review-card {
        flex-basis: calc(50% - 10px);
    }

    .community-content {
        padding: 60px 45px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .hero-features {
        grid-template-columns: repeat(5, minmax(150px,1fr));
        overflow-x: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .section {
        padding: 80px 0;
    }

    .container {
        width: min(calc(100% - 32px), 1280px);
    }

    .header {
        height: 70px;
    }

    .header-inner {
        width: calc(100% - 32px);
    }

    .logo {
        min-width: auto;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .call-btn {
        display: none;
    }

    .hero {
        height: 780px;
        min-height: 680px;
        padding-top: 70px;
    }

    .hero-slide {
        padding-top: 70px;
    }

    .hero-bg {
        background-position: 65% center;
    }

    .hero-bg:before {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.97) 0%,
                rgba(255,255,255,.86) 65%,
                rgba(255,255,255,.35) 100%
            );
    }

    .hero-content {
        width: calc(100% - 32px);
        align-items: flex-start;
        padding-top: 120px;
    }

    .hero-copy {
        width: 100%;
        padding-bottom: 0;
    }

    .hero-copy small {
        font-size: 13px;
    }

    .hero-copy h1 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .hero-copy p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        margin-top: 30px;
    }

    .btn {
        min-width: 145px;
        height: 50px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-pager {
        right: 17px;
    }

    .hero-features {
        width: 100%;
        transform: none;
        left: 0;
        min-height: 100px;
    }

    .hero-feature {
        min-width: 155px;
        padding: 14px;
    }

    .hero-feature strong {
        font-size: 13px;
    }

    .hero-feature span {
        font-size: 10px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-desc {
        font-size: 15px;
    }

    .intro-grid {
        gap: 38px;
    }

    .intro-image {
        height: 280px;
    }

    .intro-content h2 {
        font-size: 34px;
    }

    .intro-content p {
        font-size: 15px;
    }

    .intro-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .room-slider,
    .review-slider {
        overflow: visible;
    }

    .room-track,
    .review-track {
        overflow: hidden;
    }

    .room-card {
        flex-basis: 100%;
    }

    .review-card {
        flex-basis: 100%;
    }

    .room-prev,
    .review-prev {
        left: 5px;
    }

    .room-next,
    .review-next {
        right: 5px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .amenity-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenity-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .amenity-image {
        height: 170px;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .community-image {
        min-height: 300px;
    }

    .community-content {
        padding: 70px 24px;
    }

    .community-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .location-grid {
        gap: 25px;
    }

    .location-info h2 {
        font-size: 35px;
    }

    .location-map {
        min-height: 300px;
    }

    .cta-grid {
        gap: 45px;
    }

    .cta-copy h2 {
        font-size: 37px;
    }

    .cta-benefits {
        gap: 20px;
    }

    .cta-box {
        padding: 30px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-logo {
        grid-column: span 2;
    }

    .modal-prev {
        left: 5px;
    }

    .modal-next {
        right: 5px;
    }

    .modal-nav {
        width: 48px;
        height: 48px;
    }

    .image-modal {
        padding: 20px;
    }

    .top-btn {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
    }

}


/* =========================================================
   MOBILE ROOM / REVIEW SLIDER - FINAL FIX
========================================================= */
@media (max-width: 768px) {
    /* IMPORTANT: native horizontal scrolling on mobile */
    .slider-wrap {
        overflow: visible !important;
    }

    .room-slider,
    .review-slider {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        padding: 0 0 16px !important;
        touch-action: pan-x pan-y;
    }

    .room-slider::-webkit-scrollbar,
    .review-slider::-webkit-scrollbar {
        display: none;
    }

    .room-track,
    .review-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        min-width: max-content !important;
        gap: 16px !important;
        padding: 0 16px 4px 0 !important;
        margin: 0 !important;
        transform: none !important;
        transition: none !important;
    }

    .room-card,
    .review-card {
        flex: 0 0 82vw !important;
        width: 82vw !important;
        max-width: 420px !important;
        min-width: 0 !important;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .room-slider,
    .review-slider {
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
    }

    .room-image {
        height: 230px !important;
    }

    .room-info {
        padding: 24px !important;
    }

    .room-info h3 {
        font-size: 22px !important;
    }

    .room-info p {
        font-size: 16px !important;
        line-height: 1.7;
    }

    .room-price {
        font-size: 17px !important;
    }

    .review-card {
        min-height: 230px !important;
        padding: 34px 26px !important;
    }

    .review-card p {
        font-size: 16px !important;
        line-height: 1.9 !important;
    }

    .review-card strong {
        font-size: 16px !important;
    }

    .slider-arrow {
        position: absolute !important;
        top: 50% !important;
        z-index: 20 !important;
        width: 44px !important;
        height: 44px !important;
        transform: translateY(-50%);
    }

    .room-prev,
    .review-prev {
        left: -8px !important;
    }

    .room-next,
    .review-next {
        right: -8px !important;
    }
}

/* 카카오맵 위젯이 우측 박스에 여백 없이 가득 차도록 강제 설정 */
.location-map-box,
.map-card {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* 카카오맵 랜딩 영역 전체 채우기 */
.root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
}

/* 카카오맵 내부 실제 지도 영역 (iframe 및 인라인 요소) 꽉 채우기 */
.root_daum_roughmap .wrap_map,
.root_daum_roughmap .roughmap_maker_template {
    width: 100% !important;
    height: 100% !important;
}

.root_daum_roughmap iframe {
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px !important; /* 부모 박스 모서리 곡률과 맞춤 */
}