/*
Theme Name: JELLY POP
Theme URI: https://jellypop.kr
Author: Lee Dev
Description: 방콕 타이마사지 커뮤니티 매거진 테마 - 산뜻한 핑크 & 화이트 디자인
Version: 2.0.0
Text Domain: jelly-pop
*/

/* ============================================
   Design System
   ============================================ */
:root {
    --jp-pink: #FF7BAC;
    --jp-pink-hover: #F0609A;
    --jp-pink-light: #FFF0F5;
    --jp-pink-soft: #FFF8FA;
    --jp-rose: #FFA0BF;
    --jp-blush: #FFE8F0;
    --jp-white: #FFFFFF;
    --jp-bg: #F9FAFB;
    --jp-text: #1A1A2E;
    --jp-text-sub: #3A3A55;
    --jp-text-muted: #8E8EA0;
    --jp-border: #EAEAF0;
    --jp-border-pink: #FFD0E0;
    --jp-shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --jp-shadow: 0 4px 24px rgba(255,123,172,0.1);
    --jp-shadow-lg: 0 12px 40px rgba(255,123,172,0.14);
    --jp-shadow-xl: 0 20px 60px rgba(255,123,172,0.18);

    --jp-font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --jp-font-display: 'Jua', 'Pretendard', sans-serif;

    --jp-radius: 14px;
    --jp-radius-sm: 8px;
    --jp-radius-lg: 20px;
    --jp-radius-xl: 28px;
    --jp-radius-full: 100px;
    --jp-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--jp-font); color: var(--jp-text); background: var(--jp-white); line-height: 1.75; word-break: keep-all; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: all 0.25s var(--jp-ease); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.jp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.jp-container--narrow { max-width: 860px; }

/* ============================================
   Header
   ============================================ */
.jp-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--jp-border);
    transition: box-shadow 0.3s var(--jp-ease);
}
.jp-header.scrolled { box-shadow: var(--jp-shadow); }
.jp-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

/* Logo */
.jp-header__logo {
    display: flex; align-items: center; gap: 3px;
    font-weight: 800; font-size: 1.35rem; color: var(--jp-pink);
    letter-spacing: -0.03em;
}
.jp-header__logo img { height: 36px; width: auto; }
.jp-header__logo-accent {
    display: inline-block; width: 6px; height: 6px;
    background: var(--jp-rose); border-radius: 50%;
    margin-left: 2px; margin-bottom: 8px;
    animation: jp-dot 2.5s ease-in-out infinite;
}
@keyframes jp-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* Nav */
.jp-nav { display: flex; align-items: center; gap: 2px; }
.jp-nav__link {
    padding: 7px 16px; border-radius: var(--jp-radius-sm);
    font-size: 0.92rem; font-weight: 500; color: var(--jp-text-sub);
    transition: all 0.2s var(--jp-ease);
}
.jp-nav__link:hover { color: var(--jp-pink); background: var(--jp-pink-soft); }

/* Mobile Toggle */
.jp-toggle { display: none; background: none; border: none; padding: 8px; position: relative; width: 36px; height: 36px; }
.jp-toggle span { display: block; width: 20px; height: 1.5px; background: var(--jp-text); border-radius: 1px; position: absolute; left: 8px; transition: all 0.25s var(--jp-ease); }
.jp-toggle span:nth-child(1) { top: 11px; }
.jp-toggle span:nth-child(2) { top: 17px; }
.jp-toggle span:nth-child(3) { top: 23px; }
.jp-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.jp-toggle.active span:nth-child(2) { opacity: 0; }
.jp-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ============================================
   Buttons
   ============================================ */
.jp-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 30px; border-radius: var(--jp-radius-full);
    font-size: 0.95rem; font-weight: 700; border: none;
    transition: all 0.25s var(--jp-ease); white-space: nowrap;
}
.jp-btn--fill {
    background: var(--jp-pink); color: var(--jp-white);
    box-shadow: 0 4px 20px rgba(255,123,172,0.3);
}
.jp-btn--fill:hover { background: var(--jp-pink-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,123,172,0.35); }
.jp-btn--line { background: transparent; color: var(--jp-pink); border: 1.5px solid var(--jp-pink); }
.jp-btn--line:hover { background: var(--jp-pink); color: var(--jp-white); }
.jp-btn--soft { background: var(--jp-pink-light); color: var(--jp-pink); }
.jp-btn--soft:hover { background: var(--jp-blush); }
.jp-btn--white { background: var(--jp-white); color: var(--jp-pink); font-weight: 700; }
.jp-btn--white:hover { background: var(--jp-pink-light); transform: translateY(-1px); }
.jp-btn--ghost { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.4); }
.jp-btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }
.jp-btn--sm { padding: 8px 18px; font-size: 0.85rem; }

/* Arrow in button */
.jp-btn .jp-arrow { transition: transform 0.2s var(--jp-ease); }
.jp-btn:hover .jp-arrow { transform: translateX(3px); }

/* ============================================
   SVG Icon System (replaces emojis)
   ============================================ */
.jp-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; flex-shrink: 0;
}
.jp-icon svg { width: 100%; height: 100%; }
.jp-icon--sm { width: 16px; height: 16px; }
.jp-icon--md { width: 24px; height: 24px; }
.jp-icon--lg { width: 32px; height: 32px; }

/* ============================================
   Hero
   ============================================ */
.jp-hero {
    position: relative; padding: 80px 0 64px;
    background: linear-gradient(160deg, #fff 0%, var(--jp-pink-soft) 30%, var(--jp-blush) 70%, var(--jp-pink-light) 100%);
    overflow: hidden;
}
.jp-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,123,172,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(255,107,149,0.05) 0%, transparent 50%);
}
.jp-hero::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
    background: linear-gradient(transparent, var(--jp-white));
}
.jp-hero__inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
    align-items: center; position: relative; z-index: 1;
}
.jp-hero__content { animation: jp-up 0.7s ease-out; }
@keyframes jp-up { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.jp-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 12px;
    background: var(--jp-white); border: 1.5px solid var(--jp-border-pink);
    border-radius: var(--jp-radius-full);
    font-size: 0.82rem; font-weight: 700; color: var(--jp-pink);
    margin-bottom: 24px; box-shadow: 0 2px 16px rgba(255,123,172,0.1);
}
.jp-hero__badge-dot {
    width: 6px; height: 6px; background: var(--jp-pink);
    border-radius: 50%; animation: jp-dot 1.5s ease-in-out infinite;
}

.jp-hero__title {
    font-family: var(--jp-font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900; line-height: 1.2; letter-spacing: -0.03em;
    color: var(--jp-text); margin-bottom: 18px;
}
.jp-hero__title em {
    font-style: normal; color: var(--jp-pink);
    text-shadow: 0 2px 20px rgba(255,123,172,0.2);
}
.jp-hero__title-sub {
    display: block; font-family: var(--jp-font);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600; color: var(--jp-text-sub);
    letter-spacing: -0.01em; margin-top: 4px;
}

.jp-hero__desc {
    font-size: 1.05rem; color: var(--jp-text-sub);
    line-height: 1.8; margin-bottom: 32px; max-width: 480px;
}
.jp-hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.jp-hero__image { position: relative; animation: jp-up 0.7s ease-out 0.15s both; }
.jp-hero__image img,
.jp-hero__image-placeholder {
    width: 100%; border-radius: var(--jp-radius-xl);
    box-shadow: var(--jp-shadow-xl); aspect-ratio: 4/3; object-fit: cover;
}
.jp-hero__image-placeholder {
    background: linear-gradient(135deg, var(--jp-pink-light) 0%, var(--jp-blush) 40%, var(--jp-rose) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--jp-pink); font-size: 0.95rem; font-weight: 600;
}
.jp-hero__image::before {
    content: ''; position: absolute; top: -10px; right: -10px;
    width: 100%; height: 100%;
    border: 2px solid var(--jp-rose); border-radius: var(--jp-radius-xl); z-index: -1;
    opacity: 0.5;
}

/* ============================================
   Sections
   ============================================ */
.jp-section { padding: 72px 0; }
.jp-section--alt { background: var(--jp-bg); }
.jp-section--pink { background: var(--jp-pink-soft); }

.jp-section__head { text-align: center; margin-bottom: 44px; }
.jp-section__tag {
    display: inline-block; font-size: 0.82rem; font-weight: 800;
    letter-spacing: 0.06em; color: var(--jp-pink);
    padding: 5px 16px; background: var(--jp-pink-light);
    border-radius: var(--jp-radius-full); margin-bottom: 14px;
}
.jp-section__title {
    font-family: var(--jp-font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900; color: var(--jp-text); letter-spacing: -0.02em;
}
.jp-section__sub { font-size: 1rem; color: var(--jp-text-muted); margin-top: 10px; }

/* More link under section */
.jp-section__more { text-align: center; margin-top: 28px; }

/* ============================================
   About
   ============================================ */
.jp-about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.jp-about__visual { border-radius: var(--jp-radius-lg); overflow: hidden; box-shadow: var(--jp-shadow-lg); }
.jp-about__visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.jp-about__visual-ph {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--jp-pink-light), var(--jp-blush));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--jp-pink); font-weight: 500;
}
.jp-about__body h2 { font-family: var(--jp-font-display); font-size: 2rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
.jp-about__body p { font-size: 0.98rem; color: var(--jp-text-sub); line-height: 1.85; margin-bottom: 10px; }

/* Features */
.jp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.jp-feat {
    text-align: center; padding: 22px 14px;
    background: var(--jp-white); border-radius: var(--jp-radius);
    border: 1px solid var(--jp-border); transition: all 0.25s var(--jp-ease);
}
.jp-feat:hover { border-color: var(--jp-pink); box-shadow: var(--jp-shadow); transform: translateY(-2px); }
.jp-feat__icon {
    width: 44px; height: 44px; margin: 0 auto 10px;
    background: var(--jp-pink-light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.jp-feat__icon svg { width: 22px; height: 22px; stroke: var(--jp-pink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.jp-feat__name { font-size: 0.88rem; font-weight: 700; color: var(--jp-text); margin-bottom: 3px; }
.jp-feat__desc { font-size: 0.78rem; color: var(--jp-text-muted); }

/* ============================================
   Card Grid
   ============================================ */
.jp-grid { display: grid; gap: 20px; }
.jp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.jp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.jp-grid--4 { grid-template-columns: repeat(4, 1fr); }

.jp-card {
    background: var(--jp-white); border-radius: var(--jp-radius);
    overflow: hidden; border: 1px solid var(--jp-border);
    transition: all 0.3s var(--jp-ease); display: flex; flex-direction: column;
}
.jp-card:hover { transform: translateY(-3px); box-shadow: var(--jp-shadow-lg); border-color: var(--jp-border-pink); }

.jp-card__thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--jp-pink-light); }
.jp-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--jp-ease); }
.jp-card:hover .jp-card__thumb img { transform: scale(1.04); }
.jp-card__thumb-ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--jp-pink-light), var(--jp-blush));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; color: var(--jp-rose); font-weight: 500;
}
.jp-card__cat {
    position: absolute; top: 10px; left: 10px;
    padding: 3px 10px; background: var(--jp-pink); color: var(--jp-white);
    font-size: 0.72rem; font-weight: 700; border-radius: var(--jp-radius-full);
    letter-spacing: 0.01em;
}

.jp-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.jp-card__title {
    font-size: 1.02rem; font-weight: 800; line-height: 1.5;
    color: var(--jp-text); margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.jp-card__title a:hover { color: var(--jp-pink); }
.jp-card__excerpt {
    font-size: 0.86rem; color: var(--jp-text-muted); line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 14px; flex: 1;
}
.jp-card__foot {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.78rem; color: var(--jp-text-muted);
    padding-top: 12px; border-top: 1px solid var(--jp-border);
}
.jp-card__date { display: flex; align-items: center; gap: 5px; }
.jp-card__date svg { width: 13px; height: 13px; stroke: var(--jp-text-muted); fill: none; stroke-width: 1.8; }
.jp-card__more {
    color: var(--jp-pink); font-weight: 600;
    display: flex; align-items: center; gap: 3px;
}
.jp-card__more svg { width: 14px; height: 14px; stroke: var(--jp-pink); fill: none; stroke-width: 2; transition: transform 0.2s var(--jp-ease); }
.jp-card:hover .jp-card__more svg { transform: translateX(3px); }

/* ============================================
   CTA
   ============================================ */
.jp-cta {
    text-align: center; padding: 64px 40px;
    background: linear-gradient(135deg, var(--jp-pink) 0%, #E8508A 50%, #C0306A 100%);
    border-radius: var(--jp-radius-xl); color: var(--jp-white);
    position: relative; overflow: hidden;
}
.jp-cta::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 70%; height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 50%;
}
.jp-cta::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(255,107,149,0.15) 0%, transparent 50%);
    border-radius: 50%;
}
.jp-cta h2 {
    font-family: var(--jp-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900;
    margin-bottom: 12px; position: relative; letter-spacing: -0.02em;
}
.jp-cta p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; position: relative; }
.jp-cta__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ============================================
   Footer
   ============================================ */
.jp-footer { background: #1A1A2E; color: rgba(255,255,255,0.6); padding: 52px 0 28px; }
.jp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.jp-footer__brand { font-weight: 800; font-size: 1.25rem; color: var(--jp-pink); margin-bottom: 10px; }
.jp-footer__desc { font-size: 0.88rem; line-height: 1.7; }
.jp-footer__heading { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.05em; margin-bottom: 14px; }
.jp-footer__links a { display: block; padding: 3px 0; font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: all 0.2s var(--jp-ease); }
.jp-footer__links a:hover { color: var(--jp-pink); padding-left: 3px; }
.jp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.jp-footer__sns { display: flex; gap: 8px; }
.jp-footer__sns a {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border-radius: 9px;
    transition: all 0.2s var(--jp-ease);
}
.jp-footer__sns a:hover { background: var(--jp-pink); }
.jp-footer__sns a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.jp-footer__sns a:hover svg { fill: #fff; }

/* ============================================
   Single Post
   ============================================ */
.jp-single { padding: 44px 0 72px; }
.jp-single__head { text-align: center; margin-bottom: 36px; }
.jp-single__cat { display: inline-block; padding: 3px 12px; background: var(--jp-pink-light); color: var(--jp-pink); font-size: 0.8rem; font-weight: 700; border-radius: var(--jp-radius-full); margin-bottom: 14px; }
.jp-single__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.35; letter-spacing: -0.03em; margin-bottom: 14px; }
.jp-single__meta { font-size: 0.88rem; color: var(--jp-text-muted); display: flex; justify-content: center; gap: 16px; }
.jp-single__meta svg { width: 14px; height: 14px; stroke: var(--jp-text-muted); fill: none; stroke-width: 1.8; margin-right: 4px; vertical-align: -2px; }
.jp-single__featured { margin-bottom: 36px; border-radius: var(--jp-radius-lg); overflow: hidden; box-shadow: var(--jp-shadow); }
.jp-single__featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.jp-single__content { font-size: 1.02rem; line-height: 1.9; }
.jp-single__content p { margin-bottom: 1.4em; }
.jp-single__content h2 { font-size: 1.4rem; font-weight: 700; margin: 2em 0 0.7em; padding-left: 14px; border-left: 3px solid var(--jp-pink); }
.jp-single__content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.6em 0 0.6em; }
.jp-single__content img { border-radius: var(--jp-radius); margin: 1.8em 0; }
.jp-single__content blockquote {
    padding: 18px 22px; background: var(--jp-pink-soft);
    border-left: 3px solid var(--jp-pink); border-radius: 0 var(--jp-radius-sm) var(--jp-radius-sm) 0;
    margin: 1.8em 0; font-style: italic; color: var(--jp-text-sub);
}
.jp-single__content ul li { list-style: disc; margin-left: 20px; margin-bottom: 0.4em; }
.jp-single__content ol li { list-style: decimal; margin-left: 20px; margin-bottom: 0.4em; }

.jp-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--jp-border); }
.jp-post-nav__item { padding: 18px; background: var(--jp-bg); border-radius: var(--jp-radius); transition: all 0.2s var(--jp-ease); }
.jp-post-nav__item:hover { background: var(--jp-pink-soft); }
.jp-post-nav__label { font-size: 0.78rem; color: var(--jp-text-muted); margin-bottom: 5px; }
.jp-post-nav__title { font-size: 0.92rem; font-weight: 600; }

/* Tags */
.jp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 36px; }
.jp-tag { padding: 5px 12px; background: var(--jp-pink-soft); color: var(--jp-pink); border-radius: var(--jp-radius-full); font-size: 0.82rem; font-weight: 600; }
.jp-tag:hover { background: var(--jp-pink-light); }

/* ============================================
   Archive
   ============================================ */
.jp-archive__head { padding: 44px 0 28px; text-align: center; }
.jp-archive__title { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.jp-archive__desc { font-size: 0.95rem; color: var(--jp-text-sub); }

/* Pagination */
.jp-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 44px; }
.jp-pagination a, .jp-pagination span {
    display: flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 10px;
    border-radius: var(--jp-radius-sm); font-size: 0.88rem; font-weight: 600;
    border: 1px solid var(--jp-border); transition: all 0.2s var(--jp-ease);
}
.jp-pagination a:hover { border-color: var(--jp-pink); color: var(--jp-pink); }
.jp-pagination .current { background: var(--jp-pink); color: var(--jp-white); border-color: var(--jp-pink); }

/* ============================================
   Page
   ============================================ */
.jp-page { padding: 44px 0 72px; }
.jp-page__title { font-size: 1.8rem; font-weight: 800; margin-bottom: 28px; letter-spacing: -0.02em; }
.jp-page__content { font-size: 1.02rem; line-height: 1.9; }
.jp-page__content p { margin-bottom: 1.4em; }

/* ============================================
   Floating Contact
   ============================================ */
.jp-float { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 8px; }
.jp-float__btn {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
    transition: all 0.25s var(--jp-ease);
}
.jp-float__btn:hover { transform: scale(1.08); box-shadow: 0 5px 18px rgba(0,0,0,0.16); }
.jp-float__btn--line { background: #06C755; }
.jp-float__btn--tg { background: #2AABEE; }
.jp-float__btn--kakao { background: #FEE500; }
.jp-float__btn svg { width: 22px; height: 22px; }

/* ============================================
   Scroll Reveal
   ============================================ */
.jp-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.jp-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .jp-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .jp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .jp-header__inner { height: 58px; }
    .jp-nav {
        display: none; position: fixed; top: 58px; left: 0; right: 0; bottom: 0;
        background: var(--jp-white); flex-direction: column; padding: 20px;
        gap: 2px; z-index: 999; overflow-y: auto;
    }
    .jp-nav.active { display: flex; }
    .jp-nav__link { padding: 13px 18px; font-size: 1rem; }
    .jp-toggle { display: block; }
    .jp-hero__inner, .jp-about { grid-template-columns: 1fr; gap: 28px; }
    .jp-hero { padding: 40px 0; }
    .jp-section { padding: 48px 0; }
    .jp-grid--2, .jp-grid--3, .jp-grid--4 { grid-template-columns: 1fr; }
    .jp-features { grid-template-columns: 1fr; }
    .jp-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .jp-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
    .jp-cta { padding: 40px 20px; border-radius: var(--jp-radius); }
    .jp-post-nav { grid-template-columns: 1fr; }
}

/* ============================================
   WordPress Core
   ============================================ */
.alignleft { float: left; margin: 0 1.4em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.4em; }
.aligncenter { display: block; margin: 1.4em auto; }
.wp-caption-text { font-size: 0.84rem; color: var(--jp-text-muted); text-align: center; padding: 6px 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
