* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #1a1614;
    --bg-card: #242019;
    --bg-elevated: #2d2822;
    --text-primary: #f2ebe3;
    --text-secondary: #b8a99a;
    --text-muted: #8a7f73;
    --accent: #d4a853;
    --accent-soft: #c49b45;
    --accent-dim: rgba(212, 168, 83, 0.15);
    --border: rgba(212, 168, 83, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-deep);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 22, 20, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.brand:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero */
.hero-banner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: var(--bg-deep) url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1920') center / cover no-repeat;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 22, 20, 0.75) 0%, rgba(26, 22, 20, 0.5) 40%, rgba(26, 22, 20, 0.85) 100%),
                radial-gradient(ellipse 80% 50% at 50% 30%, var(--accent-dim) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 640px;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-banner h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Section common */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sec-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.sec-title.left {
    text-align: left;
}

.sec-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu - Bento */
.menu-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.menu-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-template-areas:
        "wide wide"
        "a b"
        "c tall";
}

.bento-item {
    background: var(--bg-elevated);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 83, 0.35);
}

.bento-wide {
    grid-area: wide;
    flex-direction: row;
}

.bento-item:nth-child(2) { grid-area: a; }
.bento-item:nth-child(3) { grid-area: b; }
.bento-item:nth-child(4) { grid-area: c; }

.bento-wide .bento-img-wrap {
    width: 45%;
    min-height: 280px;
}

.bento-wide .bento-body {
    flex: 1;
    padding: 2rem 2.5rem;
    justify-content: center;
}

.bento-tall {
    grid-area: tall;
}

.bento-tall .bento-img-wrap {
    height: 200px;
}

.bento-img-wrap {
    height: 180px;
    overflow: hidden;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-img {
    transform: scale(1.06);
}

.bento-body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bento-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.bento-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.bento-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Space section - split */
.space-section {
    padding: 6rem 0;
    background: var(--bg-deep);
}

.space-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.space-visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.space-img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.space-text .sec-title {
    margin-bottom: 1.25rem;
}

.space-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.space-features {
    list-style: none;
}

.space-features li {
    padding: 0.65rem 0;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    position: relative;
}

.space-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Hours */
.hours-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.hours-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.25s;
}

.hours-card:hover {
    border-color: rgba(212, 168, 83, 0.4);
}

.hours-card.highlight {
    border-color: var(--accent-soft);
    background: var(--accent-dim);
}

.hours-day {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hours-time {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-deep);
}

.contact-inner {
    text-align: center;
    max-width: 560px;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    text-align: left;
}

.contact-box p {
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
}

.contact-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-box a:hover {
    color: var(--accent-soft);
}

/* Privacy */
.privacy-section {
    padding: 5rem 0 6rem;
    background: var(--bg-card);
}

.privacy-inner {
    max-width: 720px;
}

.privacy-inner h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.privacy-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.privacy-content a {
    color: var(--accent);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.footer-slogan {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .menu-bento {
        grid-template-columns: 1fr;
        grid-template-areas:
            "wide"
            "a"
            "b"
            "c"
            "tall";
    }

    .bento-wide {
        flex-direction: column;
    }

    .bento-wide .bento-img-wrap {
        width: 100%;
        min-height: 220px;
    }

    .space-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .space-visual {
        order: -1;
    }

    .space-img {
        min-height: 280px;
    }

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

@media (max-width: 640px) {
    .nav-bar {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-banner {
        padding: 5rem 1.5rem 3rem;
    }

    .section-inner {
        padding: 0 1.5rem;
    }

    .menu-section,
    .space-section,
    .hours-section,
    .contact-section {
        padding: 4rem 0;
    }

    .sec-title {
        font-size: 1.65rem;
    }

    .sec-lead {
        margin-bottom: 2.5rem;
    }
}
