/* ═══════════════════════════════════════════════════════════
   한끼 - Main Stylesheet v3
   Colors: #b92025 (red), #f5f4f0 (off-white), #030304 (dark),
           #e6d31f (yellow), #dfdcce (beige)
   Fonts: Pretendard (sans), KoPubWorldBatang (serif)
   Icons: Remix Icon
   ═══════════════════════════════════════════════════════════ */

/* ─── Font: KoPubWorldBatang via @font-face ─── */
@font-face {
    font-family: 'KoPubWorldBatang';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopub/KoPubWorldBatangMedium.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/kopub/KoPubWorldBatangMedium.woff') format('woff');
}
@font-face {
    font-family: 'KoPubWorldBatang';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/kopub/KoPubWorldBatangBold.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/kopub/KoPubWorldBatangBold.woff') format('woff');
}

/* ─── Base ─── */
body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--hk-dark);
    background: var(--hk-bg);
    padding-bottom: 72px; /* space for fixed bottom bar */
}
.fw-900 { font-weight: 900; }
.font-batang { font-family: 'KoPubWorldBatang', Georgia, 'Times New Roman', serif; }

/* ─── GSAP Scroll Animations ─── */
/* GSAP handles initial opacity via JS — do NOT set opacity:0 in CSS
   or gsap.from() will animate TO opacity:0 instead of 1 */
.animate-on-scroll {
    /* GSAP sets opacity:0 + transform via JS immediately */
    will-change: opacity, transform;
}

/* ─── Top Bar ─── */
.top-bar {
    background: var(--hk-dark);
    color: #fff;
    padding: 6px 0;
    font-size: 0.85rem;
}
.top-bar a { color: #aaa; transition: color 0.2s; }
.top-bar a:hover { color: #fff; }

/* ─── Navbar ─── */
.hk-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 12px 0;
    z-index: 1020;
    transition: box-shadow 0.3s;
}
.hk-navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.hk-navbar .brand-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--hk-primary);
    letter-spacing: -2px;
    font-family: 'KoPubWorldBatang', serif;
}
.hk-navbar .nav-link {
    font-weight: 500;
    color: var(--hk-dark);
    padding: 8px 16px;
    transition: color 0.2s;
}
.hk-navbar .nav-link:hover { color: var(--hk-primary); }
.hk-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 8px;
    animation: dropdownFade 0.2s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.hk-navbar .dropdown-item { border-radius: 6px; padding: 10px 16px; font-size: 0.9rem; }
.hk-navbar .dropdown-item:hover { background: var(--hk-bg); color: var(--hk-primary); }

/* ─── Buttons ─── */
.btn-hk-primary {
    background: var(--hk-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-hk-primary:hover { background: #9a1a1e; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(185,32,37,0.3); }
.btn-hk-accent {
    background: var(--hk-accent);
    color: var(--hk-dark);
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-hk-accent:hover { background: #d1c11a; color: var(--hk-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(230,211,31,0.4); }

/* ─── Hero Slider (Center Mode Card Carousel) ─── */
.hero-slider-section {
    background: var(--slider-bg, #1a1a1a);
    position: relative;
    padding: 40px 0 80px;
    overflow: hidden;
}
.hero-swiper {
    position: relative;
    overflow: visible !important;
    padding: 20px 0;
}
.hero-swiper .swiper-slide {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-swiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.85);
    opacity: 0.5;
    filter: brightness(0.6);
}
.hero-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: brightness(1);
    z-index: 2;
}
.hero-swiper .swiper-slide-prev,
.hero-swiper .swiper-slide-next {
    opacity: 0.6;
    filter: brightness(0.7);
}
.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: var(--slider-height, 420px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.hero-card-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.swiper-slide-active .hero-card-img {
    transform: scale(1.15);
}
.hero-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%),
        linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    z-index: 1;
}
.hero-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    color: #fff;
    padding: 40px 44px;
}
/* Text animation — GSAP handles this, CSS as fallback */
.hero-subtitle,
.hero-title,
.hero-desc,
.hero-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .hero-subtitle { opacity: 0.85; transform: translateY(0); transition-delay: 0.15s; }
.swiper-slide-active .hero-title { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.swiper-slide-active .hero-desc { opacity: 0.85; transform: translateY(0); transition-delay: 0.45s; }
.swiper-slide-active .hero-btn { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
/* Scroll-down indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hk-accent);
    animation: heroDotBounce 1.8s ease-in-out infinite;
}
@keyframes heroDotBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.4; }
}
.hero-scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, var(--hk-accent), transparent);
}

.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}
.hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    word-break: keep-all;
    overflow-wrap: normal;
    margin-bottom: 0;
}
.hero-desc {
    font-size: 0.95rem;
    max-width: 480px;
    margin-top: 12px;
    line-height: 1.7;
}
/* Controls bar */
.hero-controls {
    position: absolute;
    bottom: -48px; left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 10px 16px 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}
.hero-counter-current { font-size: 1.1rem; }
.hero-counter-sep {
    width: 20px; height: 1px;
    background: rgba(255,255,255,0.4);
}
.hero-counter-total { opacity: 0.4; }
/* Pagination */
.hero-controls .hero-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 6px;
}
.hero-swiper .swiper-pagination-bullet {
    width: 32px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    opacity: 1;
    transition: all 0.5s ease;
    margin: 0 !important;
}
.hero-swiper .swiper-pagination-bullet-active {
    width: 48px;
    background: var(--hk-accent);
}
/* Navigation arrows */
.hero-btn-prev, .hero-btn-next {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
    width: 48px !important; height: 48px !important;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    transition: all 0.35s;
}
.hero-btn-prev:hover, .hero-btn-next:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}
.hero-btn-prev::after, .hero-btn-next::after {
    font-size: 16px !important;
    font-weight: 600;
    color: #fff;
}
/* Autoplay toggle */
.hero-autoplay-toggle {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.hero-autoplay-toggle:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.hero-autoplay-toggle.paused {
    background: var(--hk-primary);
    border-color: var(--hk-primary);
    color: #fff;
}

@media (max-width: 991px) {
    .hero-slider-section { padding: 24px 0 72px; }
    .hero-card { height: calc(var(--slider-height, 420px) * 0.8); }
    .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
    .hero-desc { font-size: 0.9rem; }
    .hero-card-content { padding: 28px 28px; }
    .hero-btn-prev, .hero-btn-next { display: none !important; }
}
@media (max-width: 575px) {
    .hero-slider-section { padding: 16px 0 64px; }
    .hero-swiper .swiper-slide { transform: scale(0.9); }
    .hero-swiper .swiper-slide-active { transform: scale(1); }
    .hero-card { height: calc(var(--slider-height, 420px) * 0.65); border-radius: 14px; }
    .hero-title { font-size: 1.6rem; }
    .hero-card-content { padding: 20px 20px; }
    .hero-controls { bottom: -40px; padding: 8px 12px 8px 16px; gap: 14px; }
    .hero-counter { display: none; }
}

/* ─── Brand Section ─── */
.brand-section {
    background: var(--hk-bg);
    position: relative;
    overflow: hidden;
}
/* Decorative floating shape */
.brand-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,32,37,0.04), transparent 70%);
    pointer-events: none;
}
.brand-deco { display: flex; align-items: center; justify-content: center; gap: 16px; }
.brand-deco-line {
    width: 60px; height: 1px; background: var(--hk-primary);
    transform-origin: center;
}
.brand-deco-text {
    color: var(--hk-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    font-family: 'KoPubWorldBatang', serif;
}
.brand-large-text {
    color: var(--hk-primary);
    letter-spacing: -5px;
    font-size: 6rem;
    font-family: 'KoPubWorldBatang', serif;
}
@media (max-width: 767px) { .brand-large-text { font-size: 4rem; } }

.brand-large-logo {
    height: 80px;
    width: auto;
    display: inline-block;
}
@media (max-width: 767px) { .brand-large-logo { height: 56px; } }

.brand-feature-card {
    text-align: center; padding: 40px 24px;
    border-radius: 16px; background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.brand-feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.brand-feature-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, var(--hk-primary), #e04040);
    color: #fff; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}

/* ─── Menu Showcase ─── */
.menu-card {
    position: relative; overflow: hidden;
    border-radius: 16px; aspect-ratio: 4/3; cursor: pointer;
}
.menu-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}
.menu-card:hover img { transform: scale(1.08); }
.menu-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.menu-card-tag {
    display: inline-block; padding: 4px 12px;
    border-radius: 4px; background: var(--hk-primary);
    color: #fff; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 2px;
}
@media (max-width: 767px) {
    .menu-card { aspect-ratio: 1; }
    .menu-card-overlay { padding: 14px; }
    .menu-card-overlay h5 { font-size: 0.9rem; }
}

/* ─── Success Numbers Section (Yellow) ─── */
.success-numbers-section {
    background: var(--hk-accent);
    color: var(--hk-dark);
    padding: 100px 0;
}
.success-stat-card {
    background: rgba(255,255,255,0.35);
    border-radius: 16px; padding: 20px; text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.success-stat-card:hover { background: rgba(255,255,255,0.5); transform: translateY(-3px); }
.success-stat-card i { font-size: 1.5rem; color: var(--hk-primary); display: block; margin-bottom: 8px; }
.success-stat-card h3 { color: var(--hk-primary); margin-bottom: 4px; }
.success-stat-card span { color: rgba(0,0,0,0.55); font-size: 0.85rem; }

.success-image-grid {
    position: relative; padding: 20px;
}
.success-img-1 {
    width: 100%; border-radius: 20px; object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.success-img-2 {
    position: absolute; bottom: 0; right: 0;
    width: 55%; border-radius: 16px; object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid var(--hk-accent);
}
.success-img-badge {
    position: absolute; top: 30px; right: 30px;
    background: var(--hk-primary); color: #fff;
    border-radius: 12px; padding: 12px 20px;
    text-align: center; box-shadow: 0 8px 20px rgba(185,32,37,0.4);
}
.success-img-badge i { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.success-img-badge span { font-size: 0.8rem; font-weight: 700; }

/* ─── Kitchen Cards v2 ─── */
.kitchen-card-v2 {
    background: #fff; border-radius: 16px;
    overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s; height: 100%;
}
.kitchen-card-v2:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.kitchen-card-v2-img {
    position: relative; height: 200px; overflow: hidden;
}
.kitchen-card-v2-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.kitchen-card-v2:hover .kitchen-card-v2-img img { transform: scale(1.05); }
.kitchen-card-v2-badge {
    position: absolute; top: 16px; left: 16px;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--hk-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.kitchen-card-v2-body { padding: 24px; }
.kitchen-card-v2-link {
    color: var(--hk-primary); text-decoration: none;
    font-weight: 600; font-size: 0.9rem;
    transition: gap 0.2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.kitchen-card-v2-link:hover { color: #9a1a1e; gap: 8px; }

.kitchen-horizontal-card {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border-radius: 16px; padding: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.kitchen-horizontal-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.kitchen-horizontal-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--hk-bg); color: var(--hk-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}

/* ─── Testimonials v2 ─── */
.testimonial-section {
    background: var(--hk-bg);
    padding: 100px 0;
}
.testimonial-summary-score {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-big-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--hk-primary);
    line-height: 1;
    font-family: 'KoPubWorldBatang', serif;
}
.testimonial-stars {
    color: var(--hk-accent);
    font-size: 1rem;
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.testimonial-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.testimonial-featured {
    grid-column: 1 / -1;
    background: var(--hk-dark);
    color: #fff;
    border: none;
}
.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--hk-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-featured .testimonial-quote-icon { opacity: 0.5; }
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-featured .testimonial-text {
    font-size: 1.05rem;
    opacity: 0.9;
}
.testimonial-author-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-featured .testimonial-author-v2 {
    border-top-color: rgba(255,255,255,0.1);
}
.testimonial-avatar-v2 {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--hk-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-avatar-v2.avatar-accent { background: var(--hk-accent); color: var(--hk-dark); }
.testimonial-avatar-v2.avatar-dark { background: var(--hk-dark); color: #fff; }
.testimonial-featured .testimonial-avatar-v2 { background: var(--hk-primary); }
.testimonial-author-v2 strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author-v2 span {
    font-size: 0.78rem;
    color: #999;
}
.testimonial-featured .testimonial-author-v2 span { color: rgba(255,255,255,0.5); }
.testimonial-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--hk-primary);
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .testimonial-section { padding: 60px 0; }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-featured {
        grid-column: auto;
    }
}

/* ─── Franchise Process (Timeline) ─── */
.process-section {
    background: var(--hk-dark);
    color: #fff;
    padding: 100px 0 80px;
}
.process-section .text-muted { color: rgba(255,255,255,0.5) !important; }
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}
.process-timeline-line {
    position: absolute;
    top: 58px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--hk-primary), var(--hk-accent));
    z-index: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-step-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--hk-primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.process-step-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--hk-primary);
    border: 3px solid var(--hk-dark);
    margin: 0 auto 20px;
    box-shadow: 0 0 0 4px rgba(185,32,37,0.2);
    transition: all 0.3s;
}
.process-step:hover .process-step-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(185,32,37,0.15);
}
.process-step-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 16px;
    margin: 0 8px;
    transition: all 0.3s;
}
.process-step:hover .process-step-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(185,32,37,0.3);
    transform: translateY(-4px);
}
.process-step-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--hk-primary), #e04040);
    color: #fff; font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.process-step-card h6 { color: #fff; }
.process-step-card p { color: rgba(255,255,255,0.5); }

@media (max-width: 767px) {
    .process-timeline {
        flex-direction: column;
        gap: 0;
        padding-top: 0;
    }
    .process-timeline-line {
        top: 0; bottom: 0;
        left: 24px; right: auto;
        width: 2px; height: auto;
    }
    .process-step {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding-left: 56px;
        margin-bottom: 12px;
    }
    .process-step-num {
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        width: 48px;
        text-align: center;
        margin-bottom: 0;
    }
    .process-step-dot {
        position: absolute;
        left: 16px; top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    .process-step-card {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px;
        margin: 0;
    }
    .process-step-icon {
        margin: 0;
        flex-shrink: 0;
    }
    .process-step-card h6 { margin-bottom: 4px; }
}

/* ─── Pre-Footer CTA (Beige #dfdcce) ─── */
.prefooter-cta {
    background: var(--hk-beige);
    padding: 80px 0;
    color: var(--hk-dark);
    position: relative;
    overflow: hidden;
}
.prefooter-cta::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(0,0,0,0.03);
}
.prefooter-badge {
    display: inline-block; padding: 6px 16px;
    border-radius: 50px; border: 1px solid rgba(0,0,0,0.2);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    color: var(--hk-dark);
}
.prefooter-stats {
    padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.12);
}
.prefooter-stats div { text-align: center; }
.prefooter-stats strong {
    display: block; font-size: 1.5rem; font-weight: 900;
    color: var(--hk-primary);
}
.prefooter-stats span { font-size: 0.8rem; opacity: 0.6; }
.prefooter-image-wrap { position: relative; }
.prefooter-image {
    width: 100%; border-radius: 20px; object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ─── Footer Main (Yellow #e6d31f) ─── */
.hk-footer {
    background: var(--hk-accent);
    color: var(--hk-dark);
    padding: 60px 0 40px;
}
.footer-social {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.1); color: var(--hk-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; text-decoration: none;
    transition: all 0.3s;
}
.footer-social:hover { background: var(--hk-dark); color: var(--hk-accent); transform: translateY(-2px); }
.footer-links li { margin-bottom: 8px; color: var(--hk-dark); }
.footer-links a { color: var(--hk-dark); text-decoration: none; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.6; }
/* ─── Footer Bottom ─── */
.hk-footer-bottom {
    background: var(--hk-bg);
    color: var(--hk-dark);
    padding: 20px 0;
}

/* ─── Fixed Bottom Quick Consultation Bar ─── */
.quick-consult-fixed {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--hk-primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1050;
    transition: transform 0.4s ease;
}
.quick-consult-fixed.hidden { transform: translateY(100%); }
.quick-consult-inner {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 0;
}
.quick-consult-label {
    display: flex; align-items: center; gap: 12px;
    color: #fff; flex-shrink: 0;
}
.quick-consult-label i { font-size: 1.8rem; }
.quick-consult-label strong { display: block; font-size: 0.9rem; }
.quick-consult-label small { font-size: 0.75rem; opacity: 0.7; }
.quick-consult-form {
    display: flex; gap: 8px; flex: 1;
    align-items: center;
}
.quick-consult-form .form-control {
    border-radius: 8px; border: none;
    background: rgba(255,255,255,0.15); color: #fff;
    font-size: 0.85rem;
}
.quick-consult-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.quick-consult-form .form-control:focus { background: rgba(255,255,255,0.25); box-shadow: none; }
.quick-consult-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none;
    color: #fff; display: flex; align-items: center;
    justify-content: center; cursor: pointer; flex-shrink: 0;
    transition: background 0.2s;
}
.quick-consult-toggle:hover { background: rgba(255,255,255,0.3); }

.quick-consult-reopen {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--hk-primary); color: #fff; border: none;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(185,32,37,0.4);
    z-index: 1050; cursor: pointer;
    transition: all 0.3s;
    animation: reopenPulse 2s infinite;
}
.quick-consult-reopen:hover { transform: scale(1.1); }
@keyframes reopenPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(185,32,37,0.4); }
    50% { box-shadow: 0 4px 30px rgba(185,32,37,0.6); }
}

/* ─── Page Header ─── */
.page-header {
    background: var(--hk-bg);
    padding: 60px 0 40px;
}
.page-header h1 {
    font-size: 2.2rem;
    color: var(--hk-dark);
    font-family: 'KoPubWorldBatang', serif;
}

/* ─── Page Content ─── */
main { background: #fff; }
.page-content { background: #fff; }
.page-content img { max-width: 100%; height: auto; }
.recipe-content img { max-width: 100%; height: auto; border-radius: 8px; }

/* ─── Pagination ─── */
.page-link { color: var(--hk-dark); border-color: #dee2e6; }
.page-item.active .page-link { background-color: var(--hk-primary); border-color: var(--hk-primary); }
.page-link:hover { color: var(--hk-primary); }

/* ─── Accordion ─── */
.accordion-button:not(.collapsed) { background-color: rgba(185,32,37,0.05); color: var(--hk-primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: rgba(185,32,37,0.3); }

/* ─── Form Focus ─── */
.form-control:focus, .form-select:focus {
    border-color: var(--hk-primary);
    box-shadow: 0 0 0 0.15rem rgba(185,32,37,0.15);
}

/* ─── Card ─── */
.card { transition: transform 0.2s; }

/* ─── Global smooth image transitions ─── */
img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

/* ─── Lazy loading images ─── */
img[loading="lazy"] {
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
    opacity: 1;
}
img.loaded { opacity: 1; }

/* ─── Smooth Scroll ─── */
html { scroll-behavior: smooth; }

/* ─── Section Dividers ─── */
.section-wave-top {
    position: relative;
}
.section-wave-top::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 60px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

/* ─── Parallax image container ─── */
.parallax-img-wrap {
    overflow: hidden;
    border-radius: 20px;
}
.parallax-img-wrap img {
    will-change: transform;
}

/* ─── Counter animation ─── */
.counter-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* ─── Magnetic hover for cards ─── */
.magnetic-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.magnetic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ─── Text reveal mask ─── */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}
.text-reveal > span {
    display: inline-block;
}

/* ─── Floating animation ─── */
@keyframes floatSoft {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}
.float-anim {
    animation: floatSoft 4s ease-in-out infinite;
}

/* ─── Stagger children (GSAP sets opacity via JS) ─── */

/* ─── Image tilt on hover ─── */
.tilt-hover {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ─── Recipe card enhanced ─── */
.recipe-index-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}
.recipe-index-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
}
.recipe-index-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.recipe-index-card:hover img {
    transform: scale(1.08);
}

/* ─── Smooth section padding ─── */
.section-gap { padding: 100px 0; }
@media (max-width: 767px) { .section-gap { padding: 60px 0; } }

/* ─── Utilities ─── */
.text-hk-primary { color: var(--hk-primary) !important; }
.bg-hk-primary { background-color: var(--hk-primary) !important; }
.bg-hk-bg { background-color: var(--hk-bg) !important; }
