:root {
    --red: #C1272D;
    --red-light: #E63946;
    --red-dark: #8B1A1F;
    --cream: #F5EFE6;
    --dark: #0F0D0B;
    --dark2: #1A1714;
    --dark3: #241F1B;
    --gold: #D4A847;
    --text: #E8DDD0;
    --text-muted: #9A8F85;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    background: linear-gradient(to bottom, rgba(15,13,11,0.95), transparent);
    backdrop-filter: blur(4px);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(15,13,11,0.97); }

  .nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
  }
  .nav-logo img { height: 52px; }
  .nav-brand { font-family: 'Bebas Neue'; font-size: 1.6rem; letter-spacing: 0.08em; color: var(--cream); }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--red); color: #fff;
    border: none; padding: 0.6rem 1.4rem;
    font-family: 'DM Sans'; font-size: 0.85rem; letter-spacing: 0.08em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative; height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, #2a1010 0%, #0F0D0B 70%);
  }

  .hero-noise {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
  }

  .hero-food {
    position: absolute; right: -2%; top: 50%;
    transform: translateY(-50%);
    width: 62%; max-width: 860px;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(-40px 20px 60px rgba(193,39,45,0.25));
  }

  @keyframes heroFloat {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-52%) translateX(-8px); }
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 6rem;
    animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
    opacity: 0; transform: translateY(40px);
  }

  @keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.2rem;
  }
  .hero-tag::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--red);
  }

  .hero h1 {
    font-family: 'Bebas Neue';
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
    color: var(--cream);
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
  }
  .hero h1 span { color: var(--red); }

  .hero-sub {
    font-family: 'Playfair Display'; font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; }

  .btn-primary {
    background: var(--red); color: #fff;
    border: none; padding: 1rem 2.2rem;
    font-family: 'DM Sans'; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--red-light);
    transform: translateX(-100%); transition: transform 0.3s;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--cream); }
  .btn-ghost::after { content: '→'; font-size: 1.1rem; }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll::after {
    content: ''; width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--red);
    padding: 0.7rem 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    font-family: 'Bebas Neue'; font-size: 1.1rem; letter-spacing: 0.15em;
    color: rgba(255,255,255,0.9); padding: 0 2.5rem;
    display: flex; align-items: center; gap: 2.5rem;
  }
  .marquee-item::after { content: '✦'; font-size: 0.6rem; opacity: 0.7; }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── ABOUT / TAGLINE ── */
  .section { padding: 6rem 6rem; }

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

  .about-mascot {
    position: relative;
  }
  .about-mascot img {
    width: 100%; max-width: 420px;
    filter: drop-shadow(0 20px 60px rgba(193,39,45,0.3));
    animation: mascotWobble 4s ease-in-out infinite;
  }
  @keyframes mascotWobble {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.03); }
  }

  .about-badge {
    position: absolute; top: 10%; right: 0;
    background: var(--red); color: #fff;
    padding: 0.8rem 1.2rem; text-align: center;
    font-family: 'Bebas Neue'; font-size: 1.2rem; letter-spacing: 0.1em;
    transform: rotate(8deg);
    animation: badgePulse 3s ease-in-out infinite;
  }
  @keyframes badgePulse {
    0%, 100% { transform: rotate(8deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.06); }
  }

  .section-label {
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--red); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before {
    content: ''; width: 24px; height: 1px; background: var(--red);
  }

  h2 {
    font-family: 'Bebas Neue';
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 0.95;
    color: var(--cream);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }
  h2 em {
    font-family: 'Playfair Display'; font-style: italic; font-weight: 400;
    color: var(--red);
  }

  .about-text p {
    color: var(--text-muted); line-height: 1.8; font-size: 1rem;
    margin-bottom: 1rem;
  }

  .stats {
    display: flex; gap: 2.5rem; margin-top: 2rem;
  }
  .stat-num {
    font-family: 'Bebas Neue'; font-size: 2.8rem; color: var(--red);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ── MENU ── */
  .menu-section {
    background: var(--dark2);
    padding: 6rem;
  }

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

  .menu-categories {
    display: flex; gap: 1rem; justify-content: center;
    margin-bottom: 3rem; flex-wrap: wrap;
  }
  .cat-btn {
    padding: 0.6rem 1.5rem;
    background: transparent; border: 1px solid rgba(193,39,45,0.3);
    color: var(--text-muted); font-family: 'DM Sans'; font-size: 0.82rem;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    transition: all 0.3s;
  }
  .cat-btn:hover, .cat-btn.active {
    background: var(--red); border-color: var(--red); color: #fff;
  }

  .menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

  .menu-category { padding: 2.5rem 0; }
  .menu-category:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); padding-right: 3rem; }
  .menu-category:nth-child(even) { padding-left: 3rem; }

  .menu-cat-title {
    font-family: 'Bebas Neue'; font-size: 1.8rem; letter-spacing: 0.1em;
    color: var(--red); margin-bottom: 0.3rem;
  }
  .menu-cat-extra {
    font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }

  .menu-item {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 1rem; padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
    cursor: pointer;
  }
  .menu-item:hover { padding-left: 0.5rem; }
  .menu-item:hover .item-name { color: var(--cream); }

  .item-info { flex: 1; }
  .item-num {
    font-size: 0.65rem; color: var(--red); font-weight: 500;
    letter-spacing: 0.1em; margin-bottom: 0.1rem;
  }
  .item-name {
    font-size: 0.95rem; color: var(--text); font-weight: 500;
    margin-bottom: 0.2rem; transition: color 0.3s;
  }
  .item-desc {
    font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
  }
  .item-price {
    font-family: 'Bebas Neue'; font-size: 1.4rem;
    color: var(--cream); letter-spacing: 0.05em;
    white-space: nowrap; flex-shrink: 0;
  }

  .spicy {
    display: inline-flex; gap: 1px; margin-left: 0.4rem;
  }
  .spicy-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); opacity: 0.4;
  }
  .spicy-dot.active { opacity: 1; }

  /* Sauces */
  .sauces-section {
    background: rgba(193,39,45,0.08); border: 1px solid rgba(193,39,45,0.2);
    padding: 1.5rem 2rem; margin-top: 2rem; grid-column: 1 / -1;
  }
  .sauces-title {
    font-family: 'Bebas Neue'; font-size: 1.2rem; color: var(--red);
    letter-spacing: 0.1em; margin-bottom: 1rem;
  }
  .sauces-list {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
  }
  .sauce-item {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.85rem;
  }
  .sauce-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

  /* ── GALLERY ── */
  .gallery-section { padding: 6rem; background: var(--dark); }

  .gallery-header { margin-bottom: 3rem; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    grid-template-rows: 300px 300px;
    gap: 12px;
  }
  .g-item {
    overflow: hidden; position: relative;
    background: var(--dark3);
  }
  .g-item:first-child { grid-row: 1 / 3; }

  .g-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    filter: brightness(0.85);
  }
  .g-item:hover img { transform: scale(1.06); filter: brightness(1); }

  .g-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,13,11,0.8) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.4s;
    display: flex; align-items: flex-end; padding: 1.5rem;
  }
  .g-item:hover .g-overlay { opacity: 1; }
  .g-overlay span {
    font-family: 'Bebas Neue'; font-size: 1.2rem; letter-spacing: 0.1em;
    color: #fff;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 7rem 6rem; text-align: center;
    background: var(--dark2);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: 'KEBAB';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Bebas Neue'; font-size: 22vw; letter-spacing: -0.02em;
    color: rgba(193,39,45,0.04); line-height: 1;
    pointer-events: none; white-space: nowrap;
  }
  .cta-section h2 { margin-bottom: 1rem; }
  .cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
  .cta-section .btn-primary { font-size: 1rem; padding: 1.2rem 3rem; }

  /* ── FOOTER ── */
  footer {
    background: #0A0908;
    padding: 3rem 6rem;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-logo img { height: 48px; opacity: 0.7; }
  .footer-text { color: var(--text-muted); font-size: 0.8rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--red); }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left {
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* Delay helpers */
  .d1 { transition-delay: 0.1s; }
  .d2 { transition-delay: 0.2s; }
  .d3 { transition-delay: 0.3s; }
  .d4 { transition-delay: 0.4s; }

  /* ── ORDER MODAL ── */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(8,6,5,0.88); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
  }
  .modal-backdrop.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--dark2);
    border: 1px solid rgba(193,39,45,0.25);
    width: 100%; max-width: 520px;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
  }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
  .modal-top {
    background: var(--red); padding: 1.4rem 1.8rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .modal-title { font-family:'Bebas Neue'; font-size:1.6rem; letter-spacing:0.1em; color:#fff; }
  .modal-close {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.7); font-size: 1.6rem; line-height:1;
    transition: color 0.2s, transform 0.25s; padding: 0.2rem;
  }
  .modal-close:hover { color:#fff; transform: rotate(90deg); }
  .modal-body { padding: 1.8rem; }
  .modal-status {
    display:flex; align-items:center; gap:0.6rem;
    margin-bottom:1.6rem; padding:0.75rem 1rem;
    background:rgba(255,255,255,0.04); border-left:3px solid var(--red);
  }
  .modal-status-dot { width:9px; height:9px; border-radius:50%; flex-shrink:0; animation:badgePulse 2s ease-in-out infinite; }
  .modal-status-txt { font-size:0.83rem; letter-spacing:0.07em; text-transform:uppercase; color:var(--text-muted); }
  .modal-status-txt strong { color:var(--cream); }
  .modal-options { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:2rem; }
  .order-card {
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:0.7rem; padding:1.6rem 1rem; text-decoration:none;
    border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.03);
    transition:all 0.3s; cursor:pointer; text-align:center;
  }
  .order-card:hover { border-color:var(--red); background:rgba(193,39,45,0.08); transform:translateY(-3px); }
  .order-card img { height:40px; object-fit:contain; }
  .order-card-label { font-family:'Bebas Neue'; font-size:1.1rem; letter-spacing:0.1em; color:var(--cream); }
  .order-card-sub { font-size:0.75rem; color:var(--text-muted); }
  .modal-hours-title {
    font-family:'Bebas Neue'; font-size:0.95rem; letter-spacing:0.15em;
    color:var(--text-muted); margin-bottom:0.7rem;
    display:flex; align-items:center; gap:0.6rem;
  }
  .modal-hours-title::after { content:''; flex:1; height:1px; background:rgba(255,255,255,0.07); }
  .modal-hours-row {
    display:flex; justify-content:space-between; align-items:center;
    padding:0.45rem 0.5rem; border-bottom:1px solid rgba(255,255,255,0.04);
    font-size:0.84rem;
  }
  .modal-hours-row.mtoday { background:rgba(193,39,45,0.09); margin:0 -0.5rem; padding:0.45rem 1rem; }
  .modal-hours-day { color:var(--text-muted); }
  .modal-hours-day.mtoday { color:var(--cream); font-weight:500; }
  .modal-hours-time { font-family:'Bebas Neue'; font-size:1rem; letter-spacing:0.06em; color:var(--text); }
  .modal-hours-time.mtoday { color:var(--red); }
  @media (max-width:500px) {
    .modal-options { grid-template-columns:1fr; }
    .modal-body { padding:1.4rem 1.1rem; }
  }

  /* ── CURSOR ── */
  .cursor {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--red); position: fixed;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--red); position: fixed;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.12s, top 0.12s, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.4;
  }

  /* ── HAMBURGER BUTTON ── */
  .hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; cursor: pointer;
    background: none; border: none; padding: 4px; z-index: 200;
  }
  .hamburger span {
    display: block; height: 2px; width: 100%;
    background: var(--cream); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s, width 0.35s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE DRAWER ── */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 150;
    background: rgba(10,8,7,0.97); backdrop-filter: blur(12px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
  }
  .mobile-menu.open { transform: translateX(0); pointer-events: all; }
  .mobile-menu a {
    font-family: 'Bebas Neue'; font-size: 2.8rem; letter-spacing: 0.08em;
    color: var(--text-muted); text-decoration: none;
    padding: 0.4rem 2rem;
    opacity: 0; transform: translateX(30px);
    transition: color 0.25s, transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  }
  .mobile-menu.open a { opacity: 1; transform: translateX(0); }
  .mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
  .mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
  .mobile-menu.open a:nth-child(3) { transition-delay: 0.20s; }
  .mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
  .mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }
  .mobile-menu a:hover { color: var(--red); transform: translateX(6px) !important; }
  .mobile-menu-cta {
    margin-top: 1.5rem; background: var(--red); color: #fff;
    border: none; padding: 0.9rem 2.5rem;
    font-family: 'DM Sans'; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s 0.38s, transform 0.4s 0.38s, background 0.3s;
  }
  .mobile-menu.open .mobile-menu-cta { opacity: 1; transform: translateY(0); }
  .mobile-menu-cta:hover { background: var(--red-light); }

  /* ── OPENING HOURS ── */
  .hours-grid-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 2rem; }
    .hero-food { width: 100%; right: 0; top: auto; bottom: 0; transform: none; opacity: 0.25; }
    .section, .menu-section, .gallery-section, .cta-section { padding: 4rem 1.5rem; }
    .about { grid-template-columns: 1fr; gap: 2rem; }
    .about-mascot { text-align: center; }
    .about-mascot img { max-width: 280px; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-category:nth-child(odd) { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .menu-category:nth-child(even) { padding-left: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .g-item:first-child { grid-column: 1 / -1; grid-row: auto; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    /* Opening hours mobile */
    .hours-grid-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
    #oteviraci-doba { padding: 4rem 1.5rem !important; }
  }