/* ===== VARIABLES ===== */
:root {
    --green-dark: #1B4332;
    --green-primary: #2D6A4F;
    --green-medium: #40916C;
    --green-light: #52B788;
    --green-pale: #D8F3DC;
    --orange: #F4A261;
    --orange-dark: #E76F51;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.7;
    font-size: 16px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }

/* ===== HEADER ===== */
header {
    background: var(--green-primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.logo .accent { color: var(--orange); }
.nav-menu { display: flex; gap: 4px; }
.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-weight: 500;
}
.nav-menu a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.nav-menu a.active { background: var(--orange); color: var(--white); }

/* ===== 모바일 햄버거 버튼 (768px 이하에서만 표시) ===== */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.25s ease;
    transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-medium) 100%);
    padding: 80px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 50px;
    background: var(--gray-100);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-weight: 500;
}
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--orange); }
.hero > .container > p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(244,162,97,0.4);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
    display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 32px; font-weight: 800; color: var(--orange); display: block; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.section-title h2 { font-size: 32px; font-weight: 800; color: var(--gray-800); letter-spacing: -0.5px; margin-bottom: 10px; }
.section-title p { font-size: 16px; color: var(--gray-600); }

/* ===== REGION GRID ===== */
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
    display: block;
}
.region-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-light); }
.region-card .icon { font-size: 36px; margin-bottom: 12px; display: block; }
.region-card .name { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.region-card .count { font-size: 13px; color: var(--green-medium); font-weight: 600; }

/* ===== THEME GRID ===== */
.theme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.theme-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.2s;
    display: block;
}
.theme-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.theme-card .icon { font-size: 48px; margin-bottom: 16px; display: block; }
.theme-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gray-800); }
.theme-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ===== CAMPGROUND CARDS ===== */
.campground-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.camp-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.camp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.camp-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--green-medium), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
}
.camp-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.camp-card-body { padding: 20px; }
.camp-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--gray-800); }
.camp-location { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.camp-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.camp-tag {
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}
.camp-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}
.camp-price { font-size: 17px; font-weight: 800; color: var(--green-primary); }
.camp-price span { font-size: 12px; font-weight: 400; color: var(--gray-600); }
.btn-outline {
    border: 1.5px solid var(--green-primary);
    color: var(--green-primary);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}
.btn-outline:hover { background: var(--green-primary); color: var(--white); }

/* ===== TIPS GRID ===== */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tip-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tip-card .icon { font-size: 36px; margin-bottom: 16px; display: block; }
.tip-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.tip-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.tip-card .read-more { display: inline-block; margin-top: 14px; color: var(--green-primary); font-size: 14px; font-weight: 600; }
.tip-card .read-more:hover { color: var(--green-medium); }

/* ===== CTA ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}
.cta-banner h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ===== FOOTER ===== */
footer { background: var(--green-dark); color: rgba(255,255,255,0.7); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 20px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    padding: 56px 0;
    text-align: center;
    color: var(--white);
}
.page-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.8); }

/* ===== FILTER BAR ===== */
.filter-bar {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
}
.filter-label { font-size: 14px; font-weight: 600; color: var(--gray-600); margin-right: 4px; }
.filter-btn {
    padding: 7px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 30px;
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-800);
    font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--green-primary); border-color: var(--green-primary); color: var(--white); }

/* ===== GUIDE ===== */
.guide-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.guide-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--green-pale);
}
.guide-section h3 { font-size: 17px; font-weight: 700; color: var(--green-primary); margin: 20px 0 10px; }
.guide-section p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.guide-section ul { margin-bottom: 14px; }
.guide-section ul li {
    font-size: 15px;
    color: var(--gray-600);
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}
.guide-section ul li:last-child { border-bottom: none; }
.guide-section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green-medium); font-weight: 700; }
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 16px; }
.checklist-box {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 22px;
    border-left: 4px solid var(--green-primary);
}
.checklist-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: var(--gray-800); }
.checklist-box ul li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid var(--gray-300);
}
.checklist-box ul li:last-child { border-bottom: none; }
.checklist-box ul li::before { content: '☐'; position: absolute; left: 0; color: var(--green-primary); }

/* ===== ABOUT ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.about-intro-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--gray-800); line-height: 1.3; }
.about-intro-text p { font-size: 15px; color: var(--gray-600); line-height: 1.9; margin-bottom: 14px; }
.about-intro-visual {
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    border-radius: var(--radius);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.value-card .icon { font-size: 40px; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.contact-info-card { background: var(--green-primary); border-radius: var(--radius); padding: 36px 28px; color: var(--white); }
.contact-info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .icon { font-size: 24px; flex-shrink: 0; }
.contact-item .text h4 { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 4px; font-weight: 600; }
.contact-item .text p { font-size: 15px; color: var(--white); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--gray-800); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--gray-800);
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green-primary); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
    background: var(--green-primary);
    color: var(--white);
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}
.btn-submit:hover { background: var(--green-dark); }

/* ===== PRIVACY ===== */
.privacy-wrap { max-width: 860px; margin: 0 auto; }
.privacy-content { background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-sm); }
.privacy-date { background: var(--green-pale); border-radius: var(--radius-sm); padding: 10px 16px; font-size: 14px; color: var(--green-primary); font-weight: 600; margin-bottom: 32px; display: inline-block; }
.privacy-content h2 { font-size: 20px; font-weight: 700; color: var(--gray-800); margin: 32px 0 12px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.privacy-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.privacy-content p { font-size: 15px; color: var(--gray-600); line-height: 1.9; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; margin-bottom: 12px; list-style: disc; }
.privacy-content ul li { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 6px; }

/* ===== SEASON CARDS ===== */
.season-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.season-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--green-primary);
}
.season-card:nth-child(2) { border-top-color: #E76F51; }
.season-card:nth-child(3) { border-top-color: #F4A261; }
.season-card:nth-child(4) { border-top-color: #74C0FC; }
.season-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--gray-800); }
.season-card ul { margin-bottom: 0; }
.season-card ul li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    line-height: 1.6;
}
.season-card ul li:last-child { border-bottom: none; }
.season-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--green-medium); font-weight: 700; }

/* ===== ETIQUETTE ===== */
.etiquette-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.etiquette-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.etiquette-card .icon { font-size: 40px; margin-bottom: 14px; display: block; }
.etiquette-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.etiquette-card p { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* ===== CAMP REVIEW (EDITORIAL) ===== */
.camp-review {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 40px;
    transition: box-shadow 0.2s;
}
.camp-review:hover { box-shadow: var(--shadow-md); }
.camp-review-header {
    display: grid;
    grid-template-columns: 260px 1fr;
}
.camp-review-img {
    background: linear-gradient(135deg, var(--green-medium), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    min-height: 200px;
    position: relative;
}
.camp-review-meta {
    padding: 24px 28px;
    border-bottom: 1px solid var(--gray-200);
}
.camp-review-meta h2 { font-size: 22px; font-weight: 800; margin: 8px 0 6px; color: var(--gray-800); }
.camp-review-meta h2 a { color: inherit; text-decoration: none; }
.camp-review-meta h2 a:hover { color: var(--green-primary); }
.camp-detail-link { display: inline-block; margin-top: 20px; color: var(--green-primary); font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid var(--green-primary); border-radius: 6px; padding: 8px 18px; transition: background 0.15s, color 0.15s; }
.camp-detail-link:hover { background: var(--green-primary); color: var(--white); }
.camp-review-meta .meta-info { font-size: 14px; color: var(--gray-600); margin-bottom: 10px; }
.camp-review-body { padding: 28px 32px; display: grid; grid-template-columns: 1fr 280px; gap: 32px; }
.camp-editor-section h3 {
    font-size: 16px; font-weight: 700; color: var(--green-primary);
    margin: 22px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--green-pale);
}
.camp-editor-section h3:first-child { margin-top: 0; }
.camp-editor-section p { font-size: 15px; color: var(--gray-600); line-height: 1.9; margin-bottom: 12px; }
.camp-editor-pick-box {
    background: var(--green-pale);
    border-left: 4px solid var(--green-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 18px; margin: 14px 0;
}
.camp-editor-pick-box p { font-size: 14px; color: var(--green-dark); line-height: 1.8; margin: 0; font-style: italic; }
.camp-side-info { display: flex; flex-direction: column; gap: 18px; }
.camp-info-box { background: var(--gray-100); border-radius: var(--radius-sm); padding: 18px; }
.camp-info-box h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-300); }
.camp-info-box ul li { font-size: 13px; color: var(--gray-600); padding: 6px 0; border-bottom: 1px solid var(--gray-200); line-height: 1.6; }
.camp-info-box ul li:last-child { border-bottom: none; }
.camp-info-box ul li strong { color: var(--gray-800); }
.camp-rating-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--gray-200); font-size: 13px; }
.camp-rating-row:last-child { border-bottom: none; }
.camp-rating-row .label { color: var(--gray-600); }
.camp-stars { color: #F4A261; font-size: 13px; letter-spacing: 1px; }
.camp-warning { background: #FFF8E1; border-left: 4px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 12px 16px; margin-top: 14px; }
.camp-warning p { font-size: 13px; color: #7B5800; margin: 0; line-height: 1.7; }

/* ===== EDITORIAL BOXES ===== */
.insight-box {
    background: #EEF2FF;
    border-left: 4px solid #4F46E5;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px; margin: 20px 0;
}
.insight-box .label { font-size: 12px; font-weight: 700; color: #4F46E5; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.insight-box p { font-size: 15px; color: #1E1B4B; line-height: 1.8; margin: 0; }
.opinion-box {
    background: #FFF3E0;
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px; margin: 20px 0;
}
.opinion-box .label { font-size: 12px; font-weight: 700; color: var(--orange-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.opinion-box p { font-size: 15px; color: #7B3D00; line-height: 1.8; margin: 0; }
.mistake-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 20px 0; }
.mistake-card { background: #FFF5F5; border-radius: var(--radius-sm); padding: 20px; border: 1px solid #FED7D7; }
.mistake-card .number { font-size: 32px; font-weight: 800; color: #FEB2B2; line-height: 1; margin-bottom: 8px; }
.mistake-card h4 { font-size: 15px; font-weight: 700; color: #C53030; margin-bottom: 8px; }
.mistake-card p { font-size: 13px; color: #742A2A; line-height: 1.7; margin: 0; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.comparison-table th { background: var(--green-primary); color: white; padding: 12px 16px; text-align: left; font-weight: 700; }
.comparison-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); vertical-align: top; }
.comparison-table tr:nth-child(even) td { background: var(--gray-100); }
.comparison-table td:first-child { font-weight: 600; color: var(--gray-800); width: 130px; }
.good { color: #276749 !important; font-weight: 600 !important; }
.bad { color: #C53030 !important; }
.budget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 20px 0; }
.budget-card { border-radius: var(--radius-sm); padding: 22px; text-align: center; border: 2px solid var(--gray-200); }
.budget-card.budget-low { border-color: #BEE3F8; background: #EBF8FF; }
.budget-card.budget-mid { border-color: var(--green-light); background: var(--green-pale); }
.budget-card.budget-high { border-color: var(--orange); background: #FFF8F0; }
.budget-card .price { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.budget-card.budget-low .price { color: #2B6CB0; }
.budget-card.budget-mid .price { color: var(--green-primary); }
.budget-card.budget-high .price { color: var(--orange-dark); }
.budget-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.budget-card ul { text-align: left; list-style: disc; padding-left: 16px; }
.budget-card ul li { font-size: 13px; color: var(--gray-600); line-height: 1.7; }
.scenario-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 20px 0; }
.scenario-card { background: var(--white); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.scenario-card .situation { font-size: 12px; font-weight: 700; color: var(--green-primary); background: var(--green-pale); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.scenario-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--gray-800); }
.scenario-card p { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
    font-size: 13px;
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; }
.breadcrumb li { color: var(--gray-600); }
.breadcrumb li a { color: var(--green-primary); }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li + li::before { content: '>'; margin-right: 6px; color: var(--gray-300); }

/* ===== POST META ===== */
.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
}
.post-meta-item { font-size: 13px; color: var(--gray-600); }
.post-meta-item strong { color: var(--gray-800); }

/* ===== RELATED CAMPS ===== */
.related-section { margin-top: 48px; padding-top: 40px; border-top: 2px solid var(--gray-200); }
.related-section h3 { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}
.related-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.related-card .tag { font-size: 11px; font-weight: 700; color: var(--green-primary); background: var(--green-pale); padding: 2px 8px; border-radius: 20px; display: inline-block; margin-bottom: 8px; }
.related-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; line-height: 1.4; }
.related-card p { font-size: 12px; color: var(--gray-600); line-height: 1.5; margin: 0; }

/* ===== CAMP LISTING (campgrounds.html index) ===== */
.camp-listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.camp-listing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.camp-listing-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.camp-listing-card .region-badge { font-size: 12px; font-weight: 700; color: var(--green-primary); background: var(--green-pale); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.camp-listing-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.camp-listing-card .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.camp-listing-card .tags span { font-size: 11px; background: var(--gray-100); color: var(--gray-600); padding: 2px 8px; border-radius: 20px; border: 1px solid var(--gray-200); }
.camp-listing-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.camp-listing-card .read-more { font-size: 14px; font-weight: 600; color: var(--green-primary); border-top: 1px solid var(--gray-200); padding-top: 12px; margin-top: auto; }
.camp-listing-card .read-more:hover { color: var(--green-dark); }

/* ===== REGION PAGES ===== */
.region-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.region-intro h2 { font-size: 26px; font-weight: 800; color: var(--gray-800); margin-bottom: 14px; }
.region-intro p { font-size: 16px; color: var(--gray-600); line-height: 1.8; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 16px; border: 1px solid var(--gray-200); overflow: hidden; }
.faq-question { padding: 20px 24px; font-size: 16px; font-weight: 700; color: var(--gray-800); cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; line-height: 1.5; }
.faq-question::after { content: '+'; font-size: 20px; color: var(--green-primary); font-weight: 300; flex-shrink: 0; }
.faq-answer { padding: 0 24px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.8; border-top: 1px solid var(--gray-200); }
.faq-answer p { margin-top: 16px; }
.faq-category { font-size: 12px; font-weight: 700; color: var(--green-primary); background: var(--green-pale); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-top: 24px; margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .campground-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .checklist-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .etiquette-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .camp-listing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 30px; }
    .hero > .container > p { font-size: 15px; }
    .section-title h2 { font-size: 24px; }
    .region-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .tips-grid { grid-template-columns: 1fr; }
    .season-grid { grid-template-columns: 1fr; }
    .etiquette-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .guide-section { padding: 24px; }
    .privacy-content { padding: 24px; }
    .value-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .nav-menu a { font-size: 13px; padding: 6px 10px; }
    .related-grid { grid-template-columns: 1fr; }
    .mistake-grid { grid-template-columns: 1fr; }
    .budget-grid { grid-template-columns: 1fr; }
    .scenario-grid { grid-template-columns: 1fr; }

    /* ===== 모바일 햄버거 메뉴 활성화 ===== */
    .mobile-menu-toggle { display: flex; }

    /* 로고 살짝 축소 */
    .logo { font-size: 18px; white-space: nowrap; }

    /* 모바일 헤더 정렬 */
    .header-inner { gap: 8px; }

    /* nav 접힘 상태 */
    nav.mobile-collapsed .nav-menu { display: none; }

    /* nav 펼침 상태 — 헤더 바로 아래 드롭다운 */
    nav:not(.mobile-collapsed) .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--green-primary);
        padding: 12px 16px 16px;
        box-shadow: 0 6px 14px rgba(0,0,0,0.2);
        z-index: 998;
    }
    nav:not(.mobile-collapsed) .nav-menu a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        white-space: nowrap;
    }
}
