/* ===== 시설 미니 홈페이지 스타일 (v2) ===== */
:root {
    --fh-primary: #2563EB;
    --fh-primary-dark: #1D4ED8;
    --fh-primary-light: #DBEAFE;
    --fh-text: #1E293B;
    --fh-muted: #64748B;
    --fh-border: #E2E8F0;
    --fh-bg: #FFFFFF;
    --fh-bg-alt: #F8FAFC;
    --fh-success: #16A34A;
    --fh-warning: #F59E0B;
    --fh-danger: #EF4444;
    --fh-radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Pretendard Variable', -apple-system, 'Segoe UI', sans-serif;
    color: var(--fh-text);
    background: var(--fh-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a { color: var(--fh-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.fh-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── 섹션 애니메이션 (JS가 실패해도 내용 표시) ─── */
.fh-section { opacity: 1; transform: none; }
.fh-section.fh-animate { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fh-section.fh-animate.fh-visible { opacity: 1; transform: translateY(0); }

/* ─── 네비게이션 ─── */
.fh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: all 0.3s;
}

.fh-nav-scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: var(--fh-border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.fh-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.fh-nav-brand {
    font-size: 17px;
    font-weight: 800;
    color: var(--fh-text);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.fh-nav-links {
    display: flex;
    gap: 24px;
}

.fh-nav-links a {
    color: var(--fh-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.fh-nav-links a:hover { color: var(--fh-primary); text-decoration: none; }

.fh-nav-detail-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--fh-primary) !important;
    background: var(--fh-primary-light);
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s;
    white-space: nowrap;
}

.fh-nav-detail-link:hover {
    background: var(--fh-primary);
    color: white !important;
}

/* ─── 히어로 ─── */
.fh-hero {
    margin-top: 60px;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-color: #1E3A5F;
    position: relative;
}

.fh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: flex-end;
}

.fh-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 48px;
    width: 100%;
    color: white;
}

.fh-hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.fh-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fh-badge-type { background: rgba(255,255,255,0.2); color: white; backdrop-filter: blur(4px); }
.fh-badge-grade { color: white; }
.fh-badge-vacancy { background: var(--fh-success); color: white; }
.fh-grade-a { background: #22C55E; }
.fh-grade-b { background: #3B82F6; }
.fh-grade-c { background: #F59E0B; }
.fh-grade-d { background: #EF4444; }
.fh-grade-e, .fh-grade-none { background: #6B7280; }

.fh-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.fh-hero-address {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 8px;
}

/* ─── 퀵 정보 ─── */
.fh-quick-info {
    margin-top: -32px;
    position: relative;
    z-index: 10;
    padding-bottom: 12px;
}

.fh-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.fh-quick-card {
    background: white;
    border-radius: var(--fh-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.fh-quick-card:hover { transform: translateY(-2px); }

.fh-quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.fh-qi-grade {
    color: white;
    font-weight: 900;
    font-size: 20px;
}

.fh-qi-bed { background: #EFF6FF; }
.fh-qi-year { background: #FEF3C7; }
.fh-qi-cost { background: #ECFDF5; }

.fh-quick-text strong {
    display: block;
    font-size: 12px;
    color: var(--fh-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.fh-quick-text span {
    font-size: 16px;
    font-weight: 700;
    color: var(--fh-text);
}

/* ─── 섹션 ─── */
.fh-section { padding: 60px 0; }
.fh-section-alt { background: var(--fh-bg-alt); }

.fh-section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--fh-text);
    margin-bottom: 28px;
    position: relative;
    padding-left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fh-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--fh-primary);
    border-radius: 2px;
}

.fh-count-badge {
    font-size: 13px;
    font-weight: 700;
    background: var(--fh-primary-light);
    color: var(--fh-primary);
    padding: 2px 10px;
    border-radius: 12px;
}

/* ─── 기본정보 그리드 ─── */
.fh-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.fh-info-item {
    padding: 14px 18px;
    background: var(--fh-bg-alt);
    border-radius: 10px;
    border: 1px solid var(--fh-border);
}

.fh-info-item strong {
    font-size: 12px;
    color: var(--fh-muted);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fh-info-item p { font-size: 15px; font-weight: 600; margin: 0; }
.fh-info-item a { font-weight: 600; }

/* 정원 현황 바 */
.fh-capacity-bar-wrap {
    background: white;
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius);
    padding: 24px;
    margin-bottom: 28px;
}

.fh-capacity-bar-wrap h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fh-capacity-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--fh-muted);
    margin-bottom: 8px;
}

.fh-capacity-info strong { color: var(--fh-text); }

.fh-capacity-bar {
    height: 12px;
    background: #E2E8F0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.fh-capacity-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    transition: width 1s ease;
    min-width: 30px;
}

.fh-capacity-fill span {
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.fh-cap-low { background: linear-gradient(90deg, #22C55E, #4ADE80); }
.fh-cap-mid { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.fh-cap-full { background: linear-gradient(90deg, #EF4444, #F87171); }

.fh-vacancy-msg {
    font-size: 14px;
    color: var(--fh-success);
    font-weight: 600;
}

.fh-vacancy-full { color: var(--fh-danger); }

/* 설명 */
.fh-description { max-width: 800px; }
.fh-description h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.fh-description p { font-size: 15px; line-height: 1.8; color: var(--fh-muted); }

/* ─── 인력 카드 ─── */
.fh-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.fh-staff-card {
    background: white;
    border-radius: var(--fh-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--fh-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fh-staff-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.fh-staff-count {
    font-size: 28px;
    font-weight: 800;
    color: var(--fh-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.fh-staff-count small {
    font-size: 14px;
    font-weight: 600;
    color: var(--fh-muted);
}

.fh-staff-type {
    font-size: 13px;
    font-weight: 600;
    color: var(--fh-text);
    margin-bottom: 4px;
}

.fh-staff-pct {
    font-size: 12px;
    color: var(--fh-muted);
}

.fh-staff-total {
    margin-top: 16px;
    font-size: 14px;
    color: var(--fh-muted);
    text-align: right;
}

.fh-staff-total strong { color: var(--fh-text); }

/* ─── 프로그램 ─── */
.fh-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.fh-program-card {
    background: white;
    border-radius: var(--fh-radius);
    padding: 20px;
    border: 1px solid var(--fh-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fh-program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.fh-program-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.fh-program-card h4 {
    font-size: 15px;
    font-weight: 700;
    flex: 1;
}

.fh-program-type {
    font-size: 11px;
    background: var(--fh-primary-light);
    color: var(--fh-primary);
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
}

.fh-program-card p {
    font-size: 13px;
    color: var(--fh-muted);
    line-height: 1.6;
}

/* ─── 편의시설 ─── */
.fh-amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.fh-amenity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 18px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--fh-border);
    font-size: 14px;
    font-weight: 500;
}

.fh-amenity-name { flex: 1; }

.fh-amenity-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
}

.fh-amenity-count { color: var(--fh-primary); font-weight: 700; }
.fh-amenity-area { color: var(--fh-muted); }

/* ─── 비용 테이블 ─── */
.fh-fee-table { overflow-x: auto; }
.fh-fee-table table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    font-size: 14px;
}

.fh-fee-table th {
    background: var(--fh-bg-alt);
    padding: 12px 18px;
    text-align: left;
    font-weight: 700;
    color: var(--fh-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--fh-border);
}

.fh-fee-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #F1F5F9;
}

.fh-fee-amount {
    font-weight: 700;
    color: var(--fh-primary);
}

/* ─── 교통/주차 ─── */
.fh-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.fh-transport-card {
    background: white;
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius);
    padding: 20px;
}

.fh-transport-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fh-transport-card p {
    font-size: 14px;
    color: var(--fh-muted);
    line-height: 1.7;
}

/* ─── 갤러리 ─── */
.fh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.fh-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    background: #E2E8F0;
}

.fh-gallery-item:hover { transform: scale(1.03); }
.fh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.fh-gallery-item:hover img { transform: scale(1.08); }

/* 라이트박스 */
.fh-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.fh-lightbox.active { opacity: 1; pointer-events: all; }
.fh-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.fh-lightbox-close, .fh-lightbox-prev, .fh-lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.12);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 10px;
    transition: background 0.2s;
    line-height: 1;
}

.fh-lightbox-close:hover, .fh-lightbox-prev:hover, .fh-lightbox-next:hover { background: rgba(255,255,255,0.25); }
.fh-lightbox-close { top: 20px; right: 20px; font-size: 24px; }
.fh-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 40px; }
.fh-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 40px; }

.fh-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
}

/* ─── 공지사항 ─── */
.fh-notice-list { max-width: 800px; }

.fh-notice-item {
    border-bottom: 1px solid #F1F5F9;
    transition: background .2s;
}

.fh-notice-item.fh-notice-pinned {
    background: #FFFBEB;
    border-left: 3px solid #F59E0B;
    padding-left: 12px;
}

.fh-notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.fh-notice-header:hover { background: #F8FAFC; }

.fh-notice-title {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fh-notice-pin { font-size: 14px; }

.fh-notice-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.fh-notice-date { font-size: 13px; color: var(--fh-muted); white-space: nowrap; }

.fh-notice-arrow {
    font-size: 11px;
    color: var(--fh-muted);
    transition: transform .3s;
}

.fh-notice-arrow.fh-arrow-open { color: var(--fh-accent); }

.fh-notice-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 16px;
}

.fh-notice-body.fh-notice-open {
    max-height: 600px;
    padding: 0 16px 20px;
}

.fh-notice-content {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    background: #F8FAFC;
    border-radius: 8px;
    padding: 16px 20px;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ─── 연락처 ─── */
.fh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.fh-map-wrap {
    border-radius: var(--fh-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.fh-map-container {
    background: #F8FAFC;
    border-bottom: 1px solid var(--fh-border);
}

.fh-map {
    width: 100%;
    height: 380px;
    background: #E2E8F0;
}

.fh-map-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: var(--fh-bg-alt);
    color: var(--fh-muted);
    font-size: 14px;
}

.fh-map-info {
    padding: 16px 20px;
    background: #FAFBFC;
}

.fh-map-addr-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--fh-text);
    line-height: 1.5;
}
.fh-map-addr-row svg {
    flex-shrink: 0;
    color: var(--fh-muted);
}

.fh-map-actions {
    display: flex;
    gap: 8px;
}

.fh-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--fh-bg-alt);
    border: 1px solid var(--fh-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fh-text);
    text-decoration: none;
    transition: all 0.2s;
}
.fh-map-btn:hover {
    background: var(--fh-primary-light);
    color: var(--fh-primary);
    border-color: var(--fh-primary);
    text-decoration: none;
}

.fh-map-btn-primary {
    background: var(--fh-primary);
    color: #fff;
    border-color: var(--fh-primary);
}
.fh-map-btn-primary:hover {
    background: var(--fh-primary-dark, #1d4ed8);
    color: #fff;
}

@media (min-width: 768px) {
    .fh-map { height: 420px; }
}
@media (min-width: 1024px) {
    .fh-map { height: 480px; }
}

.fh-contact-info { display: flex; flex-direction: column; gap: 14px; }

.fh-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fh-ci-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fh-bg-alt);
    border-radius: 10px;
    flex-shrink: 0;
}

.fh-contact-item strong {
    font-size: 12px;
    color: var(--fh-muted);
    display: block;
    margin-bottom: 2px;
}

.fh-contact-item p { font-size: 14px; color: var(--fh-text); margin: 0; line-height: 1.5; }

/* ─── 푸터 ─── */
.fh-footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--fh-border);
}

.fh-footer-links {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.fh-footer-links a {
    color: var(--fh-primary);
    text-decoration: none;
}

.fh-footer-links a:hover { text-decoration: underline; }
.fh-footer-sep { color: var(--fh-border); margin: 0 12px; }
.fh-footer-copy { font-size: 13px; color: var(--fh-muted); }
.fh-footer-copy a { color: var(--fh-primary); font-weight: 600; }

/* ─── 히어로 액션 버튼 ─── */
.fh-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.fh-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.2s;
}
.fh-hero-phone:hover { opacity: 1; text-decoration: none; color: white; }
.fh-hero-consult {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.fh-hero-consult:hover {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.8);
}

/* ─── 플로팅 버튼 그룹 ─── */
.fh-floating-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 90;
}
.fh-floating-btn {
    background: var(--fh-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    font-family: inherit;
}
.fh-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45);
    text-decoration: none;
    color: white;
}
.fh-floating-btn svg { flex-shrink: 0; }
.fh-float-phone { background: var(--fh-success); box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3); }
.fh-float-phone:hover { box-shadow: 0 6px 24px rgba(22, 163, 74, 0.45); color: white; }
.fh-float-consult { background: var(--fh-primary); }

/* ─── 상담문의 모달 ─── */
.fh-consult-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
}
.fh-consult-overlay.active { display: flex; }
.fh-consult-modal {
    background: white;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: fhSlideUp 0.3s ease;
}
@keyframes fhSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.fh-consult-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 12px;
    border-bottom: 1px solid var(--fh-border);
}
.fh-consult-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--fh-text);
}
.fh-consult-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--fh-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.fh-consult-body { padding: 20px 24px; }
.fh-form-group { margin-bottom: 16px; }
.fh-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--fh-text);
    margin-bottom: 6px;
}
.fh-req { color: var(--fh-danger); }
.fh-form-input,
.fh-form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--fh-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--fh-text);
    background: var(--fh-bg-alt);
    transition: border-color 0.2s;
    outline: none;
}
.fh-form-input:focus,
.fh-form-textarea:focus { border-color: var(--fh-primary); background: white; }
.fh-form-textarea { resize: vertical; min-height: 100px; }
.fh-consult-error {
    display: none;
    color: var(--fh-danger);
    font-size: 13px;
    text-align: center;
    margin-top: 4px;
}
.fh-consult-footer { padding: 0 24px 24px; }
.fh-consult-submit {
    width: 100%;
    padding: 14px;
    background: var(--fh-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.fh-consult-submit:hover { background: var(--fh-primary-dark); }
.fh-consult-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── 토스트 알림 ─── */
.fh-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1E293B;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 300;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    text-align: center;
}
.fh-toast.fh-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── 반응형 ─── */
@media (max-width: 768px) {
    .fh-nav-links { gap: 14px; }
    .fh-nav-links a { font-size: 12px; }
    .fh-nav-detail-link { font-size: 11px; padding: 5px 10px; }
    .fh-hero { height: 320px; }
    .fh-hero h1 { font-size: 26px; }
    .fh-section { padding: 40px 0; }
    .fh-section-title { font-size: 20px; }
    .fh-contact-grid { grid-template-columns: 1fr; }
    .fh-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .fh-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .fh-program-grid { grid-template-columns: 1fr; }
    .fh-floating-btn span { display: none; }
    .fh-floating-btn { padding: 14px; border-radius: 50%; }
    .fh-consult-overlay { padding: 0; align-items: flex-end; }
    .fh-consult-modal { border-radius: 20px 20px 0 0; max-height: 85vh; }
}

@media (max-width: 480px) {
    .fh-nav-links { display: none; }
    .fh-nav-brand { max-width: 160px; }
    .fh-hero { height: 260px; margin-top: 60px; }
    .fh-hero h1 { font-size: 22px; }
    .fh-hero-content { padding-bottom: 32px; }
    .fh-info-grid { grid-template-columns: 1fr; }
    .fh-quick-grid { grid-template-columns: 1fr; }
    .fh-quick-info { margin-top: -24px; }
    .fh-staff-grid { grid-template-columns: repeat(2, 1fr); }
    .fh-amenity-grid { grid-template-columns: 1fr; }
    .fh-hero-actions { gap: 8px; }
    .fh-hero-consult { font-size: 13px; padding: 6px 12px; }
}
