  :root {
    --primary-subtle-bg: #fee2e2; --primary: #dc2626; --primary-dark: #b91c1c; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1c1917; background: #fff; line-height: 1.6; }
h1, h2, h3 { font-family: 'Oswald', sans-serif; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

nav { background: rgba(28,25,23,.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 2px solid var(--primary); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
nav .container { display: flex; align-items: center; justify-content: space-between; }
nav .logo { color: #fff; font-size: 1.4rem; font-weight: 900; text-decoration: none; letter-spacing: -0.5px; }
nav .logo img { height: 38px; vertical-align: middle; margin-right: 8px; }
nav .nav-links { display: flex; gap: 24px; }
nav .nav-links a { color: #d6d3d1; text-decoration: none; font-weight: 500; transition: color .2s; }
nav .nav-links a:hover { color: var(--primary); }

.hero { background: var(--primary); position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(0,0,0,.1); top: -200px; right: -150px; }
.hero::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.05); bottom: -120px; left: -100px; }
.hero .container { position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; padding: 5px 16px; border-radius: 50px; margin-bottom: 20px; }
.hero h1 { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.1; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 32px; }
.btn { display: inline-block; background: #fff; color: var(--primary); padding: 14px 36px; border-radius: 4px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

section { padding: 72px 0; }
section:nth-child(even) { background: #fafaf9; }
.section-tag { display: inline-block; background: var(--primary-subtle-bg); color: var(--primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
h2 { font-size: 2.2rem; font-weight: 900; color: #1c1917; margin-bottom: 8px; }
h2::after { content: ''; display: block; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; margin-top: 10px; }

.menu-list { max-width: 680px; margin: 28px auto 0; }
.menu-item { display: flex; align-items: baseline; padding: 16px 0; border-bottom: 1px solid #f5f5f4; }
.menu-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
.menu-item:last-child { border-bottom: none; }
.menu-name { color: #1c1917; font-size: 1rem; font-weight: 600; }
.menu-dots { flex: 1; height: 1px; border-bottom: 2px dotted color-mix(in srgb, var(--primary) 35%, transparent); margin: 0 12px 4px; min-width: 20px; }
.menu-price { color: var(--primary); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.menu-desc { color: #78716c; font-size: .9rem; margin-top: 20px; line-height: 1.7; text-align: center; }

.o-nas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.o-nas-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.1); }

.contact { background: #1c1917; }
.contact .section-tag { background: color-mix(in srgb, var(--primary) 20%, transparent); color: var(--primary); }
.contact h2 { color: #fff; }
.contact h2::after { background: var(--primary); }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-info p { display: flex; align-items: center; gap: 10px; color: #d6d3d1; }
.contact-info a { color: var(--primary); text-decoration: none; font-weight: 600; }
.social-links { margin-top: 24px; display: flex; gap: 12px; }
.social-links a { background: var(--primary); color: #fff; padding: 8px 24px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: background .2s; }
.social-links a:hover { background: var(--primary-dark); }

.map { padding: 0; }
.map iframe { width:100%;height:420px;border:0;display:block;filter:grayscale(20%); }

footer { background: #111; color: #57534e; text-align: center; padding: 28px 0; font-size: .85rem; }
footer strong { color: var(--primary); }

@media (max-width: 640px) {
    .hero h1 { font-size: 2.2rem; }
    .o-nas-inner { grid-template-columns: 1fr; }
}

/* ── Modern animations ────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero .container > * { animation: fadeUp .7s ease both; }
.hero .container > *:nth-child(1) { animation-delay: .05s; }
.hero .container > *:nth-child(2) { animation-delay: .15s; }
.hero .container > *:nth-child(3) { animation-delay: .25s; }
.hero .container > *:nth-child(4) { animation-delay: .35s; }
.hero .container > *:nth-child(5) { animation-delay: .45s; }

/* ── Typography quality ───────────────────────────── */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Oswald heading refinements */
h1, h2, h3 { letter-spacing: 0.04em; }

/* ── Mobile hamburger nav ─────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    border-radius: 6px;
    color: #d6d3d1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.nav-toggle:hover { opacity: .75; }
.nav-toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; border-radius: 4px; }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    nav .container { flex-wrap: wrap; }
    nav .nav-links {
        order: 9;
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 12px;
        border-top: 1px solid rgba(128,128,128,.18);
        margin-top: 8px;
    }
    nav .nav-links.is-open { display: flex; }
    nav .nav-links a {
        padding: 11px 0;
        font-size: .95rem;
        letter-spacing: 0;
        text-transform: none;
        border-bottom: 1px solid rgba(128,128,128,.1);
        width: 100%;
        display: block;
    }
    nav .nav-links a:last-child { border-bottom: none; }
}
