:root {
    --bg-primary: #1A1A1A;
    --bg-surface: #262626;
    --accent-amber: #C9913A;
    --accent-gold: #F8F5F0;
    --text-primary: #F8F5F0;
    --text-muted: #CCCCCC;
    --border: #333333;
    --font-display: 'Averia Libre', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --grid-base: 8px;
}

body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display) !important;
    color: var(--accent-gold) !important;
    font-weight: 700;
}

.haku-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.haku-menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.haku-menu-tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
}
.haku-menu-tab-btn:hover, .haku-menu-tab-btn.active {
    border-color: var(--accent-amber);
    color: var(--text-primary);
    background: var(--bg-surface);
}
.haku-menu-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.haku-menu-grid.active {
    display: grid;
    opacity: 1;
}
@media (max-width: 768px) {
    .haku-menu-grid.active {
        grid-template-columns: 1fr;
    }
}
.dish-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}
.dish-card:hover {
    border-color: var(--accent-amber);
    transform: translateY(-2px);
}
.dish-photo {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: #25211d;
}
.dish-details {
    flex-grow: 1;
}
.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 10px;
}
.dish-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    margin: 0;
}
.dish-price {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--accent-gold);
    font-weight: 600;
}
.dish-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 10px 0;
    line-height: 1.5;
}
.dish-badges {
    display: flex;
    gap: 8px;
}
.dish-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}
.badge-v { background: #2d4a22; color: #a3e685; }
.badge-gf { background: #5c4819; color: #ffd666; }
.badge-s { background: #5c201e; color: #ffa39e; }

.haku-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 992px) {
    .haku-staff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .haku-staff-grid { grid-template-columns: 1fr; }
}
.staff-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: var(--accent-amber);
}
.staff-photo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    position: relative;
}
.staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.staff-card:hover .staff-photo {
    transform: scale(1.1);
}
.staff-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 145, 58, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}
.staff-card:hover .staff-photo-overlay {
    opacity: 1;
}
.staff-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}
.staff-role {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--accent-amber);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 15px;
}
.staff-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}
.staff-fact {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    color: var(--accent-gold);
    margin: 0;
}

.haku-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 992px) {
    .haku-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-card {
    background: transparent;
    perspective: 1000px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.gallery-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.gallery-card:hover .gallery-card-inner, .gallery-card.flipped .gallery-card-inner {
    transform: rotateY(180deg);
}
.gallery-card-front, .gallery-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
}
.gallery-card-front {
    border: 1px solid var(--border);
}
.gallery-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-card-back {
    background: var(--bg-surface);
    border: 1px solid var(--accent-amber);
    color: var(--text-primary);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.gallery-caption {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 10px;
}
.gallery-rule {
    width: 40px;
    height: 2px;
    background: var(--accent-amber);
    margin: 0 auto;
}