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

:root {
    font-family: 'Manrope', sans-serif;
    color-scheme: dark;
    --bg: #08090c;
    --surface: rgba(16, 18, 22, 0.82);
    --accent: #f9633c;
    --accent-soft: rgba(249, 99, 60, 0.1);
    --text: #f5f1ee;
    --muted: #b4a79d;
}

body {
    background: radial-gradient(circle at top, rgba(249, 99, 60, 0.07), transparent 45%), var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 7vw;
    position: sticky;
    top: 0;
    background: rgba(8, 9, 12, 0.65);
    backdrop-filter: blur(14px);
    z-index: 10;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav nav {
    display: flex;
    gap: 1.75rem;
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #f9633c, #f1a65b);
    color: var(--bg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 40px rgba(249, 99, 60, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(249, 99, 60, 0.32);
}

.btn.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(245, 241, 238, 0.32);
    box-shadow: none;
}

main {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding-bottom: 6rem;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7vw;
    background: url('https://images.unsplash.com/photo-1543353071-10c8ba85a904?auto=format&fit=crop&w=1800&q=80') center/cover;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 9, 12, 0.85), rgba(8, 9, 12, 0.45));
}

.hero .content {
    position: relative;
    max-width: 620px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    letter-spacing: 0.03em;
}

.hero p {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.hero .btn.primary {
    background: linear-gradient(135deg, #f9633c, #f1a65b);
    color: var(--bg);
}

.hero .btn.outline {
    border-color: rgba(249, 99, 60, 0.4);
}

section {
    padding: 0 7vw;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu .intro {
    max-width: 520px;
}

.menu h2 {
    font-size: 2.4rem;
}

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

.menu .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.menu article {
    background: rgba(16, 18, 22, 0.82);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(249, 99, 60, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu span {
    margin-top: auto;
    font-weight: 600;
    color: var(--accent);
}

.story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    align-items: center;
}

.story .text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.story .text p {
    color: var(--muted);
}

.story .details {
    display: grid;
    gap: 1.5rem;
}

.story .card {
    background: linear-gradient(135deg, rgba(249, 99, 60, 0.14), rgba(241, 166, 91, 0.08));
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(249, 99, 60, 0.22);
    display: grid;
    gap: 0.5rem;
}

.story .card span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    color: rgba(245, 241, 238, 0.6);
}

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

.gallery img {
    width: 100%;
    border-radius: 20px;
    height: 320px;
    object-fit: cover;
    border: 1px solid rgba(249, 99, 60, 0.16);
}

.reserve {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.reserve .panel {
    background: rgba(16, 18, 22, 0.82);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(249, 99, 60, 0.15);
    display: grid;
    gap: 1rem;
}

.reserve form {
    display: grid;
    gap: 0.75rem;
}

label {
    font-weight: 600;
    letter-spacing: 0.03em;
}

input,
select {
    background: rgba(8, 9, 12, 0.65);
    border: 1px solid rgba(249, 99, 60, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 99, 60, 0.2);
}

.reserve button {
    margin-top: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    background: linear-gradient(135deg, #f9633c, #f1a65b);
    color: var(--bg);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reserve button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(249, 99, 60, 0.32);
}

.reserve .note {
    align-self: center;
    padding: 2rem;
    background: linear-gradient(120deg, rgba(249, 99, 60, 0.18), rgba(241, 166, 91, 0.18));
    border-radius: 24px;
    border: 1px solid rgba(249, 99, 60, 0.22);
    display: grid;
    gap: 0.75rem;
}

.visit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 7vw;
    border-top: 1px solid rgba(249, 99, 60, 0.12);
}

.visit .links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.visit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

footer {
    text-align: center;
    padding: 2rem 7vw;
    color: rgba(245, 241, 238, 0.52);
}

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

    .nav nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 60vh;
        padding: 0 5vw;
    }

    section {
        padding: 0 5vw;
    }

    .visit {
        flex-direction: column;
        text-align: center;
    }
}
