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

:root {
    /* Premium Dark Theme */
    --rest-dark: #0A0A0A;
    --rest-darker: #050505;
    --rest-card: #1A1A1A;
    --rest-card-light: #252525;
    --rest-border: #2A2A2A;
    
    /* Gold Accent */
    --gold-primary: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    
    /* Text Colors */
    --text-primary: #F5F5F5;
    --text-secondary: #D0D0D0;
    --text-tertiary: #A0A0A0;
    
    /* Background */
    --bg-overlay: rgba(10, 10, 10, 0.85);
    
    /* Spacing */
    --section-padding: 8rem 0;
    --container-padding: 0 2rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background-color: var(--rest-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rest-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
}

.nav-back:hover {
    color: var(--gold-primary);
    gap: 0.75rem;
}

.nav-back svg {
    transition: transform 0.3s ease;
}

.nav-back:hover svg {
    transform: translateX(4px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--gold-primary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--rest-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-primary);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Story Section */
.story-section {
    background: var(--rest-darker);
}

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

.story-image-wrapper {
    position: relative;
}

.story-image {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--rest-card);
}

.story-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.05) 20px,
            rgba(0, 0, 0, 0.05) 22px
        );
    opacity: 0.3;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-intro {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 400;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.story-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--rest-card);
    border-radius: 12px;
    border: 1px solid var(--rest-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 12px;
    color: var(--rest-dark);
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dishes Section */
.dishes-section {
    background: var(--rest-dark);
}

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

.dish-card {
    background: var(--rest-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rest-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.dish-image {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    background: var(--rest-card-light);
}

.dish-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-img {
    transform: scale(1.1);
}

.dish-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.dish-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-primary);
    margin: 0;
}

.dish-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
}

.dish-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-top: auto;
}

/* Gallery Section */
.gallery-section {
    background: var(--rest-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rest-border);
    transition: var(--transition-smooth);
    background: var(--rest-card);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background: var(--rest-dark);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--rest-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--rest-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 12px;
    color: var(--rest-dark);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p,
.contact-card a {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    line-height: 1.8;
}

.contact-card a:hover {
    color: var(--gold-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
}

.hours-list p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.hours-list strong {
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

/* Footer */
.main-footer {
    background: var(--rest-darker);
    color: var(--text-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--rest-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-content a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-content a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image {
        padding-bottom: 80%;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 0;
        --container-padding: 0 1.5rem;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .story-intro {
        font-size: 1.25rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .dish-card,
    .contact-card {
        padding: 2rem;
    }
}
