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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #18181b 0%, #1c1917 50%, #292524 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
}

.background-pattern {
    position: fixed;
    inset: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #d97706;
}

.nav-brand {
    font-size: 1.875rem;
    font-family: Georgia, serif;
    color: #f59e0b;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #f59e0b;
}

/* Buttons */
.btn-primary {
    padding: 0.625rem 1.5rem;
    background: #d97706;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #b45309;
    transform: scale(1.05);
}

.btn-secondary {
    padding: 0.625rem 1.5rem;
    border: 1px solid #d97706;
    background: transparent;
    color: #f59e0b;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: rgba(217, 119, 6, 0.1);
    transform: scale(1.05);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-line {
    width: 3rem;
    height: 1px;
    background: #d97706;
}

.hero-subtitle span {
    color: #d97706;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 4.5rem;
    font-family: Georgia, serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-accent {
    color: #f59e0b;
}

.title-main {
    color: #f5f5f4;
}

.hero-description {
    font-size: 1.25rem;
    color: #d6d3d1;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stars {
    display: flex;
    gap: 0.5rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
}

.rating-text {
    color: #a8a29e;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
}

.hero-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: #292524;
    padding: 1.5rem;
    border: 1px solid rgba(217, 119, 6, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.badge-number {
    font-size: 2.25rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.badge-text {
    color: #a8a29e;
    font-size: 0.875rem;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    background: rgba(41, 37, 36, 0.5);
}

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

.section-title {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.section-description {
    color: #d6d3d1;
    font-size: 1.125rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-0.5rem);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(1rem);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.5rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    color: #d6d3d1;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-content p {
    opacity: 1;
}

/* About Section */
.about-section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
}

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

.about-title {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #d6d3d1;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

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

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    color: #d97706;
    margin: 0 auto 0.5rem;
}

.stat-value {
    font-size: 1.875rem;
    font-family: Georgia, serif;
    color: #f59e0b;
}

.stat-label {
    color: #a8a29e;
    font-size: 0.875rem;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-images-left,
.about-images-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-images-right {
    padding-top: 3rem;
}

.about-image-box {
    aspect-ratio: 1;
    overflow: hidden;
}

.about-image-box.tall {
    aspect-ratio: 3/4;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-box:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(217, 119, 6, 0.2);
    padding: 3rem 4rem;
    background: rgba(41, 37, 36, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #d97706;
}

.footer-brand {
    font-size: 1.5rem;
    font-family: Georgia, serif;
    color: #f59e0b;
}

.footer-tagline {
    color: #a8a29e;
}

.footer-heading {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info-item {
    display: flex;
    gap: 0.5rem;
    color: #a8a29e;
}

.footer-info-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-hours {
    color: #a8a29e;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-closed {
    padding-top: 0.5rem;
}

.footer-reserve-text {
    color: #a8a29e;
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(217, 119, 6, 0.2);
    text-align: center;
    color: #78716c;
}

/* Menu Page Styles */
.menu-hero {
    padding: 4rem 4rem;
    text-align: center;
}

.menu-hero h1 {
    font-size: 5rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.menu-hero p {
    font-size: 1.25rem;
    color: #d6d3d1;
}

.menu-section {
    position: relative;
    z-index: 1;
    padding: 0 4rem 6rem;
}

.menu-category {
    margin-bottom: 5rem;
}

.menu-category h2 {
    font-size: 2.5rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(217, 119, 6, 0.3);
}

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

.menu-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-0.5rem);
}

.menu-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: transform 0.5s;
}

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

.menu-item-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d97706;
    color: #fff;
    padding: 0.5rem 1rem;
    font-family: Georgia, serif;
    font-size: 1.25rem;
}

.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item h3 {
    font-size: 1.25rem;
    font-family: Georgia, serif;
    color: #f5f5f4;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    transition: color 0.3s;
}

.menu-item:hover h3 {
    color: #f59e0b;
}

.menu-item p {
    color: #a8a29e;
    line-height: 1.75;
    padding: 0 0.5rem;
}

.tasting-menu {
    margin-top: 8rem;
    padding: 3rem;
    border: 1px solid rgba(217, 119, 6, 0.3);
    text-align: center;
    background: linear-gradient(to right, rgba(120, 53, 15, 0.2), rgba(180, 83, 9, 0.2));
}

.tasting-menu h2 {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.tasting-menu p {
    font-size: 1.25rem;
    color: #d6d3d1;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.tasting-price {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: #f59e0b;
    margin-bottom: 2rem;
}

.tasting-price span {
    font-size: 1rem;
    color: #a8a29e;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.scale-in {
    animation: scaleIn 0.6s ease-out 0.6s both;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid,
    .about-grid,
    .gallery-grid,
    .menu-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .navbar,
    .hero-section,
    .gallery-section,
    .about-section,
    .footer,
    .menu-section {
        padding: 2rem;
    }
    
    .nav-links .nav-link {
        display: none;
    }
    
    .about-images-right {
        padding-top: 0;
    }
}
