* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    color: #000;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.menu li:nth-child(4) {
    display: none;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.menu a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .menu a {
        font-size: 12px;
    }
}

.hero-video {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 14px 48px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s;
}

.btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero .btn {
    display: none;
}

.section {
    padding: 120px 0;
}

.section.bg-light {
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 2;
    color: #333;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.menu-card {
    padding: 48px 32px;
    background: #fff;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #000;
}

.menu-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.menu-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.store-card {
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.store-card:hover {
    border-color: #000;
}

.store-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.store-card-desc, .store-card-time {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.footer {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 32px;
    filter: invert(1);
}

.footer-text {
    font-size: 15px;
    color: #999;
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .menu {
        gap: 24px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }

    .menu li {
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }
}
