    :root {
        --bg: #0f172a;
        --bg-soft: #111827;
        --card: rgba(255, 255, 255, 0.08);
        --text: #f8fafc;
        --muted: #cbd5e1;
        --accent: #f59e0b;
        --accent-2: #fb7185;
        --line: rgba(255, 255, 255, 0.12);
        --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
        --radius: 22px;
        --max: 1200px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        background:
            linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.88)),
            url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
        color: var(--text);
        line-height: 1.6;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .container {
        width: min(92%, var(--max));
        margin: 0 auto;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(14px);
        background: rgba(15, 23, 42, 0.72);
        border-bottom: 1px solid var(--line);
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .logo span {
        color: var(--accent);
    }

    .nav-links {
        display: flex;
        gap: 28px;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        color: var(--muted);
        transition: 0.3s;
        font-size: 0.98rem;
    }

    .nav-links a:hover {
        color: var(--text);
    }

    .btn {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 999px;
        font-weight: 700;
        transition: 0.3s ease;
        border: 1px solid transparent;
        cursor: pointer;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--accent), #f97316);
        color: #111827;
        box-shadow: var(--shadow);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
    }

    .btn-secondary {
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.05);
        color: var(--text);
    }

    .hero {
        min-height: 92vh;
        display: grid;
        place-items: center;
        padding: 80px 0 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 850px;
        background: rgba(15, 23, 42, 0.5);
        border: 1px solid var(--line);
        padding: 50px 34px;
        border-radius: 28px;
        box-shadow: var(--shadow);
    }

    .tag {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(245, 158, 11, 0.14);
        color: #fde68a;
        font-size: 0.9rem;
        margin-bottom: 18px;
        border: 1px solid rgba(245, 158, 11, 0.25);
    }

    .hero h1 {
        font-size: clamp(2.4rem, 6vw, 5rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 1.08rem;
        color: var(--muted);
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    section {
        padding: 90px 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(17, 24, 39, 0.96));
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 12px;
    }

    .section-header p {
        color: var(--muted);
        max-width: 700px;
        margin: 0 auto;
    }

    .about-grid,
    .menu-grid,
    .features,
    .gallery,
    .contact-grid {
        display: grid;
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }

    .about-card,
    .menu-card,
    .feature-card,
    .contact-card,
    .reservation-box {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        backdrop-filter: blur(10px);
    }

    .about-card {
        padding: 34px;
    }

    .about-card p {
        color: var(--muted);
        margin-bottom: 16px;
    }

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

    .stat {
        text-align: center;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--line);
    }

    .stat h3 {
        color: var(--accent);
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .about-image {
        min-height: 420px;
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card {
        padding: 28px;
    }

    .feature-card h3 {
        margin-bottom: 10px;
        color: #fff;
    }

    .feature-card p {
        color: var(--muted);
    }

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

    .menu-card {
        overflow: hidden;
    }

    .menu-card img {
        height: 230px;
        width: 100%;
        object-fit: cover;
    }

    .menu-info {
        padding: 24px;
    }

    .menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .menu-top h3 {
        font-size: 1.2rem;
    }

    .price {
        color: var(--accent);
        font-weight: 700;
    }

    .menu-info p {
        color: var(--muted);
        font-size: 0.96rem;
    }

    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 20px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .reservation {
        text-align: center;
    }

    .reservation-box {
        padding: 42px 28px;
        max-width: 820px;
        margin: 0 auto;
    }

    .reservation-box p {
        color: var(--muted);
        margin: 14px auto 24px;
        max-width: 620px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-card h3 {
        margin-bottom: 18px;
    }

    .contact-list {
        list-style: none;
    }

    .contact-list li {
        margin-bottom: 14px;
        color: var(--muted);
    }

    form {
        display: grid;
        gap: 14px;
    }

    input,
    textarea {
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.05);
        color: var(--text);
        outline: none;
    }

    input::placeholder,
    textarea::placeholder {
        color: #94a3b8;
    }

    textarea {
        min-height: 140px;
        resize: vertical;
    }

    footer {
        background: #0b1120;
        border-top: 1px solid var(--line);
        text-align: center;
        padding: 26px 16px;
        color: var(--muted);
    }

    @media (max-width: 1024px) {

        .about-grid,
        .menu-grid,
        .features,
        .contact-grid,
        .gallery {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .nav {
            flex-direction: column;
            gap: 14px;
        }

        .nav-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .about-grid,
        .menu-grid,
        .features,
        .contact-grid,
        .gallery,
        .stats {
            grid-template-columns: 1fr;
        }

        .hero-content {
            padding: 34px 22px;
        }

        .hero h1 {
            font-size: 2.4rem;
        }
    }