:root {
    --white: #ffffff;
    --off-white: #F5F5F0;
    --black: #1a1a1a;
    --gole-goli-brown: #8B6F47;
    --overlay: rgba(0, 0, 0, 0.3);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    background: var(--off-white);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.05em;
}

.brand-link {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100vh;
    padding: 100px 40px 40px 40px;
    gap: 20px;
    background: var(--off-white);
}

.hero-column {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.about-section {
    padding: 8rem 4rem;
    background: var(--white);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 6rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    text-align: left;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--black);
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gole-goli-brown);
}

.about-text {
    max-width: 650px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 300;
}

.about-text p:last-child {
    font-style: italic;
    color: var(--gole-goli-brown);
    margin-top: 2rem;
}

.gallery-section {
    padding: 8rem 4rem;
    background: var(--off-white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.menu-section {
    padding: 8rem 4rem;
    background: var(--off-white);
}

.menu-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.menu-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    text-transform: none;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 1.5rem;
}

.menu-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gole-goli-brown);
}

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

.menu-category-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    text-align: center;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.1) 90%, transparent);
    z-index: 1;
}

.menu-item-info {
    flex: 1;
    padding-right: 1rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.menu-item-info h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.menu-item-info p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
}

.menu-item-prices {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    background: var(--white);
    padding-left: 0.5rem;
    position: relative;
    z-index: 2;
}

.menu-item-prices span {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
}

.menu-note {
    margin-top: 2rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: #999;
    font-style: normal;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.5px;
}

.orders-section {
    padding: 8rem 4rem;
    background: var(--off-white);
    color: var(--black);
}

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

.orders-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--black);
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 1.5rem;
}

.orders-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gole-goli-brown);
}

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

.order-step {
    text-align: left;
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.order-step h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: 1px;
}

.order-step p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.payment-details {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-details h3 {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2.5rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.payment-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.payment-value {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    font-family: var(--font-primary);
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-tagline-secondary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
    font-style: italic;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 80px 20px 20px 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
        padding: 60px 20px 20px 20px;
    }

    .hero-column {
        height: 50vh;
    }

    .about-section {
        padding: 6rem 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .gallery-section {
        padding: 6rem 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-section {
        padding: 6rem 2rem;
    }

    .menu-section .container {
        padding: 3rem 2rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-main-title {
        font-size: 2rem;
    }

    .orders-section {
        padding: 6rem 2rem;
    }

    .orders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .menu-main-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
