@charset "UTF-8";

/* =========================================================
   엔스타일투어 서비스 안내 (site/unite/company/premium)
   - 스테이럭스 info-index 구조 준용 / 차콜 + 앤티크 골드 팔레트
   - 국가별 사이트(프랑스/스페인/이탈리아 등) 어느 브랜드 컬러와도 충돌하지 않는
     뉴트럴 메탈릭 톤. 클래스 프리픽스: nsp-
   ========================================================= */

.nsp-wrap {
    --nsp-gold: #b18f57;
    --nsp-gold-deep: #7f6234;
    --nsp-gold-light: #d9c39c;
    --nsp-grad: linear-gradient(135deg, #c2a068 0%, #8a6d3c 100%);
    --nsp-grad-soft: linear-gradient(135deg, rgba(177, 143, 87, 0.12), rgba(138, 109, 60, 0.07));
    --nsp-ink: #26231f;
    --nsp-ink-soft: #5a544b;
    --nsp-ink-mute: #8a8378;
    --nsp-ivory: #faf8f3;
    --nsp-sand: #efe9dd;
    --nsp-line: #e5ddcc;
    --nsp-dark: #211e1a;
    --nsp-dark-2: #14110c;
    --nsp-white: #ffffff;

    width: 100%;
    background: var(--nsp-white);
    color: var(--nsp-ink);
    font-family: "Open Sans", "NanumBarunGothic", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.nsp-wrap * {
    box-sizing: border-box;
}

/* 사이트 공통 리셋(* { line-height: 1.2em }) 방어 — 명시적 단위 없는 값으로 재설정.
   개별 컴포넌트 규칙이 아래쪽에서 같은 특정도로 덮어쓴다. */
.nsp-wrap section,
.nsp-wrap div,
.nsp-wrap ul,
.nsp-wrap li,
.nsp-wrap p,
.nsp-wrap h1,
.nsp-wrap h2,
.nsp-wrap h3,
.nsp-wrap h4,
.nsp-wrap span,
.nsp-wrap a,
.nsp-wrap strong {
    line-height: 1.7;
}

.nsp-wrap img {
    max-width: 100%;
}

/* ---------- 공통 레이아웃 ---------- */
.nsp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

.nsp-section {
    padding: 100px 0;
    background: var(--nsp-white);
}

.nsp-section--sand {
    background: var(--nsp-sand);
}

.nsp-section--ivory {
    background: var(--nsp-ivory);
}

.nsp-section--dark {
    background: linear-gradient(150deg, var(--nsp-dark) 0%, var(--nsp-dark-2) 100%);
    color: #efe9df;
}

/* ---------- 섹션 헤더 ---------- */
.nsp-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--nsp-gold-deep);
    margin-bottom: 18px;
}

.nsp-section--dark .nsp-eyebrow {
    color: var(--nsp-gold-light);
}

.nsp-head {
    max-width: 760px;
    margin-bottom: 56px;
}

.nsp-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nsp-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.42;
    color: var(--nsp-ink);
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

.nsp-section--dark .nsp-title {
    color: #fff;
}

.nsp-divider {
    width: 64px;
    height: 3px;
    border-radius: 2px;
    background: var(--nsp-grad);
    margin-bottom: 26px;
}

.nsp-head--center .nsp-divider {
    margin-left: auto;
    margin-right: auto;
}

.nsp-desc {
    font-size: 16px;
    color: var(--nsp-ink-soft);
    line-height: 1.9;
    margin: 0;
}

.nsp-section--dark .nsp-desc {
    color: #cfc7ba;
}

/* ---------- 본문 프로즈 ---------- */
.nsp-prose p {
    font-size: 15.5px;
    color: var(--nsp-ink-soft);
    line-height: 1.95;
    margin: 0 0 18px;
    max-width: 760px;
}

.nsp-prose p:last-child {
    margin-bottom: 0;
}

.nsp-prose strong {
    color: var(--nsp-ink);
    font-weight: 700;
}

.nsp-section--dark .nsp-prose p {
    color: #cfc7ba;
}

.nsp-section--dark .nsp-prose strong {
    color: #fff;
}

.nsp-emph {
    font-size: 17px;
    font-weight: 700;
    color: var(--nsp-ink);
    line-height: 1.85;
    margin: 30px 0;
    padding-left: 22px;
    border-left: 3px solid var(--nsp-gold);
    max-width: 760px;
}

.nsp-section--dark .nsp-emph {
    color: #fff;
}

/* ---------- 히어로 (섹션 1) ---------- */
.nsp-hero {
    position: relative;
    padding: 120px 0 110px;
    background: linear-gradient(180deg, var(--nsp-ivory) 0%, var(--nsp-sand) 100%);
    overflow: hidden;
}

.nsp-hero::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 170, 112, 0.16) 0%, transparent 70%);
}

.nsp-hero .nsp-container {
    position: relative;
    z-index: 1;
}

.nsp-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: stretch;
}

.nsp-hero-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nsp-hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.025em;
    color: var(--nsp-ink);
    margin: 22px 0 20px;
}

.nsp-hero-lead {
    font-size: 17px;
    font-weight: 700;
    color: var(--nsp-gold-deep);
    margin: 0 0 30px;
}

.nsp-hero .nsp-prose p {
    font-size: 15px;
}

.nsp-hero-cta {
    margin-top: 38px;
}

/* ---------- 이미지 자리 (placeholder) ---------- */
.nsp-img-ph {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    background: repeating-linear-gradient(-45deg, #efe7d9, #efe7d9 12px, #f4eee2 12px, #f4eee2 24px);
    border: 1px dashed #c9bda4;
    border-radius: 14px;
    color: #9c9184;
    padding: 24px;
    min-height: 260px;
}

.nsp-img-ph--wide {
    aspect-ratio: 16 / 9;
    min-height: 280px;
    width: 100%;
}

.nsp-img-ph--tall {
    aspect-ratio: 4 / 5;
    min-height: 420px;
}

.nsp-img-ph .nsp-img-ph-ico {
    width: 34px;
    height: 34px;
    opacity: 0.6;
}

.nsp-img-ph .nsp-img-ph-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nsp-img-ph .nsp-img-ph-file {
    font-size: 11px;
    color: #b3a891;
    word-break: break-all;
}

/* ---------- 등록 이미지 ---------- */
.nsp-figure {
    position: relative;
    margin: 36px 0 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(38, 28, 14, 0.16);
}

.nsp-figure img {
    display: block;
    width: 100%;
    height: auto;
}

/* 사진 위 호텔명 캡션 */
.nsp-figure-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(14px, 1.8vw, 24px) clamp(16px, 2vw, 30px);
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    color: #fff;
    background: linear-gradient(to top, rgba(18, 15, 10, 0.72) 0%, rgba(18, 15, 10, 0.30) 55%, rgba(18, 15, 10, 0) 100%);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

/* 히어로 우측 이미지: 텍스트 컬럼 높이에 맞춰 채움 */
.nsp-figure--hero {
    margin: 0;
    flex: 1;
    min-height: 460px;
}

.nsp-figure--hero img {
    height: 100%;
    object-fit: cover;
}

/* ---------- 카드 그리드 (섹션 3, 6) ---------- */
.nsp-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.nsp-card {
    background: var(--nsp-white);
    border: 1px solid var(--nsp-line);
    border-radius: 16px;
    padding: 38px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nsp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(60, 44, 22, 0.12);
    border-color: transparent;
}

.nsp-card-ico {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nsp-grad);
    color: #fff;
    margin-bottom: 22px;
}

.nsp-card-ico svg {
    width: 28px;
    height: 28px;
}

.nsp-card-name {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--nsp-ink);
    margin: 0 0 10px;
}

.nsp-card-text {
    font-size: 14px;
    color: var(--nsp-ink-soft);
    line-height: 1.8;
    margin: 0;
}

/* ---------- TAKUMIANS 배지 블록 (섹션 4) ---------- */
.nsp-badge-block {
    margin-top: 48px;
    background: linear-gradient(150deg, var(--nsp-dark) 0%, var(--nsp-dark-2) 100%);
    border-radius: 18px;
    padding: 44px 46px;
    color: #efe9df;
}

.nsp-badge-title {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 6px;
}

.nsp-badge-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nsp-gold-light);
    margin: 0 0 24px;
}

.nsp-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsp-tag-list li {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #e9e1d4;
    border: 1px solid rgba(217, 195, 156, 0.45);
    border-radius: 999px;
    padding: 8px 16px;
}

/* ---------- LUXURY HOTELS / STAYLUXE 하위 블록 (섹션 5) ---------- */
.nsp-sub {
    margin-top: 40px;
    background: var(--nsp-grad-soft);
    border: 1px solid var(--nsp-line);
    border-radius: 18px;
    padding: 40px 44px;
}

.nsp-sub-title {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--nsp-ink);
    margin: 0 0 6px;
}

.nsp-sub-cap {
    font-size: 13px;
    color: var(--nsp-ink-mute);
    margin: 0 0 22px;
}

.nsp-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.nsp-benefit-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--nsp-ink);
    background: var(--nsp-white);
    border: 1px solid var(--nsp-line);
    border-radius: 999px;
    padding: 8px 15px;
}

.nsp-benefit-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nsp-grad);
    flex-shrink: 0;
}

.nsp-note {
    font-size: 12.5px;
    color: var(--nsp-ink-mute);
    margin: 18px 0 0;
    line-height: 1.7;
}

/* ---------- 프로세스 스텝 (섹션 7) ---------- */
.nsp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.nsp-step {
    position: relative;
    background: var(--nsp-white);
    border: 1px solid var(--nsp-line);
    border-radius: 16px;
    padding: 40px 26px 32px;
}

.nsp-step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: var(--nsp-grad);
    margin-bottom: 14px;
}

.nsp-step-name {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--nsp-gold-deep);
    margin: 0 0 8px;
}

.nsp-step-sub {
    font-size: 15px;
    font-weight: 800;
    color: var(--nsp-ink);
    line-height: 1.5;
    margin: 0 0 12px;
}

.nsp-step-text {
    font-size: 13.5px;
    color: var(--nsp-ink-soft);
    line-height: 1.8;
    margin: 0;
}

/* ---------- WHY NSTYLE TOUR (섹션 8) ---------- */
.nsp-why-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.nsp-why-item {
    padding: 30px 28px;
    background: var(--nsp-white);
    border: 1px solid var(--nsp-line);
    border-radius: 16px;
    border-top: 3px solid var(--nsp-gold);
}

.nsp-why-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nsp-gold-deep);
    margin-bottom: 12px;
}

.nsp-why-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--nsp-ink);
    line-height: 1.55;
    margin: 0 0 12px;
}

.nsp-why-text {
    font-size: 13.5px;
    color: var(--nsp-ink-soft);
    line-height: 1.8;
    margin: 0;
}

/* ---------- CTA 버튼 ---------- */
.nsp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: var(--nsp-grad);
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 26px rgba(120, 94, 52, 0.26);
}

.nsp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(120, 94, 52, 0.32);
    color: #fff;
    text-decoration: none;
}

.nsp-cta svg {
    width: 17px;
    height: 17px;
}

.nsp-cta--ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    box-shadow: none;
    color: #fff;
}

.nsp-cta--ghost:hover {
    background: #fff;
    color: var(--nsp-ink);
    border-color: #fff;
}

/* ---------- 마무리 CTA 섹션 (섹션 10) ---------- */
.nsp-cta-section {
    position: relative;
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
}

.nsp-cta-section::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 170, 112, 0.20) 0%, transparent 68%);
}

.nsp-cta-section .nsp-container {
    position: relative;
    z-index: 1;
}

.nsp-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 26px;
    letter-spacing: -0.02em;
}

.nsp-cta-sign {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    margin: 0 0 38px;
}

.nsp-cta-sign strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
}

.nsp-cta-sign span {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nsp-gold-light);
}

/* ---------- 반응형 (뷰포트 고정이지만 방어적으로) ---------- */
@media (max-width: 1100px) {
    .nsp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nsp-card-grid,
    .nsp-why-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .nsp-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
