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

:root {
    --charcoal: #1A1A1A;
    --ivory: #F5F2ED;
    --gold: #C9A96E;
    --blue: #2D5366;
    --slate: #6B7280;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--ivory);
    direction: ltr;
}

.container-elegant {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-elegant-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header */
.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid rgba(26,26,26,0.1);
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-minimal .container-elegant {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    display: block;
    opacity: 0.9;
}

.nav-minimal {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-minimal a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-minimal a:hover {
    color: var(--gold);
}

.nav-reserve {
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
}

.nav-reserve:hover {
    background: var(--gold);
    color: var(--ivory) !important;
}

/* Hero - Elegant */
.hero-elegant {
    height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26,26,26,0.7), rgba(26,26,26,0.4)),
                url('https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?w=1920&q=80') center/cover;
    opacity: 0.8;
}

.hero-content-elegant {
    position: relative;
    z-index: 2;
}

.hero-title-elegant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
    color: var(--ivory);
}

.title-jp {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 12px;
    margin-bottom: 0.5rem;
}

.title-he {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold);
}

.hero-subtitle-elegant {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.7;
    margin-top: 2rem;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.5;
    animation: fade-pulse 3s infinite;
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* About Section */
.about-elegant {
    padding: 8rem 0;
    background: var(--ivory);
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-image-placeholder {
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-elegant {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 5rem 3rem;
    text-align: center;
    border: 1px solid var(--gold);
}

.placeholder-elegant span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.placeholder-elegant small {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Section Titles */
.section-title-elegant {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 4px;
    color: var(--charcoal);
}

/* Menu Section */
.menu-elegant {
    padding: 8rem 0;
    background: var(--charcoal);
    color: var(--ivory);
}

.menu-elegant .section-title-elegant {
    color: var(--ivory);
}

.menu-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.menu-item-elegant {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s;
}

.menu-item-elegant:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.menu-item-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
}

.menu-item-info {
    padding: 2rem;
}

.menu-item-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-item-price {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.menu-item-price::after {
    content: ' ₪';
    font-size: 1rem;
    opacity: 0.8;
}

.menu-note-elegant {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate);
    font-style: italic;
}

/* Reserve Section */
.reserve-elegant {
    padding: 8rem 0;
    background: var(--ivory);
}

.reserve-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.info-item-elegant {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-item-elegant p {
    line-height: 1.8;
}

.contact-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--gold);
}

.info-note {
    font-size: 0.85rem;
    color: var(--slate);
    font-style: italic;
}

.reserve-cta {
    text-align: center;
}

.btn-elegant-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--charcoal);
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--charcoal);
    transition: all 0.3s;
}

.btn-elegant-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

/* Footer */
.footer-elegant {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 4rem 0 2rem;
}

.footer-content-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-elegant a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.footer-elegant a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .container-elegant,
    .container-elegant-narrow {
        padding: 0 1.5rem;
    }
    
    .nav-minimal {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    
    .menu-grid-elegant {
        grid-template-columns: 1fr;
    }
    
    .hero-elegant {
        margin-top: 70px;
    }
}

/* Smooth animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chef Portrait */
.chef-portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    border: 1px solid var(--gold);
    filter: grayscale(20%);
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate);
    font-style: italic;
}