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

:root {
    /* Midnight emerald + rose gold + ivory — 2026 luxury hotel palette */
    --bg: #0c1814;
    --bg-soft: #12211c;
    --bg-card: #162c25;
    --bg-elevated: #1b3a30;
    --border: #22443a;
    --border-strong: #3a6454;

    --text: #f4ede0;              /* ivory */
    --text-dim: #b8a994;
    --text-mute: #7a6e5c;
    --text-dark: #0c1814;

    --rose: #d4a574;              /* rose gold */
    --rose-bright: #e8c096;
    --rose-deep: #a07844;
    --rose-soft: rgba(212, 165, 116, 0.1);

    --emerald: #1f5d4a;
    --cream: #f4ede0;

    --call: #e06c77;
    --call-deep: #b84c57;

    --gradient-rose: linear-gradient(135deg, #e8c096 0%, #d4a574 45%, #a07844 100%);
    --gradient-dark: linear-gradient(180deg, #0c1814 0%, #081512 100%);
    --gradient-call: linear-gradient(135deg, #e8838d 0%, #d4636f 50%, #b84c57 100%);

    --shadow-rose: 0 16px 50px -16px rgba(212, 165, 116, 0.35);
    --shadow-deep: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
    --shadow-call: 0 14px 36px -8px rgba(224, 108, 119, 0.45);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.005em;
}
@media (max-width: 1024px) {
    body { padding-bottom: 90px; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

/* Subtle noise/grain overlay for luxury texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0 0.55 0 0 0 0.08 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
    opacity: 0.55;
    mix-blend-mode: overlay;
}

/* ===== Top Bar ===== */
.top-bar {
    background: #050c0a;
    color: var(--text-dim);
    font-size: 12.5px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.02em;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: var(--rose);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 24, 20, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    flex-shrink: 0;
}
.logo > div { display: flex; flex-direction: column; line-height: 1.2; }
.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    box-shadow: var(--shadow-rose);
}
.logo-text {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}
.logo-sub {
    font-size: 9.5px;
    color: var(--rose);
    letter-spacing: 0.35em;
    font-weight: 600;
    margin-top: 3px;
}
.header-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}
.header-nav a {
    font-size: 13.5px;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.03em;
}
.header-nav a:hover { color: var(--rose); }
.header-cta {
    padding: 11px 22px;
    border-radius: 999px;
    background: transparent;
    color: var(--rose);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid var(--rose);
    transition: all 0.25s;
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--rose);
    color: var(--bg);
}

/* ===== Typography Helpers ===== */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--rose);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}
.eyebrow::before {
    content: '— ';
    color: var(--rose);
    opacity: 0.6;
}
.serif {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.serif-italic {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--rose);
    letter-spacing: 0.01em;
}

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
}
.section-head h2 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 18px;
}
.section-head p {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.9;
    font-weight: 400;
}

/* ===== HERO (Parallax) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 24px 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background-color: var(--bg);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #081512;
    background-image: url('img/main.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 0;
    filter: brightness(0.7) saturate(1.05);
    transform: translateZ(0);
    will-change: transform;
}
@media (max-width: 768px) {
    .hero-bg {
        background-size: cover;
        background-position: center top;
    }
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212, 165, 116, 0.15), transparent 70%),
        linear-gradient(180deg, rgba(12, 24, 20, 0.6) 0%, rgba(12, 24, 20, 0.9) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--rose);
    color: var(--rose);
    font-size: 11px;
    letter-spacing: 0.35em;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 36px;
}
.hero-badge::before, .hero-badge::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
}
.hero-title {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
}
.hero-title .line-italic {
    font-style: italic;
    color: var(--rose);
    font-weight: 400;
}
.hero-divider {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--rose);
    margin: 0 auto 28px;
    opacity: 0.7;
}
.hero-sub {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--text-dim);
    margin-bottom: 44px;
    line-height: 1.9;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.hero-sub strong { color: var(--rose-bright); font-weight: 600; letter-spacing: 0.02em; }

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: var(--gradient-call);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-call);
    position: relative;
    isolation: isolate;
    letter-spacing: 0.01em;
}
.btn-call::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(224, 108, 119, 0.5);
    animation: pulse-ring 2.4s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(224, 108, 119, 0.5); }
    80%, 100% { box-shadow: 0 0 0 14px rgba(224, 108, 119, 0); }
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -8px rgba(224, 108, 119, 0.55); }
.btn-call-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.btn-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.btn-call-text em {
    font-style: normal;
    font-size: 10.5px;
    font-weight: 500;
    opacity: 0.92;
    letter-spacing: 0.08em;
}
.btn-call-text strong {
    font-family: 'Playfair Display', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.01em;
}
.btn-call-lg { padding: 22px 40px; }
.btn-call-lg .btn-call-icon { width: 46px; height: 46px; font-size: 22px; }
.btn-call-lg .btn-call-text strong { font-size: 22px; }
.btn-call-sm { padding: 13px 20px; }
.btn-call-sm .btn-call-icon { width: 32px; height: 32px; font-size: 15px; }
.btn-call-sm .btn-call-text em { font-size: 10px; }
.btn-call-sm .btn-call-text strong { font-size: 15px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--bg);
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-meta > div { display: flex; flex-direction: column; align-items: center; }
.hero-meta strong {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--rose);
    line-height: 1;
    letter-spacing: -0.01em;
}
.hero-meta span {
    font-size: 11px;
    color: var(--text-mute);
    margin-top: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.hero-meta .divider { width: 1px; height: 42px; background: var(--border); }

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--rose);
    font-size: 10px;
    letter-spacing: 0.3em;
    font-weight: 600;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: scroll-bounce 2.5s ease-in-out infinite;
}
.scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: var(--rose);
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===== PARALLAX SECTION (fullscreen image band between sections) ===== */
.parallax {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 24, 20, 0.7), rgba(12, 24, 20, 0.4) 50%, rgba(12, 24, 20, 0.7));
}
.parallax-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    max-width: 900px;
    padding: 0 24px;
}
.parallax h3 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.parallax h3 em { font-style: italic; color: var(--rose-bright); }
.parallax p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about { padding: 140px 0; background: var(--bg); position: relative; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.info-card {
    background: transparent;
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: all 0.4s;
    position: relative;
}
.info-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.4s ease-out;
}
.info-card:hover {
    background: var(--bg-soft);
    border-color: var(--rose);
    transform: translateY(-2px);
}
.info-card:hover::after { width: 100%; }
.info-icon {
    font-size: 32px;
    margin-bottom: 22px;
    display: inline-block;
    filter: grayscale(0.2);
}
.info-card h3 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.info-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

/* ===== PRICE (2-tier luxury) ===== */
.price { padding: 140px 0; background: var(--bg-soft); position: relative; }
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 56px 44px;
    position: relative;
    transition: all 0.4s;
    text-align: center;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient-rose);
    transform: translateX(-50%);
    transition: width 0.4s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--rose); }
.price-card:hover::before { width: 80%; }
.price-card.featured {
    background: linear-gradient(180deg, var(--bg-card), var(--bg));
    border-color: var(--rose);
    box-shadow: var(--shadow-rose);
}
.price-card.featured::before { width: 80%; }
.price-label {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 12px;
}
.price-ko {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.price-amount-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.price-amount-wrap .currency {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--rose);
    font-weight: 400;
}
.price-amount-wrap .amount {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 58px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}
.price-unit {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.price-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
    padding: 0 8px;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    text-align: left;
}
.price-features li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: var(--text-dim);
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 16px; height: 1px;
    background: var(--rose);
}
.price-cta {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--rose);
    border: 1px solid var(--rose);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: all 0.25s;
}
.price-cta:hover { background: var(--rose); color: var(--bg); }
.price-card.featured .price-cta { background: var(--gradient-rose); color: var(--bg); border-color: transparent; }
.price-card.featured .price-cta:hover { filter: brightness(1.1); }
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--gradient-rose);
    color: var(--bg);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    border-radius: 999px;
}
.price-note {
    text-align: center;
    color: var(--text-mute);
    font-size: 13px;
    margin-top: 36px;
    line-height: 1.8;
    font-style: italic;
}

/* ===== GALLERY ===== */
.gallery { padding: 140px 0; background: var(--bg); }
.carousel {
    overflow: hidden;
    padding: 16px 0;
    margin-top: 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 50s linear infinite;
    width: max-content;
}
.carousel.reverse .carousel-track { animation: scroll-reverse 50s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-reverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.carousel-item {
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s;
    filter: brightness(0.9) saturate(1.05);
}
.carousel-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.15); }
.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(12, 24, 20, 0.85));
}
.carousel-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--rose);
    text-transform: uppercase;
}

/* ===== USAGE 6-STEP ===== */
.usage { padding: 140px 0; background: var(--bg-soft); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.step {
    padding: 44px 36px;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.4s;
    position: relative;
}
.step:hover {
    border-color: var(--rose);
    transform: translateY(-3px);
    background: var(--bg-card);
}
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 400;
    color: var(--rose);
    line-height: 1;
    display: block;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.9;
}
.step h3 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    color: var(--text);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.step p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.85;
}

/* ===== EVENTS ===== */
.events { padding: 140px 0; background: var(--bg); }
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.event-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 44px 36px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.event-card:hover {
    border-color: var(--rose);
    transform: translateY(-3px);
}
.event-num {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.85;
}
.event-card h3 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.event-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 24px;
}
.event-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: gap 0.3s;
}
.event-link:hover { gap: 16px; }

/* ===== HOURS ===== */
.hours { padding: 140px 0; background: var(--bg-soft); }
.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.hours-card {
    padding: 56px 44px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}
.hours-card:hover { border-color: var(--rose); }
.hours-card h2 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hours-time {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--rose);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.hours-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.85;
}
.hours-card .address {
    color: var(--rose);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.hours-line { height: 1px; background: var(--border); margin: 32px 0; }
.hours-detail { display: flex; flex-direction: column; gap: 14px; }
.hours-detail > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}
.hours-detail > div:last-child { border-bottom: none; }
.hours-detail span { color: var(--text-dim); font-size: 14px; font-weight: 500; }
.hours-detail strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* ===== REGIONS ===== */
.regions { padding: 140px 0; background: var(--bg); }
.region-block {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 44px;
    margin-bottom: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.3s;
}
.region-block:hover { border-color: var(--rose); }
.region-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}
.region-head h3 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.region-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 12px var(--rose);
}
.region-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--rose);
    letter-spacing: 0.25em;
    padding: 6px 16px;
    border: 1px solid var(--rose);
    border-radius: 999px;
}
.region-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.region-buttons.centered { justify-content: center; }
.btn-region {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.btn-region:hover {
    background: var(--rose);
    color: var(--bg);
    border-color: var(--rose);
    transform: translateY(-2px);
}
.btn-region-all {
    background: var(--rose);
    color: var(--bg);
    border-color: var(--rose);
}

/* ===== FAQ ===== */
.faq { padding: 140px 0; background: var(--bg-soft); }
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-list details {
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
    overflow: hidden;
}
.faq-list details[open] { border-color: var(--rose); }
.faq-list summary {
    cursor: pointer;
    padding: 26px 32px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    letter-spacing: -0.005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    color: var(--rose);
    font-size: 28px;
    font-weight: 200;
    line-height: 1;
    transition: transform 0.4s;
    flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(135deg); }
.faq-list details p {
    padding: 0 32px 28px;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.9;
}

/* ===== FINAL CTA (parallax) ===== */
.final-cta {
    position: relative;
    padding: 140px 24px;
    background-image: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?auto=format&fit=crop&w=2400&q=85');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 24, 20, 0.85), rgba(12, 24, 20, 0.95));
}
.final-cta > .container { max-width: 800px; }
.final-cta .eyebrow { color: var(--rose-bright); }
.final-cta h2 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    color: var(--cream);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.final-cta h2 em { font-style: italic; color: var(--rose-bright); }
.final-cta p { color: var(--text-dim); margin-bottom: 44px; font-size: 16px; line-height: 1.9; }

/* ===== REGION PAGE HERO ===== */
.region-hero {
    position: relative;
    min-height: 680px;
    padding: 80px 24px 80px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg);
}
.region-hero-bg {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3) saturate(1.1);
    z-index: 0;
}
.region-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 165, 116, 0.15), transparent 70%),
        linear-gradient(180deg, rgba(12, 24, 20, 0.55), rgba(12, 24, 20, 0.92));
}
.region-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.region-hero h1 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: clamp(48px, 8vw, 104px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 24px;
}
.region-hero p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 36px;
    line-height: 1.85;
}
.region-hero p strong { color: var(--rose-bright); font-weight: 600; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-mute);
    margin-bottom: 32px;
    text-transform: uppercase;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { opacity: 0.4; }
.breadcrumb em { font-style: normal; color: var(--rose); }

/* ===== SHOPS ===== */
.shops { padding: 140px 0; background: var(--bg); }
.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.shop {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}
.shop:hover {
    transform: translateY(-6px);
    border-color: var(--rose);
    box-shadow: var(--shadow-deep);
}
.shop-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-card);
}
.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: brightness(0.95);
}
.shop:hover .shop-image img { transform: scale(1.08); filter: brightness(1); }
.shop-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(12, 24, 20, 0.6));
}
.shop-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 14px;
    background: var(--bg);
    border: 1px solid var(--rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--rose);
}
.shop-body { padding: 32px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.shop-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.shop-chip {
    padding: 4px 12px;
    background: transparent;
    border: 1px solid var(--border-strong);
    font-size: 11px;
    font-weight: 600;
    color: var(--rose);
    letter-spacing: 0.1em;
}
.shop h3 {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.shop-desc {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.8;
    flex-grow: 1;
}
.shop .btn-call { width: 100%; justify-content: center; }

.empty-box {
    text-align: center;
    padding: 100px 40px;
    background: var(--bg-soft);
    border: 1px dashed var(--border-strong);
    max-width: 680px;
    margin: 0 auto;
}
.empty-emoji { font-size: 54px; margin-bottom: 20px; }
.empty { color: var(--text); font-size: 20px; font-weight: 500; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.empty-sub { color: var(--text-mute); font-size: 14px; margin-bottom: 32px; }

.other-regions { padding: 100px 0 140px; background: var(--bg-soft); }

/* ===== Footer ===== */
.site-footer {
    background: #050c0a;
    padding: 72px 28px 40px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.footer-brand {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--rose);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.footer-desc { color: var(--text-dim); font-size: 14px; }
.footer-info { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-info p:first-child { color: var(--rose); font-weight: 600; font-family: 'Playfair Display', serif; }
.footer-bottom { text-align: center; color: var(--text-mute); font-size: 12.5px; }
.footer-note { margin-top: 12px; font-size: 11.5px; opacity: 0.7; letter-spacing: 0.02em; }

/* ===== FLOATING CALL ===== */
.floating-call {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--gradient-call);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-call);
    max-width: calc(100% - 32px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) { .floating-call { display: flex; } }
.fc-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.fc-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.fc-text em { font-style: normal; font-size: 11px; opacity: 0.92; letter-spacing: 0.05em; }
.fc-text strong { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-top: 1px; }
.fc-arrow { margin-left: 6px; font-size: 18px; }

/* ===== 404 ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--bg);
}
.error-inner { text-align: center; }
.error-inner h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 180px;
    font-weight: 400;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 24px;
}
.error-inner p { color: var(--text-dim); font-size: 18px; margin-bottom: 40px; }

/* ===== Parallax fallback (mobile/iOS) ===== */
@media (hover: none), (max-width: 900px) {
    .hero-bg,
    .parallax,
    .region-hero-bg,
    .final-cta {
        background-attachment: scroll;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hours-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; max-width: 480px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body { padding-bottom: 96px; }
    .header-nav { display: none; }
    .header-cta { padding: 9px 14px; font-size: 11px; }
    .logo-mark { width: 38px; height: 38px; font-size: 17px; }
    .logo-text { font-size: 15px; }

    .hero { min-height: 90vh; padding: 60px 20px 40px; }
    .hero-meta { gap: 28px; }
    .hero-meta strong { font-size: 32px; }
    .hero-meta .divider { display: none; }

    .parallax { height: 360px; }

    .about, .price, .gallery, .usage, .events, .hours, .regions, .faq, .shops, .other-regions { padding: 80px 0; }
    .final-cta { padding: 80px 20px; }
    .section-head { margin-bottom: 48px; }

    .steps-grid { grid-template-columns: 1fr; }
    .info-card, .step, .event-card { padding: 32px 26px; }
    .price-card { padding: 44px 32px; }
    .price-amount-wrap .amount { font-size: 48px; }

    .carousel-item { width: 240px; height: 320px; }

    .hours-card { padding: 40px 30px; }
    .hours-time { font-size: 30px; }

    .region-block { padding: 28px; }
    .region-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .region-head h3 { font-size: 22px; }

    .shop-list { grid-template-columns: 1fr; }

    .region-hero { min-height: 540px; padding: 60px 20px 50px; }

    .footer-top { flex-direction: column; gap: 24px; }

    .floating-call { bottom: 12px; padding: 12px 18px; }
    .fc-icon { width: 32px; height: 32px; font-size: 16px; }
    .fc-text strong { font-size: 15px; }
    .fc-text em { font-size: 10px; }

    .error-inner h1 { font-size: 120px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 44px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas > a { width: 100%; justify-content: center; }
    .carousel-item { width: 200px; height: 280px; }
    .floating-call { padding: 10px 16px; gap: 8px; }
    .fc-arrow { display: none; }
}
