/* ================================================================
   KoNa Tours — Homepage v2 (Luxury Safari Editorial)
   All v1 class names preserved; visual layer redesigned.
   ================================================================ */

/* Container & rhythm */
.hp-container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.hp-section { padding: var(--section-y) 0; }
.hp-section-sand { background: var(--kn-sand-50); }

/* Highlight section — 나만의 투어 */
.hp-section-highlight {
    background: linear-gradient(160deg, #FBF6EE 0%, #F6EEDF 100%);
    position: relative;
    overflow: hidden;
}
.hp-section-highlight::before {
    content: '';
    position: absolute;
    top: -30%; right: -12%;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(184,112,42,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hp-label-highlight {
    color: var(--kn-amber) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    border-radius: 0;
    width: fit-content;
}
.hp-custom-lead {
    font-family: var(--font-kr); font-size: 16.5px; line-height: 1.85; font-weight: 300;
    color: var(--kn-sand-700); margin-bottom: 22px !important;
}
.hp-custom-lead strong { color: var(--kn-amber-dark); font-weight: 600; }
.hp-custom-cta {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    margin-top: 10px;
}
.hp-custom-hint {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-kr); font-size: 12px; font-weight: 300;
    color: var(--kn-sand-500); letter-spacing: 0.03em;
}
.hp-custom-hint i { width: 13px; height: 13px; }
.hp-btn-large {
    padding: 17px 36px !important;
    font-size: 15px !important;
    display: inline-flex !important;
    align-items: center; gap: 10px;
    box-shadow: 0 10px 30px rgba(184,112,42,0.28);
}
.hp-btn-large:hover { box-shadow: 0 14px 38px rgba(184,112,42,0.38) !important; }
.hp-btn-large i { width: 18px; height: 18px; }

/* Section headers — editorial kicker + serif title */
.hp-section-header { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.hp-label {
    font-family: var(--font-body); font-size: 11px; font-weight: 600;
    letter-spacing: var(--ls-kicker); text-transform: uppercase;
    color: var(--kn-amber); display: inline-flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
}
.hp-section-header .hp-label::before,
.hp-section-header .hp-label::after {
    content: ''; width: 28px; height: 1px; background: var(--kn-amber); opacity: 0.55;
}
.hp-section-header h2 {
    font-family: var(--font-display); font-size: var(--fs-title);
    color: var(--kn-sand-900); line-height: 1.28; font-weight: 400;
}

/* ================================================================
   HERO — full-bleed cinematic
   ================================================================ */
.hp-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hp-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%;
    transform: scale(1.06);
    transition: transform 12s linear;
}
.hp-hero.loaded .hp-hero-bg { transform: scale(1); }
/* 배경영상 — 포스터 이미지 위, 오버레이 아래. 재생 준비되면 .ready 로 페이드인 */
.hp-hero-video {
    position: absolute; inset: 0; z-index: 1;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.4s ease;
    pointer-events: none;
}
.hp-hero-video.ready { opacity: 1; }
.hp-hero-overlay {
    position: absolute; inset: 0; z-index: 2;   /* 영상(z1) 위 — 글자 가독성 */
    background: linear-gradient(to bottom, rgba(10,9,8,0.34) 0%, rgba(10,9,8,0.30) 55%, rgba(10,9,8,0.62) 100%);
}
.hp-hero-content {
    position: relative; z-index: 3;
    text-align: center; max-width: 820px; padding: 0 40px;
}
.hp-hero-eyebrow {
    font-family: var(--font-body); font-size: 12px; font-weight: 500;
    letter-spacing: 0.34em; text-transform: uppercase;
    color: rgba(255,255,255,0.66); display: inline-flex; align-items: center; gap: 16px;
    margin-bottom: 28px;
}
.hp-hero-eyebrow::before, .hp-hero-eyebrow::after {
    content: ''; width: 36px; height: 1px; background: rgba(255,255,255,0.4);
}
.hp-hero-heading {
    font-family: var(--font-display); font-size: var(--fs-hero);
    color: var(--kn-white); line-height: 1.18; margin-bottom: 26px;
    font-weight: 400; letter-spacing: -0.005em;
}
.hp-hero-heading span { display: block; }
.hp-hero-desc {
    font-family: var(--font-kr); font-size: 15.5px; font-weight: 300;
    color: rgba(255,255,255,0.75); margin-bottom: 40px; letter-spacing: 0.06em;
}
.hp-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero reveal animation */
.reveal-hero {
    opacity: 0; transform: translateY(24px);
    animation: heroReveal 1s var(--ease-out) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

/* Scroll hint */
.hp-scroll-hint {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.45); z-index: 2;
    font-family: var(--font-body); font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase;
}
.hp-scroll-line {
    width: 1px; height: 48px; background: rgba(255,255,255,0.2);
    position: relative; overflow: hidden;
}
.hp-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 1px; height: 100%; background: var(--kn-amber-light);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 100% { top: 200%; } }

/* ================================================================
   BUTTONS
   ================================================================ */
.hp-btn-primary {
    font-family: var(--font-kr); font-size: 14px; font-weight: 600;
    padding: 15px 36px; border-radius: var(--radius-full);
    background: var(--kn-amber); color: var(--kn-white);
    letter-spacing: 0.04em;
    transition: all var(--duration-base) var(--ease-out);
    display: inline-flex; align-items: center; gap: 8px;
}
.hp-btn-primary:hover { background: var(--kn-amber-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184,112,42,0.32); }
.hp-btn-ghost {
    font-family: var(--font-kr); font-size: 14px; font-weight: 400;
    padding: 15px 36px; border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.38); color: var(--kn-white);
    letter-spacing: 0.04em;
    transition: all var(--duration-base) var(--ease-out);
}
.hp-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hp-btn-outline-sm {
    font-family: var(--font-kr); font-size: 13px; font-weight: 600;
    padding: 12px 26px; border-radius: var(--radius-full);
    border: 1px solid var(--kn-sand-300); color: var(--kn-sand-800);
    letter-spacing: 0.05em;
    transition: all var(--duration-base) var(--ease-out);
    display: inline-flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.hp-btn-outline-sm:hover { border-color: var(--kn-ink); background: var(--kn-ink); color: var(--kn-white); }
.hp-btn-outline-sm i { width: 14px; height: 14px; }

/* ================================================================
   INTRO — editorial statement
   ================================================================ */
.hp-intro { padding: clamp(80px, 11vw, 150px) 0; text-align: center; background: var(--kn-ivory); }
.hp-intro-text {
    font-family: var(--font-display-kr); font-size: clamp(21px, 2.6vw, 30px); line-height: 1.9;
    color: var(--kn-sand-600); font-weight: 300; letter-spacing: 0.005em;
}
.hp-intro-text strong { color: var(--kn-sand-900); font-weight: 500; }
.hp-intro-accent { color: var(--kn-amber-dark); font-weight: 400; }

/* ================================================================
   나만의 투어 — KEY FEATURE
   ================================================================ */
.hp-custom-feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px);
    align-items: center;
}
.hp-custom-content h2 {
    font-family: var(--font-display); font-size: var(--fs-title);
    color: var(--kn-sand-900); margin-bottom: 16px; margin-top: 14px;
}
.hp-custom-content > p {
    font-family: var(--font-kr); font-size: 15px; line-height: 1.85;
    color: var(--kn-sand-600); margin-bottom: 20px;
}
.hp-custom-list { list-style: none; margin-bottom: 30px; }
.hp-custom-list li {
    font-family: var(--font-kr); font-size: 14.5px; font-weight: 300; color: var(--kn-sand-700);
    padding: 10px 0; display: flex; align-items: center; gap: 14px;
    border-bottom: 1px solid var(--kn-line);
}
.hp-custom-list li:first-child { border-top: 1px solid var(--kn-line); }
.hp-custom-list i { width: 16px; height: 16px; color: var(--kn-amber); flex-shrink: 0; }
.hp-custom-image {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/5; box-shadow: var(--shadow-xl);
}
.hp-custom-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.hp-custom-feature:hover .hp-custom-image img { transform: scale(1.04); }

/* ================================================================
   차량 렌탈 SECTION
   ================================================================ */
.hp-rental-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 80px);
    align-items: center;
}
.hp-rental-image {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.hp-rental-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.hp-rental-layout:hover .hp-rental-image img { transform: scale(1.04); }
.hp-rental-content h2 {
    font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 36px);
    color: var(--kn-sand-900); margin-bottom: 14px; margin-top: 14px;
}
.hp-rental-content > p {
    font-family: var(--font-kr); font-size: 15px; font-weight: 300; line-height: 1.85;
    color: var(--kn-sand-600); margin-bottom: 22px;
}
.hp-rental-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin-bottom: 26px;
}
.hp-rental-features span {
    font-family: var(--font-kr); font-size: 13.5px; font-weight: 300; color: var(--kn-sand-700);
    display: flex; align-items: center; gap: 8px;
}
.hp-rental-features i { width: 14px; height: 14px; color: var(--kn-amber); }

/* ================================================================
   CONTACT CHANNELS
   ================================================================ */
.hp-cta-channels {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 24px;
}
.hp-channel-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-kr); font-size: 14px; font-weight: 600;
    padding: 14px 28px; border-radius: var(--radius-full);
    transition: all var(--duration-base) var(--ease-out);
}
.hp-channel-btn i { width: 18px; height: 18px; }
.hp-channel-kakao { background: var(--kn-kakao); color: #191919; }
.hp-channel-kakao:hover { background: #FDD835; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,229,0,0.3); }
.hp-channel-whatsapp { background: #25D366; color: white; }
.hp-channel-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.hp-channel-email { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.25); }
.hp-channel-email:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* Tour more link */
.hp-tour-more { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

/* ================================================================
   TOUR CARDS — editorial, image-forward
   ================================================================ */
.hp-tour-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px);
    margin-bottom: 8px;
}
.hp-tour-card {
    background: transparent; border-radius: 0;
    overflow: visible; border: none;
    transition: transform var(--duration-slow) var(--ease-out);
    text-decoration: none; display: block;
}
.hp-tour-card:hover { transform: translateY(-6px); box-shadow: none; }
.hp-tour-img {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--duration-slow) var(--ease-out);
}
.hp-tour-card:hover .hp-tour-img { box-shadow: var(--shadow-xl); }
.hp-tour-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}
.hp-tour-card:hover .hp-tour-img img { transform: scale(1.05); }
.hp-tour-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,9,8,0.32) 0%, transparent 45%);
    pointer-events: none;
}
.hp-tour-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    font-family: var(--font-body); font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.16em; padding: 5px 13px;
    background: rgba(251,250,247,0.92); color: var(--kn-sand-900);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
}
.hp-tour-badge.premium  { background: rgba(27,45,79,0.92); color: #fff; }
.hp-tour-badge.short    { background: rgba(122,155,109,0.92); color: #fff; }
.hp-tour-badge.special  { background: linear-gradient(135deg, #C12F2A 0%, #E85A30 100%); color: #fff; }
.hp-tour-badge.new      { background: #2E7D5F; color: #fff; }
.hp-tour-badge.limited  { background: linear-gradient(135deg, #7A1FA0 0%, #C73BCC 100%); color: #fff; }
.hp-tour-badge.seasonal { background: #D4782A; color: #fff; }
.hp-tour-body { padding: 22px 6px 0; }
.hp-tour-meta {
    display: flex; gap: 16px; margin-bottom: 10px;
    font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--kn-sand-400);
}
.hp-tour-meta span { display: flex; align-items: center; gap: 5px; }
.hp-tour-meta i { width: 12px; height: 12px; }
.hp-tour-body h3 {
    font-family: var(--font-display); font-size: 24px;
    color: var(--kn-sand-900); margin-bottom: 8px;
    transition: color var(--duration-fast);
}
.hp-tour-card:hover .hp-tour-body h3 { color: var(--kn-amber-dark); }
.hp-tour-body p {
    font-family: var(--font-kr); font-size: 13.5px; font-weight: 300; line-height: 1.7;
    color: var(--kn-sand-600); margin-bottom: 10px;
}
.hp-tour-route {
    font-family: var(--font-kr); font-size: 11.5px; font-weight: 400;
    color: var(--kn-sand-400); margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.hp-tour-price {
    display: flex; align-items: baseline; gap: 8px;
    padding-top: 16px; border-top: 1px solid var(--kn-line);
}
.hp-price-value {
    font-family: var(--font-display); font-size: 21px; color: var(--kn-sand-900);
}
.hp-price-note {
    font-family: var(--font-kr); font-size: 11.5px; font-weight: 300; color: var(--kn-sand-400);
}

/* Custom tour banner */
.hp-custom-banner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 28px 36px; background: transparent;
    border: 1px solid var(--kn-sand-200); border-radius: var(--radius-md);
}
.hp-custom-banner h3 {
    font-family: var(--font-kr); font-size: 16px; font-weight: 600;
    color: var(--kn-sand-900); margin-bottom: 4px;
}
.hp-custom-banner p {
    font-family: var(--font-kr); font-size: 13px; font-weight: 300; color: var(--kn-sand-500);
}

/* ================================================================
   EXPERIENCE — editorial masonry
   ================================================================ */
.hp-exp-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    grid-auto-rows: 250px;
}
.hp-exp-wide { grid-column: span 2; }
.hp-exp-card {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer;
}
.hp-exp-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.hp-exp-card:hover img { transform: scale(1.05); }
.hp-exp-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,9,8,0.72) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px;
    opacity: 1; transition: opacity 0.3s ease;
}
.hp-exp-overlay h4 {
    font-family: var(--font-display); font-size: 24px; color: var(--kn-white);
    margin-bottom: 4px;
}
.hp-exp-overlay p {
    font-family: var(--font-kr); font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.75);
}

/* ================================================================
   CLIENT JOURNAL — real travelers, treated as editorial proof
   ================================================================ */
.hp-client-journal {
    overflow: hidden;
    background: #171713;
    color: #f5efe4;
}
.hp-client-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(46px, 6vw, 76px);
}
.hp-client-heading .hp-label { color: #d5965f; }
.hp-client-heading h2 {
    max-width: 760px;
    margin-top: 18px;
    color: #f5efe4;
    font-family: var(--font-display-kr);
    font-size: clamp(34px, 4.8vw, 64px);
    font-weight: 300;
    line-height: 1.24;
    letter-spacing: -.045em;
}
.hp-client-heading p {
    max-width: 510px;
    color: rgba(245, 239, 228, .58);
    font-family: var(--font-kr);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.9;
}
.hp-client-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    min-height: 720px;
}
.hp-client-frame {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #28271f;
}
.hp-client-frame-main { grid-row: 1 / 3; }
.hp-client-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.04);
    transition: transform 1.1s var(--ease-out), filter .5s ease;
}
.hp-client-frame-main img { object-position: 50% center; }
.hp-client-frame:nth-child(2) img { object-position: 58% center; }
.hp-client-frame:hover img {
    transform: scale(1.025);
    filter: saturate(.96) contrast(1.03);
}
.hp-client-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 12, 10, .82), transparent 48%);
    content: "";
    pointer-events: none;
}
.hp-client-frame figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.hp-client-frame figcaption span {
    color: #dba16d;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;
}
.hp-client-frame figcaption strong {
    color: #fff;
    font-family: var(--font-display-kr);
    font-size: clamp(17px, 2vw, 25px);
    font-weight: 300;
}
.hp-client-note {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.hp-client-note > span {
    color: rgba(245, 239, 228, .35);
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: .2em;
}
.hp-client-note a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #f5efe4;
    font-family: var(--font-kr);
    font-size: 12px;
}
.hp-client-note i { width: 15px; }

/* ================================================================
   WHY KONA — hairline editorial columns
   ================================================================ */
.hp-why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-bottom: clamp(44px, 6vw, 64px);
    border-top: 1px solid var(--kn-line);
    border-bottom: 1px solid var(--kn-line);
}
.hp-why-card {
    text-align: left; padding: 36px 28px 40px;
    position: relative;
}
.hp-why-card:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 24px; bottom: 24px;
    width: 1px; background: var(--kn-line);
}
.hp-why-card i {
    width: 26px; height: 26px; color: var(--kn-amber);
    margin-bottom: 18px;
}
.hp-why-card h4 {
    font-family: var(--font-kr); font-size: 15.5px; font-weight: 600;
    color: var(--kn-sand-900); margin-bottom: 10px;
}
.hp-why-card p {
    font-family: var(--font-kr); font-size: 13px; font-weight: 300; line-height: 1.8;
    color: var(--kn-sand-500);
}

/* Stats — serif numerals */
.hp-stats {
    display: flex; justify-content: center; gap: clamp(48px, 8vw, 96px);
    padding: 8px 0 0; border-top: none;
}
.hp-stat { text-align: center; }
.hp-stat-num {
    font-family: var(--font-display); font-size: clamp(38px, 5vw, 56px); color: var(--kn-sand-900);
    line-height: 1;
}
.hp-stat-suffix {
    font-family: var(--font-display-kr); font-size: 20px; font-weight: 500;
    color: var(--kn-amber-dark);
}
.hp-stat-label {
    display: block; font-family: var(--font-kr); font-size: 12px; font-weight: 300;
    color: var(--kn-sand-500); margin-top: 8px; letter-spacing: 0.06em;
}

/* ================================================================
   TESTIMONIALS — editorial quotes
   ================================================================ */
.hp-review-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px);
}
.hp-review-card {
    background: var(--kn-white); border: 1px solid var(--kn-sand-100);
    border-radius: var(--radius-md); padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-base) var(--ease-out);
}
.hp-review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hp-review-stars {
    color: var(--kn-amber); font-size: 13px; margin-bottom: 16px;
    letter-spacing: 3px;
}
.hp-review-card p {
    font-family: var(--font-kr); font-size: 14px; font-weight: 300; line-height: 1.9;
    color: var(--kn-sand-700); margin-bottom: 18px;
}
.hp-review-author { font-family: var(--font-kr); font-size: 13px; }
.hp-review-author strong { color: var(--kn-sand-800); font-weight: 600; }
.hp-review-author span { color: var(--kn-sand-400); margin-left: 8px; font-size: 12px; font-weight: 300; }

/* ================================================================
   CTA — ink & ember
   ================================================================ */
.hp-cta {
    position: relative; padding: clamp(96px, 12vw, 160px) 40px; text-align: center;
    overflow: hidden;
}
.hp-cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hp-cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(22,17,12,0.82) 0%, rgba(10,9,8,0.92) 100%);
}
.hp-cta::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(184,112,42,0.22) 0%, transparent 55%);
    pointer-events: none;
}
.hp-cta-content { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.hp-cta-content h2 {
    font-family: var(--font-display); font-size: var(--fs-title);
    color: var(--kn-white); margin-bottom: 18px; line-height: 1.3;
}
.hp-cta-content p {
    font-family: var(--font-kr); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.62);
    margin-bottom: 36px; line-height: 1.9;
}
.hp-cta-buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 24px;
}
.hp-cta-contact {
    display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
    font-family: var(--font-kr); font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.4);
}
.hp-cta-contact span { display: flex; align-items: center; gap: 6px; }
.hp-cta-contact i { width: 14px; height: 14px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .hp-tour-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-why-card:nth-child(2)::after { display: none; }
    .hp-exp-grid { grid-auto-rows: 200px; }
}
@media (max-width: 768px) {
    .page-home { overflow-x: clip; }
    .hp-container { padding: 0 22px; }
    .hp-custom-feature { grid-template-columns: 1fr; gap: 28px; }
    .hp-custom-image { aspect-ratio: 4/3; }
    .hp-client-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hp-client-heading h2 br { display: none; }
    .hp-client-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 430px 300px 300px;
        min-height: 0;
    }
    .hp-client-frame-main { grid-row: auto; }
    .hp-client-note {
        flex-direction: column;
        align-items: flex-start;
    }
    .hp-rental-layout { grid-template-columns: 1fr; gap: 28px; }
    .hp-rental-features { grid-template-columns: 1fr; }
    .hp-tour-grid { grid-template-columns: 1fr; }
    .hp-cta-channels { flex-direction: column; align-items: center; }
    .hp-why-grid { grid-template-columns: 1fr; border: none; }
    .hp-why-card { padding: 24px 4px; border-bottom: 1px solid var(--kn-line); }
    .hp-why-card::after { display: none; }
    .hp-review-grid { grid-template-columns: 1fr; }
    .hp-exp-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
    .hp-exp-wide { grid-column: span 2; }
    .hp-stats { gap: 32px; flex-wrap: wrap; }
    .hp-custom-banner { flex-direction: column; text-align: center; }
    .hp-scroll-hint { display: none; }
    .hp-hero-content { padding: 0 22px; }
}
@media (max-width: 480px) {
    .hp-exp-grid { grid-template-columns: 1fr; }
    .hp-exp-wide { grid-column: span 1; }
    .hp-why-grid { grid-template-columns: 1fr; }
    .hp-stats { flex-direction: column; gap: 24px; }
}

/* ================================================================
   SPECIALS — 홈 스페셜/프로모션 섹션 (specials.js가 항목 있을 때만 표시)
   ================================================================ */
.hp-specials { background: var(--kn-ivory, #FBFAF7); }
.hp-specials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px; max-width: 1080px; margin: 0 auto;
}
.hp-specials-grid.single { max-width: 720px; }
.hp-special-card {
    display: flex; flex-direction: column; background: #fff;
    border: 1px solid var(--kn-line, #EAE4D8); border-radius: 18px; overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
}
.hp-special-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(22,17,12,0.18); }
.hp-special-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--kn-sand-100, #F0EBDF); }
.hp-special-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.hp-special-card:hover .hp-special-img img { transform: scale(1.06); }
.hp-special-img-ph { width: 100%; height: 100%;
    background: linear-gradient(135deg, #E8DFCE, #D8C9AE); }
.hp-special-badge {
    position: absolute; top: 14px; left: 14px;
    font-family: var(--font-body, sans-serif); font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; padding: 6px 12px; border-radius: 999px;
    background: var(--kn-amber, #B8702A); color: #fff;
}
.hp-special-badge.urgent { background: #B3402A; }
.hp-special-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hp-special-body h3 {
    font-family: var(--font-display-kr, serif); font-size: 19px; font-weight: 500;
    color: var(--kn-ink, #16110C); line-height: 1.35; margin: 0;
}
.hp-special-sub { font-size: 13.5px; color: var(--kn-sand-600, #8A8069); line-height: 1.55; margin: 0; }
.hp-special-foot {
    margin-top: auto; padding-top: 14px; border-top: 1px solid var(--kn-line, #EAE4D8);
    display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.hp-special-meta { font-size: 12px; color: var(--kn-sand-500, #A69B84); letter-spacing: 0.02em; }
.hp-special-price { text-align: right; white-space: nowrap; }
.hp-special-price s { font-size: 12.5px; color: var(--kn-sand-400, #C0B7A2); margin-right: 6px; }
.hp-special-price b { font-size: 17px; color: var(--kn-amber, #B8702A); font-weight: 700; }
.hp-special-price small { font-size: 11px; color: var(--kn-sand-500, #A69B84); margin-left: 3px; }
@media (max-width: 768px) {
    .hp-specials-grid { grid-template-columns: 1fr; gap: 18px; }
}
