/* =========================================================
   FORTUS RESTAURANT — STYLE.CSS
   Fixed: mobile nav, scroll arrows, safe area, all screens
   HTML must have:
   <meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
========================================================= */

/* ── Design tokens + safe-area variables ── */
:root{
    --fortus-bg:#474038;
    --fortus-bg-dark:#2b2621;
    --fortus-dark:#080706;
    --fortus-gold:#C7A45B;
    --fortus-gold-light:#D6B66A;
    --fortus-cream:#F8F3EA;
    --fortus-soft:rgba(248,243,234,.72);

    /* safe-area via env() — 0px fallback for non-notch devices */
    --safe-top:env(safe-area-inset-top, 0px);
    --safe-bottom:env(safe-area-inset-bottom, 0px);

    /* single source of truth for header height */
    --header-base:72px;
    --header-h:calc(var(--header-base) + var(--safe-top));
}

/* ── Reset ── */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-tap-highlight-color:transparent;
}

*:focus,
*:active,
*:focus-visible{
    outline:none;
    box-shadow:none;
}

html{
    background:var(--fortus-bg);
    -webkit-text-size-adjust:100%;
    scroll-behavior:smooth;
    scroll-padding-top:calc(var(--header-h) + 20px);
    min-height:100%;
    overflow-x:hidden;
}

body{
    font-family:"Montserrat", Arial, sans-serif;
    background:var(--fortus-bg);
    color:var(--fortus-cream);
    /* overflow-x:hidden on body creates a new scroll container on Samsung
       Internet which breaks position:fixed for tabs and other elements;
       html overflow-x:hidden is sufficient to prevent horizontal scroll */
    min-height:100%;
}

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

a{
    color:inherit;
}

::-webkit-scrollbar{ width:6px; height:6px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{ background:rgba(199,164,91,.35); border-radius:999px; }

/* =========================================================
   HEADER VIDEO BACKGROUND STRIP
========================================================= */

.menu-header-video{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:var(--header-h);
    overflow:hidden;
    z-index:1200;
    pointer-events:none;
}

.menu-header-video video{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(18px) brightness(.55) saturate(.9);
    transform:scale(1.14);
}

.menu-header-video::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        to bottom,
        rgba(8,7,6,.72) 0%,
        rgba(8,7,6,.34) 18%,
        rgba(8,7,6,.38) 100%
    );
}

/* =========================================================
   HEADER
========================================================= */

header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:var(--header-h);
    /* push content below the notch / status bar */
    padding:var(--safe-top) clamp(18px,3.5vw,28px) 0;
    z-index:1300;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    background:rgba(8,7,6,.36);
    backdrop-filter:blur(28px) saturate(140%);
    -webkit-backdrop-filter:blur(28px) saturate(140%);
    border-bottom:1px solid rgba(199,164,91,.18);
    box-shadow:0 8px 24px rgba(0,0,0,.18);
}

/* Logo — centred in the actual visible content strip */
.logo-link{
    position:absolute;
    left:clamp(18px,3.5vw,28px);
    top:calc(var(--safe-top) + var(--header-base) / 2);
    transform:translateY(-50%);
    z-index:2;
}

.site-logo{
    width:clamp(62px,15vw,72px);
    height:auto;
}

/* Desktop nav */
header nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:clamp(16px,2vw,32px);
    margin-left:auto;
}

header nav a{
    color:var(--fortus-cream);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    white-space:nowrap;
    transition:.25s ease;
}

header nav a:hover{
    color:var(--fortus-gold);
}

/* Language switch (inside nav on desktop) */
.lang-switch{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:18px;
    flex-shrink:0;
}

.lang-switch a{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(199,164,91,.45);
    border-radius:50%;
    color:#d8d0c3;
    text-decoration:none;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    transition:.25s ease;
}

.lang-switch a:hover,
.lang-switch a.active{
    background:var(--fortus-gold);
    color:var(--fortus-dark);
    border-color:var(--fortus-gold);
}

/* =========================================================
   HAMBURGER BUTTON
   Hidden on desktop, shown via media query on mobile
========================================================= */

.mobile-menu{
    /* hidden by default — enabled at ≤980px */
    display:none;

    /* position centred in the visible header strip */
    position:absolute;
    right:clamp(18px,3.5vw,28px);
    top:calc(var(--safe-top) + var(--header-base) / 2);
    transform:translateY(-50%);

    z-index:1500;       /* above everything */
    color:var(--fortus-gold);
    font-size:30px;
    line-height:1;
    cursor:pointer;

    /* 44×44 minimum touch target */
    min-width:44px;
    min-height:44px;
    align-items:center;
    justify-content:center;
}

/* =========================================================
   MOBILE NAVIGATION PANEL
   MUST start hidden — JS adds / removes .active
========================================================= */

.mobile-nav{
    /* display:none is the only truly cross-browser safe way to hide an element
       with backdrop-filter — both Samsung Internet and iOS Safari intercept
       pointer-events / bleed content through even with visibility:hidden +
       transform:translateY(-110%) + pointer-events:none */
    display:none;
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    width:100%;
    z-index:1350;

    background:rgba(8,7,6,.97);
    backdrop-filter:blur(32px);
    -webkit-backdrop-filter:blur(32px);
    border-top:1px solid rgba(199,164,91,.16);
}

/* --- open state --- */
.mobile-nav.active{
    display:block;
    animation:mobileNavIn .3s ease forwards;
    min-height:calc(100svh - var(--header-h));
    overflow-y:auto;
}

/* --- closing state (added by JS before removing .active) --- */
.mobile-nav.closing{
    display:block;
    animation:mobileNavOut .22s ease forwards;
}

@keyframes mobileNavIn{
    from{ opacity:0; transform:translateY(-14px); }
    to{   opacity:1; transform:translateY(0); }
}

@keyframes mobileNavOut{
    from{ opacity:1; transform:translateY(0); }
    to{   opacity:0; transform:translateY(-14px); }
}

.mobile-nav a{
    display:block;
    width:100%;
    padding:20px 30px;
    background:transparent;
    border-bottom:1px solid rgba(199,164,91,.18);
    color:var(--fortus-cream);
    text-decoration:none;
    font-family:"Cormorant Garamond", serif;
    font-size:22px;
    letter-spacing:1px;
}

.mobile-nav .mobile-lang{
    width:100%;
    margin:0;
    padding:16px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    background:rgba(8,7,6,.55);
    border-bottom:none;
}

.mobile-nav .mobile-lang a{
    width:36px;
    min-width:36px;
    max-width:36px;
    height:36px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(199,164,91,.45);
    background:rgba(8,7,6,.45);
    font-family:"Montserrat", sans-serif;
    font-size:9px;
    font-weight:700;
    letter-spacing:.7px;
    color:rgba(248,243,234,.75);
}

.mobile-nav .mobile-lang a.active{
    background:var(--fortus-gold);
    border-color:var(--fortus-gold);
    color:var(--fortus-dark);
}

/* =========================================================
   MENU-OPEN BODY STATE
========================================================= */

body.menu-open header{
    background:rgba(0,0,0,.86);
}

body.menu-open .hero-content,
body.menu-open .menu-hero > span,
body.menu-open .menu-hero > h1,
body.menu-open .menu-hero > p{
    opacity:0;
    transform:translateY(-70px);
    filter:blur(8px);
    pointer-events:none;
}

body.menu-open .hero-video,
body.menu-open .hero-image,
body.menu-open .menu-hero,
body.menu-open .food-section,
body.menu-open .pizza-item,
body.menu-open .menu-category-grid{
    filter:blur(8px);
    opacity:0.35;
}

body.menu-open .mobile-nav,
body.menu-open .mobile-nav *{
    filter:none;
    opacity:1;
}

body.menu-open .menu-tabs,
body.menu-open .sushi-tabs,
body.menu-open .bar-tabs{
    opacity:0 !important;
    pointer-events:none !important;
}

/* =========================================================
   HOME PAGE HERO
========================================================= */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    min-height:100svh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:var(--fortus-bg);
}

.hero-video,
.hero-image{
    position:absolute;
    inset:-14px;
    width:calc(100% + 28px);
    height:calc(100% + 28px);
    object-fit:cover;
    z-index:1;
    filter:blur(4px) brightness(.52) contrast(.96) saturate(.78);
    transform:scale(1.05);
}

.hero-dark{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        radial-gradient(circle at center,rgba(0,0,0,.18) 0%,rgba(0,0,0,.38) 42%,rgba(0,0,0,.78) 100%),
        linear-gradient(to bottom,rgba(0,0,0,.55) 0%,rgba(0,0,0,.18) 35%,rgba(0,0,0,.75) 100%);
}

.hero::before{
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:90px;
    z-index:3;
    background:linear-gradient(to bottom,rgba(0,0,0,.75),rgba(0,0,0,0));
    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    bottom:0; left:0;
    width:100%; height:180px;
    z-index:3;
    background:linear-gradient(to top,var(--fortus-bg) 0%,rgba(71,64,56,.82) 36%,rgba(71,64,56,0) 100%);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:5;
    padding:0 22px;
}

.hero-content::before{
    content:"";
    position:absolute;
    left:50%; top:50%;
    transform:translate(-50%,-50%);
    width:680px; height:390px;
    background:rgba(0,0,0,.48);
    filter:blur(55px);
    border-radius:50%;
    z-index:-1;
    pointer-events:none;
}

.hero-logo{
    width:120px;
    height:auto;
    margin:0 auto 16px;
    opacity:.96;
}

.hero-content h1{
    font-family:"Cormorant Garamond",serif;
    color:var(--fortus-cream);
    font-size:clamp(54px,7vw,84px);
    font-weight:500;
    letter-spacing:clamp(10px,1.5vw,18px);
    margin-bottom:10px;
    text-shadow:0 2px 12px rgba(0,0,0,.75),0 8px 35px rgba(0,0,0,.9);
}

.gold-line{
    width:160px;
    height:auto;
    margin:0 auto 18px;
    opacity:.9;
}

.gold-divider{
    width:105px;
    height:1px;
    background:var(--fortus-gold);
    margin:24px auto 28px;
    position:relative;
    opacity:.9;
}

.gold-divider::before{
    content:"";
    width:8px; height:8px;
    border:1px solid var(--fortus-gold);
    transform:translate(-50%,-50%) rotate(45deg);
    position:absolute;
    left:50%; top:50%;
    background:var(--fortus-bg);
}

.hero-content p{
    color:var(--fortus-cream);
    font-size:16px;
    font-weight:500;
    letter-spacing:1.3px;
    margin-bottom:34px;
    text-shadow:0 2px 14px rgba(0,0,0,.9);
    opacity:.92;
}

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

.btn{
    display:inline-block;
    min-width:155px;
    padding:14px 32px;
    border-radius:3px;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
    transition:.3s ease;
}

.btn-outline{
    color:var(--fortus-cream);
    border:1px solid rgba(248,243,234,.8);
    background:rgba(0,0,0,.12);
    backdrop-filter:blur(6px);
}

.btn-outline:hover{ background:var(--fortus-cream); color:var(--fortus-dark); }

.btn-gold{
    color:var(--fortus-dark);
    border:1px solid var(--fortus-gold);
    background:var(--fortus-gold);
}

.btn-gold:hover{ background:var(--fortus-gold-light); border-color:var(--fortus-gold-light); }

.next-section{
    min-height:100vh;
    background:var(--fortus-bg);
    padding:120px 55px;
    text-align:center;
}

.next-section h2{
    font-family:"Cormorant Garamond",serif;
    font-size:64px;
    color:var(--fortus-gold);
}

/* =========================================================
   MENU LANDING PAGE
========================================================= */

.menu-page{
    position:relative;
    min-height:100svh;
    background:
        linear-gradient(rgba(8,7,6,.42),rgba(8,7,6,.48)),
        url("images/menu-background.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:scroll;
}

.menu-page::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;
    background:radial-gradient(circle at center,rgba(199,164,91,.08) 0%,rgba(0,0,0,.16) 45%,rgba(0,0,0,.48) 100%);
}

.menu-page-content{
    max-width:1040px;
    min-height:100vh;
    margin:0 auto;
    padding:calc(var(--header-h) + 75px) 28px 80px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu-intro,.menu-decor{ display:none; }

.menu-category-grid{
    width:100%;
    max-width:940px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
}

.menu-category-card{
    position:relative;
    height:168px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:22px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(199,164,91,.28);
    backdrop-filter:blur(14px) saturate(130%);
    -webkit-backdrop-filter:blur(14px) saturate(130%);
    box-shadow:0 24px 70px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.06);
    transition:.3s ease;
}

.menu-category-card::before{
    content:"";
    position:absolute;
    inset:11px;
    border:1px solid rgba(199,164,91,.17);
    border-radius:16px;
    pointer-events:none;
}

.menu-category-card::after{ display:none; }

.menu-category-card:hover{
    transform:translateY(-3px);
    border-color:rgba(199,164,91,.45);
    background:rgba(255,255,255,.065);
}

.menu-category-card span{
    position:relative;
    z-index:2;
    color:var(--fortus-cream);
    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    font-weight:400;
    line-height:1;
    text-align:center;
    text-shadow:0 4px 20px rgba(0,0,0,.55);
}

.restaurant-card,.sushi-card,.pizza-card,.bar-card,.hookah-card{ background-image:none; }

.hookah-card{
    grid-column:1 / -1;
    max-width:440px;
    width:100%;
    margin:0 auto;
}

/* =========================================================
   CATEGORY HERO PAGES
========================================================= */

.restaurant-page,.sushi-page,.bar-page,.pizza-page{
    background:var(--fortus-bg);
    color:var(--fortus-cream);
    width:100%;
    margin:0; padding:0;
}

.menu-page-content:has(.restaurant-page),
.menu-page-content:has(.sushi-page),
.menu-page-content:has(.bar-page),
.menu-page-content:has(.pizza-page){
    max-width:none;
    width:100%; margin:0; padding:0;
    display:block;
}

/* hero needs position:relative for scroll-down arrow */
.menu-hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:640px;
    margin:0;
    padding:0 24px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* class added by JS so luxury-scroll / scroll-down can be positioned inside */
.menu-hero,.sushi-main-hero,.restaurant-main-hero,.pizza-main-hero,.bar-main-hero{
    position:relative;
}

.menu-hero span{
    color:var(--fortus-gold);
    font-size:12px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    text-shadow:0 3px 14px rgba(0,0,0,.8);
}

.menu-hero h1{
    margin:18px 0;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(56px,8vw,110px);
    font-weight:400;
    color:var(--fortus-cream);
    text-shadow:0 4px 20px rgba(0,0,0,.35);
}

.menu-hero p{
    max-width:560px;
    font-size:15px;
    color:var(--fortus-soft);
    line-height:1.8;
    text-shadow:0 3px 16px rgba(0,0,0,.85);
}

.restaurant-hero{ background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("images/europ-main-pic.jpg"); }
.sushi-main-hero{ background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("images/sushi-main.jpg"); }
.pizza-hero     { background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("images/menu-pizza.jpg"); }
.bar-hero       { background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("images/bar.jpg"); }

/* =========================================================
   CATEGORY TABS
========================================================= */

.menu-tabs,.sushi-tabs,.bar-tabs{
    position:fixed;
    top:auto;
    bottom:0;
    left:0; right:0;
    width:100%;
    z-index:900;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    scroll-behavior:smooth;

    /* explicit height so the unstyled video child never expands the bar */
    height:64px;
    padding:0 16px;
    margin:0;

    background:rgba(55,48,42,.58);
    backdrop-filter:blur(28px) saturate(150%);
    -webkit-backdrop-filter:blur(28px) saturate(150%);
    border-top:1px solid rgba(199,164,91,.22);
    border-bottom:0;
    box-shadow:0 -8px 24px rgba(0,0,0,.18);

    /* hidden until JS adds body.tabs-visible */
    opacity:0;
    pointer-events:none;
    transition:opacity .28s ease;
}

/* ── Video background inside tab bar ── */
.tabs-video{
    position:absolute;
    left:0;   /* JS updates this to match tabsBar.scrollLeft */
    top:0;
    bottom:0;
    width:100%;
    overflow:hidden;
    pointer-events:none;
    z-index:0;
}

.tabs-video video{
    position:absolute;
    top:0; left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(12px) brightness(.35) saturate(.8);
    transform:scale(1.12);
    pointer-events:none;
}

body.tabs-visible .menu-tabs,
body.tabs-visible .sushi-tabs,
body.tabs-visible .bar-tabs{
    opacity:1;
    pointer-events:auto;
}

.menu-tabs::-webkit-scrollbar,
.sushi-tabs::-webkit-scrollbar,
.bar-tabs::-webkit-scrollbar{ display:none; }

.menu-tabs a,.sushi-tabs a,.bar-tabs a{
    position:relative;
    z-index:1;
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:44px;   /* accessible touch target */
    padding:0 15px;
    border:1px solid rgba(210,181,111,.36);
    border-radius:999px;
    background:rgba(8,7,6,.12);
    color:rgba(248,243,234,.92);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1px;
    white-space:nowrap;
    transition:.25s ease;
}

.menu-tabs a.active,.sushi-tabs a.active,.bar-tabs a.active,
.menu-tabs a:hover,.sushi-tabs a:hover,.bar-tabs a:hover{
    background:var(--fortus-gold);
    color:var(--fortus-dark);
    border-color:var(--fortus-gold);
}

/* ── Bottom padding so last items clear the fixed tab bar ── */
body:has(.menu-tabs),
body:has(.sushi-tabs),
body:has(.bar-tabs){
    padding-bottom:68px; /* 64px tab bar + 4px breathing room */
}

@media(max-width:768px){
    body:has(.menu-tabs),
    body:has(.sushi-tabs),
    body:has(.bar-tabs){
        padding-bottom:calc(58px + var(--safe-bottom) + 4px);
    }
}

/* =========================================================
   FOOD SECTIONS
========================================================= */

.sushi-content,.bar-content,.restaurant-content{
    width:100%;
    padding-top:50px;
    background:var(--fortus-bg);
}

.hookah-menu-content{
    width:100%;
    padding-top:50px;
    background:var(--fortus-bg);
}

.food-section{
    max-width:1180px;
    width:calc(100% - 80px);
    margin:80px auto;
    display:grid;
    grid-template-columns:520px minmax(0,1fr);
    gap:12px 64px;
    align-items:start;
    scroll-margin-top:calc(var(--header-h) + 20px);
}

.food-section.reverse{
    grid-template-columns:minmax(0,1fr) 520px;
}

.food-slider{
    grid-column:1; grid-row:1;
    display:flex;
    gap:0;
    width:100%; max-width:520px;
    margin:0;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    border-radius:24px;
    background:#1b1816;
    box-shadow:0 18px 40px rgba(0,0,0,.30),0 8px 18px rgba(0,0,0,.20);
    position:sticky;
    top:calc(var(--header-h) + 72px);
    z-index:1;
}

.food-slider::-webkit-scrollbar{ display:none; }

.food-slider picture{
    flex:0 0 100%;
    width:100%; min-width:100%;
    scroll-snap-align:start;
    display:block;
    border-radius:24px;
    overflow:hidden;
}
.food-slider img{
    flex:0 0 100%;
    width:100%; min-width:100%;
    aspect-ratio:4/3;
    height:auto;
    object-fit:cover;
    object-position:center;
    scroll-snap-align:start;
    border-radius:24px;
}

.slider-dots{
    grid-column:1; grid-row:1;
    align-self:start;
    justify-self:center;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    margin:0;
    padding-top:405px;
    position:sticky;
    top:calc(var(--header-h) + 96px);
    z-index:2;
}

.slider-dots button{
    width:6px; height:6px;
    padding:0; border:0;
    border-radius:999px;
    background:rgba(248,243,234,.35);
    cursor:pointer;
    transition:.25s ease;
}

.slider-dots button.active{ width:22px; background:var(--fortus-gold); }

.food-text{ grid-column:2; grid-row:1; width:100%; max-width:none; }

.food-section.reverse .food-text{ grid-column:1; }
.food-section.reverse .food-slider,
.food-section.reverse .slider-dots{ grid-column:2; }

.food-text h2{
    margin:0 0 28px;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(48px,5vw,68px);
    font-weight:400;
    line-height:1;
    text-align:left;
    color:var(--fortus-cream);
}

.food-text > p{
    max-width:520px;
    margin:0 0 24px;
    text-align:left;
    color:var(--fortus-soft);
    font-size:16px;
    line-height:1.75;
}

.menu-items{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:0;
    margin-top:0;
    overflow:visible;
}

.menu-item{
    display:grid;
    grid-template-columns:minmax(0,1fr) 105px;
    gap:24px;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.menu-item > div{ min-width:0; }

.menu-item h3{
    margin:0 0 6px;
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    font-weight:500;
    line-height:1.15;
    color:var(--fortus-cream);
}

.menu-item span{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    letter-spacing:2.4px;
    text-transform:uppercase;
    color:rgba(246,238,226,.52);
}

.menu-item p{
    margin:0;
    text-align:left;
    font-size:15px;
    line-height:1.55;
    color:rgba(246,238,226,.72);
}

.menu-item strong{
    text-align:right;
    white-space:nowrap;
    font-size:22px;
    font-weight:700;
    color:var(--fortus-gold);
    padding-top:2px;
}

.menu-subtitle{
    margin:46px 0 18px;
    font-family:"Cormorant Garamond",serif;
    font-size:42px;
    font-weight:400;
    text-align:left;
    color:var(--fortus-gold);
}

/* =========================================================
   DROPDOWNS
========================================================= */

.menu-dropdown{ margin-top:25px; }

.menu-dropdown summary{
    cursor:pointer;
    list-style:none;
    color:var(--fortus-gold);
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    min-height:44px;   /* accessible touch target */
}

.menu-dropdown summary::-webkit-details-marker{ display:none; }

.menu-dropdown summary::after{
    content:"+";
    margin-left:12px;
    font-size:20px;
    line-height:1;
}

.menu-dropdown[open] summary::after{ content:"−"; }

.menu-list{ margin-top:20px; }

.menu-list .menu-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid rgba(199,164,91,.2);
}

.menu-list .menu-item div{ display:flex; flex-direction:column; }
.menu-list .menu-item span{ color:var(--fortus-cream); }
.menu-list .menu-item small{ margin-top:6px; font-size:13px; line-height:1.5; opacity:.8; }
.menu-list .menu-item strong{ color:var(--fortus-gold); font-weight:500; white-space:nowrap; }

/* =========================================================
   PIZZA PAGE
========================================================= */

.pizza-list{
    max-width:1180px;
    margin:0 auto;
    padding:80px 42px 60px;
}

.pizza-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:58px;
    align-items:center;
    margin-bottom:95px;
}

.pizza-item.reverse .pizza-photo{ order:2; }

.pizza-photo img,
.pizza-photo .food-slider img{
    width:100%;
    aspect-ratio:1/1;
    height:auto;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 24px 60px rgba(0,0,0,.38);
}

.pizza-photo .food-slider{
    display:flex; gap:0;
    overflow-x:auto; overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    border-radius:30px;
    position:relative; top:auto;
    max-width:none;
}

.pizza-label{ color:var(--fortus-gold); font-size:12px; letter-spacing:4px; text-transform:uppercase; }

.pizza-info h2{
    margin:14px 0 18px;
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(42px,5vw,68px);
    font-weight:400;
    color:var(--fortus-cream);
    line-height:1;
}

.pizza-meta{
    display:flex;
    justify-content:space-between;
    gap:20px;
    max-width:420px;
    margin-bottom:18px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(199,164,91,.25);
}

.pizza-meta span{ color:rgba(199,164,91,.8); font-size:13px; letter-spacing:2px; text-transform:uppercase; }
.pizza-meta strong{ color:var(--fortus-gold); font-size:18px; white-space:nowrap; }
.pizza-info p{ max-width:460px; font-size:15px; line-height:1.9; color:var(--fortus-soft); }

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page{
    background:var(--fortus-bg);
    color:var(--fortus-cream);
    min-height:100vh;
    padding:calc(var(--header-h) + 68px) 24px 90px;
}

.contact-hero{ text-align:center; max-width:760px; margin:0 auto 70px; }

.contact-hero span,.contact-card span{
    color:var(--fortus-gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    font-weight:700;
}

.contact-hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:72px; font-weight:400;
    margin:16px 0 14px;
    color:var(--fortus-cream);
}

.contact-hero p{ color:rgba(248,243,234,.72); font-size:16px; line-height:1.8; }

.contact-wrap{
    max-width:1120px; margin:0 auto;
    display:grid; grid-template-columns:1fr 1fr; gap:28px;
}

.contact-card{
    background:rgba(255,255,255,.035);
    border:1px solid rgba(199,164,91,.22);
    border-radius:18px; padding:42px;
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    backdrop-filter:blur(10px);
}

.contact-info-card h2{ font-family:"Cormorant Garamond",serif; font-size:44px; font-weight:400; color:var(--fortus-cream); margin:14px 0 20px; }
.contact-info-card p{ color:rgba(248,243,234,.72); line-height:1.8; }
.contact-info{ margin-top:30px; }

.contact-item{ display:flex; align-items:center; gap:13px; margin:14px 0; }

.contact-icon{
    width:28px; height:28px;
    display:flex; align-items:center; justify-content:center;
    border:1px solid rgba(199,164,91,.35);
    border-radius:50%;
    color:var(--fortus-gold);
    font-size:13px; flex-shrink:0;
}

.contact-item span:last-child,
.contact-item a,
.contact-info a,
.contact-info a:visited,
.contact-info a:active{ color:rgba(248,243,234,.86); text-decoration:none; }
.contact-item a:hover,.contact-info a:hover{ color:var(--fortus-gold); }

.contact-form{ display:flex; flex-direction:column; gap:16px; }

.contact-form input,
.contact-form textarea{
    width:100%;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(248,243,234,.14);
    border-radius:10px;
    padding:16px 18px;
    color:var(--fortus-cream);
    font-family:"Montserrat",sans-serif;
    font-size:14px;
}

.contact-form textarea{ min-height:150px; resize:none; }
.contact-form input::placeholder,.contact-form textarea::placeholder{ color:rgba(248,243,234,.45); }
.contact-form input:focus,.contact-form textarea:focus{ border-color:rgba(199,164,91,.65); }

.contact-form button{
    margin-top:8px; padding:16px;
    border:none; border-radius:10px;
    background:var(--fortus-gold);
    color:var(--fortus-dark);
    font-weight:700; letter-spacing:1.8px; text-transform:uppercase;
    cursor:pointer; transition:.3s ease;
}

.contact-form button:hover{ background:var(--fortus-gold-light); }

.map-wrap{ max-width:1120px; margin:40px auto 0; }
.map-title{ text-align:center; margin-bottom:22px; }
.map-title span{ color:var(--fortus-gold); text-transform:uppercase; letter-spacing:3px; font-size:12px; }
.map-title h2{ margin-top:10px; color:var(--fortus-cream); font-family:"Cormorant Garamond",serif; font-weight:400; font-size:48px; }

.map-card{
    position:relative; overflow:hidden; height:420px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(199,164,91,.22);
    border-radius:20px;
    backdrop-filter:blur(12px);
    box-shadow:0 25px 70px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.03);
}

#fortus-map{ width:100%; height:100%; }
.leaflet-container{ background:#080706; border-radius:20px; font-family:"Montserrat",sans-serif; }
.leaflet-control-attribution,.leaflet-control-zoom{ display:none; }
.fortus-pin{ width:18px; height:18px; border-radius:50%; background:#C7A45B; box-shadow:0 0 0 6px rgba(199,164,91,.18),0 0 20px rgba(199,164,91,.45); }

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page{
    background:var(--fortus-bg);
    color:var(--fortus-cream);
    min-height:100vh;
    padding:calc(var(--header-h) + 68px) 24px 90px;
}

.about-hero{ text-align:center; max-width:780px; margin:0 auto 70px; }
.about-hero span,.about-text span{ color:var(--fortus-gold); text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:700; }
.about-hero h1{ font-family:"Cormorant Garamond",serif; font-size:76px; font-weight:400; margin:16px 0 14px; }
.about-hero p{ color:rgba(248,243,234,.72); font-size:16px; line-height:1.8; }

.about-section{ max-width:1120px; margin:0 auto; display:grid; grid-template-columns:1.2fr .8fr; gap:28px; align-items:stretch; }

.about-text,.about-card{
    background:rgba(255,255,255,.035);
    border:1px solid rgba(199,164,91,.22);
    border-radius:18px; padding:42px;
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    backdrop-filter:blur(10px);
}

.about-text h2{ font-family:"Cormorant Garamond",serif; font-size:48px; font-weight:400; line-height:1.08; margin:14px 0 24px; }
.about-text p{ color:rgba(248,243,234,.72); font-size:15px; line-height:1.9; margin-bottom:18px; }

.about-card{ display:flex; flex-direction:column; justify-content:center; gap:24px; }
.about-card div{ padding-bottom:24px; border-bottom:1px solid rgba(199,164,91,.18); }
.about-card div:last-child{ border-bottom:none; padding-bottom:0; }
.about-card strong{ display:block; font-family:"Cormorant Garamond",serif; font-size:58px; font-weight:400; color:var(--fortus-gold); }
.about-card span{ color:rgba(248,243,234,.72); font-size:13px; letter-spacing:1px; }

/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page{
    background:var(--fortus-bg);
    color:var(--fortus-cream);
    min-height:100vh;
    padding:calc(var(--header-h) + 68px) 24px 80px;
}

.gallery-hero{ text-align:center; max-width:760px; margin:0 auto 60px; }
.gallery-hero span{ color:var(--fortus-gold); text-transform:uppercase; letter-spacing:3px; font-size:12px; font-weight:700; }
.gallery-hero h1{ font-family:"Cormorant Garamond",serif; font-size:76px; font-weight:400; margin:16px 0 14px; }
.gallery-hero p{ color:rgba(248,243,234,.72); font-size:16px; line-height:1.8; }

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

.gallery-grid img{
    width:100%; aspect-ratio:4/3; height:auto;
    object-fit:cover; border-radius:18px;
    border:1px solid rgba(199,164,91,.18);
    box-shadow:0 20px 55px rgba(0,0,0,.28);
    transition:.35s ease;
}

.gallery-grid img:hover{ transform:translateY(-4px); border-color:rgba(199,164,91,.42); }

/* =========================================================
   HOOKAH PAGE
========================================================= */

.hookah-page{ background:var(--fortus-bg); color:var(--fortus-cream); min-height:100vh; overflow:visible; scroll-behavior:auto; }

.hookah-hero{
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url("images/hoockan.jpg");
    background-size:cover; background-position:center;
    position:relative;
    display:flex; flex-direction:column;
    align-items:center; justify-content:center;
    text-align:center; padding:0 24px;
}
.hookah-hero span{ color:var(--fortus-gold); font-size:12px; font-weight:700; letter-spacing:5px; text-transform:uppercase; text-shadow:0 3px 14px rgba(0,0,0,.8); }
.hookah-hero h1{ margin:18px 0; font-family:"Cormorant Garamond",serif; font-size:clamp(56px,8vw,110px); font-weight:400; color:var(--fortus-cream); text-shadow:0 4px 20px rgba(0,0,0,.35); }
.hookah-hero p{ max-width:560px; font-size:15px; color:var(--fortus-soft); line-height:1.8; text-shadow:0 3px 16px rgba(0,0,0,.85); }

.hookah-hero-logo{ width:220px; height:auto; margin-bottom:26px; filter:drop-shadow(0 8px 24px rgba(0,0,0,.45)); }

.hookah-content{ min-height:100vh; display:flex; flex-direction:column; justify-content:center; padding:120px 24px 80px; scroll-margin-top:var(--header-h); }
.hookah-intro{ max-width:720px; margin:0 auto 40px; text-align:center; }
.hookah-intro span{ color:var(--fortus-gold); font-size:12px; letter-spacing:4px; }
.hookah-intro h2{ margin:16px 0; font-family:"Cormorant Garamond",serif; font-size:58px; font-weight:400; line-height:1.1; }
.hookah-intro p{ color:var(--fortus-soft); font-size:15px; line-height:1.8; }

.hookah-cards{ display:flex; flex-direction:column; gap:18px; max-width:420px; width:100%; margin:0 auto; }

.hookah-offer{ padding:40px; border-radius:24px; background:rgba(255,255,255,.03); border:1px solid rgba(199,164,91,.18); text-align:center; }
.hookah-offer span{ color:var(--fortus-gold); font-size:12px; letter-spacing:3px; }
.hookah-offer h3{ margin:16px 0 12px; font-family:"Cormorant Garamond",serif; font-size:42px; font-weight:400; }
.hookah-offer strong{ color:var(--fortus-gold); font-size:22px; }

.hookah-menu-list{ min-height:100vh; height:auto; padding:95px 0 45px; overflow:visible; }

.hookah-menu-title,.hookah-gallery-title{ text-align:center; margin-bottom:30px; }
.hookah-menu-title span,.hookah-gallery-title span{ color:var(--fortus-gold); font-size:12px; letter-spacing:4px; }
.hookah-menu-title h2,.hookah-gallery-title h2{ margin-top:10px; font-family:"Cormorant Garamond",serif; font-size:52px; font-weight:400; }

.hookah-flavors{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.hookah-flavor{ padding:24px 28px; background:rgba(255,255,255,.02); border-bottom:1px solid rgba(199,164,91,.20); }
.hookah-flavor span{ display:block; color:var(--fortus-gold); font-size:12px; letter-spacing:3px; margin-bottom:8px; }
.hookah-flavor strong{ color:var(--fortus-cream); font-family:"Cormorant Garamond",serif; font-size:28px; font-weight:400; }

.hookah-gallery{ padding:90px 0 60px; }
.hookah-gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.hookah-gallery-grid img{ width:100%; aspect-ratio:4/3; height:auto; object-fit:cover; border-radius:24px; box-shadow:0 20px 50px rgba(0,0,0,.25); }

/* ── Hookah disabled state ─────────────────────────────── */
.hookah-disabled .hookah-hero        { display:none; }
.hookah-disabled .hookah-menu-content{ display:none; }
.hookah-disabled .hookah-content     { display:none; }
.hookah-unavailable                  { display:none; }
.hookah-disabled .hookah-unavailable {
    display:flex; flex-direction:column; align-items:center;
    justify-content:center; min-height:100vh;
    padding:calc(var(--header-h) + 80px) 20px 80px; text-align:center;
}
.hookah-scene    { position:relative; width:150px; margin:0 auto 56px; }
.hookah-svg      { display:block; width:150px; height:auto; filter:drop-shadow(0 0 18px rgba(201,168,76,.35)); }
.smoke-wrap      { position:absolute; top:-92px; left:50%; transform:translateX(-50%); width:70px; height:100px; pointer-events:none; }
.wisp            { position:absolute; bottom:0; border-radius:50%; background:rgba(201,168,76,.45); }
.wisp:nth-child(1){ width:14px; height:14px; left:22px; animation:hookahSmoke 3.8s ease-out infinite 0s; }
.wisp:nth-child(2){ width:10px; height:10px; left:32px; animation:hookahSmoke 3.8s ease-out infinite 1.2s; }
.wisp:nth-child(3){ width:13px; height:13px; left:12px; animation:hookahSmoke 3.8s ease-out infinite 2.4s; }
.wisp:nth-child(4){ width:8px;  height:8px;  left:38px; animation:hookahSmoke 3.8s ease-out infinite 0.7s; }
.wisp:nth-child(5){ width:16px; height:16px; left:16px; animation:hookahSmoke 3.8s ease-out infinite 1.9s; }
@keyframes hookahSmoke{
    0%  { opacity:.7;  transform:translate(0,0)       scale(1);   }
    40% { opacity:.35; transform:translate(9px,-42px)  scale(2.2); }
    100%{ opacity:0;   transform:translate(-6px,-92px) scale(4);   }
}
.hookah-msg-main {
    font-family:'Italiana',serif; font-size:clamp(1.5rem,5vw,2.4rem);
    color:var(--gold,#c9a84c); letter-spacing:.08em; text-transform:uppercase; margin:0 0 10px;
}
.hookah-msg-other{ font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:#555; margin:5px 0; letter-spacing:.04em; }
.hookah-back {
    display:inline-block; margin-top:36px; padding:11px 30px;
    border:1px solid rgba(201,168,76,.3); color:var(--gold,#c9a84c);
    border-radius:4px; font-size:.78rem; letter-spacing:.1em;
    text-transform:uppercase; text-decoration:none; transition:background .25s;
}
.hookah-back:hover{ background:rgba(201,168,76,.1); }

/* =========================================================
   SCROLL-DOWN ARROWS  (both .scroll-down and .luxury-scroll)
   Visible on all screen sizes — never hidden
========================================================= */

.scroll-down{
    position:absolute;
    bottom:42px;
    left:50%;
    transform:translateX(-50%);
    z-index:20;
    width:50px; height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:transparent;
    animation:bounce 2s infinite;
}

.scroll-down:visited,.scroll-down:hover{ color:transparent; }

.scroll-down i{
    display:block;
    width:22px; height:22px;
    border-right:3px solid var(--fortus-gold);
    border-bottom:3px solid var(--fortus-gold);
    transform:rotate(45deg);
}

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

/* luxury-scroll variant */
.luxury-scroll{
    position:absolute;
    bottom:46px;
    left:50%;
    transform:translateX(-50%);
    z-index:50;
    width:44px; height:44px;
    display:block;
    animation:luxuryArrowMove 1.6s ease-in-out infinite;
}

.luxury-scroll::before{
    content:"";
    position:absolute;
    left:50%; top:50%;
    width:18px; height:18px;
    border-right:2px solid var(--fortus-gold);
    border-bottom:2px solid var(--fortus-gold);
    transform:translate(-50%,-50%) rotate(45deg);
}

.luxury-scroll span{ display:none; }

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

/* =========================================================
   PAGE TRANSITIONS
========================================================= */

body.back-exit{ animation:backExitRight .22s cubic-bezier(.4,0,.2,1) forwards; }
body.back-enter{ animation:backEnterSoft .22s ease-out forwards; }

@keyframes backExitRight{
    from{ opacity:1; transform:translateX(0); }
    to{ opacity:0; transform:translateX(18px); }
}

@keyframes backEnterSoft{
    from{ opacity:.6; transform:scale(.985); filter:brightness(.75); }
    to{ opacity:1; transform:scale(1); filter:brightness(1); }
}

/* =========================================================
   RESPONSIVE — 1100 px
========================================================= */

@media(max-width:1100px){
    .gallery-grid{ grid-template-columns:repeat(2,1fr); }
    header nav{ gap:18px; }
    .lang-switch{ margin-left:8px; }
}

/* =========================================================
   RESPONSIVE — 980 px  (tablet / large phone)
   Enable hamburger, hide desktop nav
========================================================= */

@media(max-width:980px){
    /* show hamburger */
    .mobile-menu{ display:flex; }
    header nav{ display:none; }

    .menu-tabs,.sushi-tabs,.bar-tabs{
        justify-content:flex-start;
        gap:8px;
        padding:9px 12px;
    }

    .food-section,.food-section.reverse{
        width:100%; max-width:100%;
        margin:18px 0 20px; padding:0;
        display:grid;
        grid-template-columns:1fr;
        gap:8px;
        scroll-margin-top:calc(var(--header-h) + 20px);
    }

    .food-section:last-child,.food-section.reverse:last-child{
        margin-bottom:0;
    }

    .food-slider,
    .food-section.reverse .food-slider{
        grid-column:1; grid-row:1;
        width:calc(100% - 28px); max-width:100%;
        margin:14px auto 8px;
        border-radius:22px;
        position:relative; top:auto;
        z-index:1;
    }

    .food-slider img{ aspect-ratio:4/3; height:auto; border-radius:22px; box-shadow:none; }

    .slider-dots,
    .food-section.reverse .slider-dots{
        grid-column:1; grid-row:2;
        padding-top:0;
        position:relative; top:auto;
        margin:0 0 10px;
        justify-self:center;
    }

    .food-text,
    .food-section.reverse .food-text{
        grid-column:1; grid-row:3;
        width:100%; max-width:100%;
        padding:0 18px;
    }

    .food-text h2{ font-size:44px; line-height:1; text-align:center; margin:10px 0 12px; }
    .food-text > p{ max-width:340px; margin:0 auto 14px; font-size:14px; line-height:1.55; text-align:center; }

    .menu-item{ grid-template-columns:minmax(0,1fr) 78px; gap:10px; padding:13px 0; }
    .menu-item h3{ font-size:23px; line-height:1.13; }
    .menu-item span{ font-size:11px; letter-spacing:1.7px; }
    .menu-item p{ font-size:13px; line-height:1.45; }
    .menu-item strong{ font-size:18px; }
    .menu-subtitle{ font-size:28px; text-align:center; margin:18px 0 10px; }

    .pizza-list{ padding:48px 18px 40px; }
    .pizza-item,.pizza-item.reverse{ grid-template-columns:1fr; gap:18px; margin-bottom:56px; }
    .pizza-item.reverse .pizza-photo{ order:0; }
}

/* =========================================================
   RESPONSIVE — 768 px  (phones)
   Tabs move to bottom bar; various layout fixes
========================================================= */

@media(max-width:768px){
    .hero{ min-height:100vh; min-height:100svh; }

    .hero-video,.hero-image{
        inset:-18px;
        width:calc(100% + 36px); height:calc(100% + 36px);
        filter:blur(5px) brightness(.48) contrast(.95) saturate(.72);
        transform:scale(1.08);
    }

    .hero-content::before{ width:360px; height:300px; filter:blur(45px); }
    .hero-logo{ width:95px; margin-bottom:14px; }
    .hero-content h1{ font-size:clamp(46px,13vw,52px); letter-spacing:clamp(7px,2vw,9px); }
    .hero-content p{ font-size:14px; line-height:1.6; margin-bottom:28px; }
    .hero-buttons{ flex-direction:column; align-items:center; gap:12px; }
    .btn{ min-width:145px; width:min(220px,80vw); padding:13px 24px; font-size:11px; }

    .menu-page-content{
        min-height:calc(100svh - var(--header-h));
        display:flex;
        padding:calc(var(--header-h) + 42px) 20px 34px;
    }

    .menu-category-grid{ grid-template-columns:1fr; max-width:100%; gap:14px; }

    .menu-category-card{
        height:118px; border-radius:18px;
        backdrop-filter:none; -webkit-backdrop-filter:none;
        box-shadow:none;
    }

    .menu-category-card::before{ inset:10px; border-radius:14px; border-color:rgba(199,164,91,.16); }
    .menu-category-card span{ font-size:31px; }
    .hookah-card{ max-width:100%; }

    .menu-hero{ min-height:100vh; min-height:100svh; padding:0 22px; }
    .menu-hero h1{ font-size:clamp(44px,13vw,54px); }
    .menu-hero p{ font-size:14px; }

    /* ── Tabs: mobile-specific sizing ── */
    .menu-tabs,.sushi-tabs,.bar-tabs{
        height:calc(58px + var(--safe-bottom));
        z-index:9999;
        justify-content:flex-start;
        gap:8px;
        padding:10px 12px calc(10px + var(--safe-bottom)) 12px;
        border-radius:0;
    }

    .contact-page,.about-page,.gallery-page{
        padding:calc(var(--header-h) + 52px) 18px 70px;
    }

    .contact-hero,.about-hero,.gallery-hero{ margin-bottom:42px; }
    .contact-hero h1,.about-hero h1,.gallery-hero h1{ font-size:clamp(40px,12vw,54px); }

    .contact-wrap,.about-section{ grid-template-columns:1fr; gap:20px; }
    .about-section{ display:flex; flex-direction:column; }
    .contact-card,.about-text,.about-card{ padding:28px 22px; border-radius:16px; }
    .contact-info-card h2,.about-text h2{ font-size:36px; }
    .about-card strong{ font-size:46px; }

    .map-card{ height:320px; border-radius:16px; }
    .leaflet-container{ border-radius:16px; }
    .map-title h2{ font-size:34px; }

    .gallery-grid{ grid-template-columns:1fr; gap:16px; }
    .gallery-grid img{ border-radius:16px; }

    .hookah-content{ min-height:calc(100svh - 86px); justify-content:center; padding:90px 22px 35px; }
    .hookah-intro{ max-width:500px; margin:0 auto 32px; }
    .hookah-intro h2{ max-width:320px; margin:0 auto 20px; font-size:34px; line-height:1.15; }
    .hookah-intro p{ font-size:14px; line-height:1.7; }
    .hookah-offer{ padding:28px 22px; }
    .hookah-offer h3{ font-size:32px; }
    .hookah-flavors,.hookah-gallery-grid{ grid-template-columns:1fr; }
    .hookah-gallery-grid img{ border-radius:18px; }
    .hookah-gallery-title h2,.hookah-menu-title h2{ font-size:38px; }
}

/* =========================================================
   RESPONSIVE — 420 px  (small phones)
========================================================= */

@media(max-width:420px){
    :root{ --header-base:64px; }

    .site-logo{ width:60px; }
    .mobile-menu{ font-size:28px; }

    .food-text h2{ font-size:40px; }
    .menu-item{ grid-template-columns:minmax(0,1fr) 74px; }
    .menu-item h3{ font-size:21px; }
    .menu-item strong{ font-size:17px; }

    .menu-tabs a,.sushi-tabs a,.bar-tabs a{
        min-height:38px;
        padding:0 11px;
        font-size:11.5px;
    }
}

/* =========================================================
   QR TABLE SERVICE — floating cloche button + overlay
========================================================= */

/* Floating cloche button */
#qr-service-btn{
    position:fixed;
    bottom:calc(72px + var(--safe-bottom));
    right:clamp(16px,4vw,22px);
    z-index:8800;

    width:52px;
    height:52px;
    border-radius:50%;
    border:1.5px solid rgba(199,164,91,.45);
    background:rgba(8,7,6,.90);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 6px 24px rgba(0,0,0,.45), 0 0 0 1px rgba(199,164,91,.12);

    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:var(--fortus-gold);
    transition:transform .18s ease, box-shadow .18s ease;
    padding:0;
    -webkit-tap-highlight-color:transparent;
}

#qr-service-btn:active{
    transform:scale(.91);
    box-shadow:0 2px 12px rgba(0,0,0,.5);
}

#qr-service-btn svg{
    width:22px;
    height:22px;
}

/* Full-screen overlay */
#qr-overlay{
    display:none;
    position:fixed;
    inset:0;
    z-index:10000;
    background:rgba(8,7,6,.72);
    backdrop-filter:blur(14px) saturate(120%);
    -webkit-backdrop-filter:blur(14px) saturate(120%);
    align-items:center;
    justify-content:center;
}

#qr-overlay.active{
    display:flex;
    animation:qrFadeIn .22s ease forwards;
}

@keyframes qrFadeIn{
    from{ opacity:0; }
    to{   opacity:1; }
}

/* Panel card */
#qr-panel{
    width:min(300px,88vw);
    background:rgba(14,12,10,.95);
    border:1px solid rgba(199,164,91,.28);
    border-radius:22px;
    padding:26px 22px 24px;
    box-shadow:0 28px 72px rgba(0,0,0,.65), 0 0 0 1px rgba(199,164,91,.08);
    animation:qrPanelIn .28s cubic-bezier(.34,1.56,.64,1) forwards;
}

@keyframes qrPanelIn{
    from{ opacity:0; transform:scale(.86) translateY(22px); }
    to{   opacity:1; transform:scale(1)   translateY(0); }
}

/* Panel header */
#qr-panel-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(199,164,91,.16);
}

#qr-panel-header span{
    font-family:"Cormorant Garamond",serif;
    font-size:19px;
    font-weight:400;
    color:var(--fortus-cream);
    letter-spacing:.4px;
}

#qr-panel-header strong{
    color:var(--fortus-gold);
    font-weight:600;
}

#qr-close{
    width:28px;
    height:28px;
    border:none;
    background:rgba(199,164,91,.10);
    border-radius:50%;
    color:rgba(248,243,234,.65);
    font-size:13px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .18s;
    padding:0;
    flex-shrink:0;
}

#qr-close:active{ background:rgba(199,164,91,.22); }

/* Action buttons list */
#qr-actions{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.qr-action-btn{
    width:100%;
    padding:14px 18px;
    background:rgba(199,164,91,.07);
    border:1px solid rgba(199,164,91,.20);
    border-radius:13px;
    color:var(--fortus-cream);
    font-family:"Cormorant Garamond",serif;
    font-size:18px;
    font-weight:400;
    letter-spacing:.3px;
    cursor:pointer;
    text-align:left;
    transition:background .18s, border-color .18s;
    display:flex;
    align-items:center;
    gap:11px;
    -webkit-tap-highlight-color:transparent;
}

.qr-action-btn:active{
    background:rgba(199,164,91,.17);
    border-color:rgba(199,164,91,.48);
}

.qr-action-btn:disabled{
    opacity:.45;
    cursor:default;
}

.qr-btn-icon{
    font-size:18px;
    line-height:1;
    flex-shrink:0;
}

/* Success state */
#qr-success{
    display:none;
    text-align:center;
    padding:12px 0 4px;
}

#qr-success.active{ display:block; }

#qr-success-title{
    font-family:"Cormorant Garamond",serif;
    font-size:26px;
    font-weight:400;
    color:var(--fortus-cream);
    margin-bottom:6px;
}

#qr-success-sub{
    font-family:"Montserrat",sans-serif;
    font-size:10.5px;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:var(--fortus-gold);
}

/* Hide tab bars when overlay is open */
body.qr-open .menu-tabs,
body.qr-open .sushi-tabs,
body.qr-open .bar-tabs{
    opacity:0 !important;
    pointer-events:none !important;
}

/* ── CONTACT FORM FEEDBACK ───────────────────────────────── */
#contact-feedback{
    display:none;
    margin-top:16px;
    padding:14px 18px;
    border-radius:12px;
    font-family:"Montserrat",sans-serif;
    font-size:11.5px;
    letter-spacing:1.2px;
    text-transform:uppercase;
    text-align:center;
    animation:cfFadeIn .3s ease forwards;
}
@keyframes cfFadeIn{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }

#contact-feedback.cf-success{
    display:block;
    background:rgba(199,164,91,.10);
    border:1px solid rgba(199,164,91,.35);
    color:var(--fortus-gold);
}
#contact-feedback.cf-error{
    display:block;
    background:rgba(180,60,60,.10);
    border:1px solid rgba(180,60,60,.35);
    color:#c97070;
}

.contact-form button[type="submit"]:disabled{
    opacity:.55;
    cursor:not-allowed;
}
