/* -------------------------------------------------------------------------- */
/*  CHEONMASAN KANG-JANGEO PREMIUM STYLE SHEET                              */
/* -------------------------------------------------------------------------- */

/* Design System & Custom Properties */
:root {
    --bg-dark: #f8f9fa; /* Warm light alabaster */
    --bg-surface: #ffffff; /* White card surface */
    --bg-surface-elevated: #f1f3f5; /* Light grey backdrop */
    --primary: #f59e0b; /* Golden Amber */
    --primary-glow: rgba(245, 158, 11, 0.15);
    --secondary: #e63946; /* Flame Red */
    --secondary-glow: rgba(230, 57, 70, 0.1);
    
    --text-primary: #1e293b; /* Slate-800 for excellent readability */
    --text-muted: #475569; /* Slate-600 */
    --text-dim: #64748b; /* Slate-500 */
    
    --glass-bg: rgba(255, 255, 255, 0.75); /* White glass */
    --glass-border: rgba(0, 0, 0, 0.06);
    
    --font-heading: 'Outfit', 'Noto Sans KR', sans-serif;
    --font-body: 'Noto Sans KR', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 10px 25px rgba(245, 158, 11, 0.12);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-elevated);
    border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Layout Elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, #d97706 30%, #ea580c 70%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ea580c;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ea580c);
    border-radius: var(--border-radius-full);
    margin: 0 auto 48px;
}

.section-header.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.25);
}

.btn-primary.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-naver-map {
    background: #03cf5d;
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-naver-map:hover {
    background: #02b34f;
    transform: translateY(-2px);
}

/* Glassmorphic Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}
.glass-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}
.logo .accent {
    color: #ea580c;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-quick);
}
.nav-link:hover {
    color: var(--text-primary);
}
.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    background-color: #fcfbf9;
    text-align: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    filter: saturate(1.1) contrast(1.05) brightness(0.85);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.72) 55%, rgba(15, 12, 10, 0.92) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fdba74;
}
.mouse {
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-container {
    max-width: 800px;
    padding: 0 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    background: rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.25);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.05);
    animation: pulseGlow 2s infinite ease-in-out;
}

.fire-dot {
    width: 8px;
    height: 8px;
    background-color: #ea580c;
    border-radius: 50%;
    box-shadow: 0 0 10px #ea580c;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-scroller {
    position: absolute;
    bottom: 40px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: var(--border-radius-full);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* Media Feature Strip */
.media-strip {
    background: #14110e;
    padding: 20px 0;
}
.media-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.media-strip-img {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.media-strip-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}
.media-strip-inner p b {
    color: #fdba74;
}
@media (max-width: 600px) {
    .media-strip-inner {
        flex-direction: column;
        gap: 12px;
    }
}

/* Brand Story Section */
.story-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.story-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08), 0 8px 20px rgba(0, 0, 0, 0.02);
}

.card-image-wrapper {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.story-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}
.story-card:hover .story-img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #1e293b;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
}

.card-body {
    padding: 32px;
    position: relative;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ea580c;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.story-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.menu-item.main-item {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.menu-item.main-item:hover {
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08), 0 8px 20px rgba(0, 0, 0, 0.02);
}

.menu-img-container {
    height: 300px;
    position: relative;
    overflow: hidden;
}
.menu-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}
.menu-item.main-item:hover .menu-img {
    transform: scale(1.05);
}

.menu-price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ea580c;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
}

.menu-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.menu-title-row h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.badge-hot, .badge-recommend {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
}
.badge-hot {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #dc2626;
}
.badge-recommend {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #d97706;
}

.menu-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-features {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
}
.menu-features li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-features li i {
    color: #ea580c;
}

/* Sub Menus */
.sub-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sub-menu-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-quick);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.sub-menu-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.submenu-img {
    height: 160px;
    width: 100%;
}

.submenu-info {
    padding: 20px;
}
.submenu-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.submenu-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.gallery-item.large {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.05) 70%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Visitor Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface-elevated) 100%);
    position: relative;
    overflow: hidden;
}

.reviews-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.reviews-track {
    width: 100%;
    position: relative;
    min-height: 280px;
}

.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.review-card.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea580c;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.username {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.visit-meta {
    font-size: 13px;
    color: var(--text-dim);
}

.stars {
    color: var(--primary);
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.r-badge {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-quick);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.slider-btn:hover {
    background: #ea580c;
    color: #fff;
    border-color: #ea580c;
}
.prev-btn {
    left: -20px;
}
.next-btn {
    right: -20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-quick);
}
.dot.active {
    width: 24px;
    background: #ea580c;
}

/* Location & Reservation Section */
.location-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.location-info-block h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.address {
    color: #ea580c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}
.info-item:last-child {
    border-bottom: none;
}

.info-label {
    width: 120px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-label i {
    color: #ea580c;
    font-size: 15px;
}

.info-val {
    flex-grow: 1;
    color: var(--text-muted);
}
.tel-link {
    color: var(--text-primary);
    font-weight: 700;
}
.tel-link:hover {
    color: #ea580c;
}

.location-buttons {
    display: flex;
    gap: 16px;
}

/* Styled Interactive Mock Map Canvas */
.map-container {
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f1f3f5;
    background-image: 
        radial-gradient(#d1d5db 1px, transparent 1px), 
        radial-gradient(#d1d5db 1.5px, transparent 1.5px);
    background-size: 24px 24px, 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-bg-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.map-pin {
    color: #e63946;
    font-size: 48px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(230, 57, 70, 0.3));
    animation: bouncePin 2s infinite ease-in-out;
}

.pin-pulse {
    position: absolute;
    width: 48px;
    height: 12px;
    background: rgba(230, 57, 70, 0.2);
    border-radius: var(--border-radius-full);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scalePulse 2s infinite ease-in-out;
}

.map-text {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    z-index: 2;
    margin-bottom: 4px;
}
.map-subtext {
    font-size: 13px;
    color: var(--text-muted);
    z-index: 2;
}

/* Footer styles */
.main-footer {
    background: #f1f5f9;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-brand h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.footer-brand h2 .accent {
    color: #ea580c;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}
.footer-links a:hover {
    color: #ea580c;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-dim);
    font-size: 12px;
}

.footer-sns {
    display: flex;
    gap: 16px;
}
.footer-sns a {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-quick);
}
.footer-sns a:hover {
    background: #ea580c;
    color: #fff;
    border-color: #ea580c;
}

/* Animations */
@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(245, 158, 11, 0.05); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(245, 158, 11, 0.15); }
}

@keyframes bouncePin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scalePulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.4); opacity: 0.8; }
}

/* Scroll reveal triggers */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sub-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .glass-header {
        padding: 12px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 99;
    }
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--text-primary);
    }
    
    .mobile-toggle {
        display: block;
        color: var(--text-primary);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .reviews-slider-container {
        padding: 0 10px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .slider-btn {
        display: none; /* Hide buttons on mobile, allow touch swipe/dots */
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
