/* ============================================================
   RESTAURANG PINGVIN · UDDEVALLA
   v2 — Mobile-first, refined details
   ============================================================ */

:root {
    --bg:           #0a0908;
    --bg-2:         #141210;
    --bg-3:         #1c1815;
    --bg-warm:      #2a1e16;     /* Warm brown for cat-card bg */
    --bg-warm-2:    #3d2c20;
    --cream:        #f5efe6;
    --cream-2:      #ddd2c0;
    --muted:        #8a8378;
    --accent:       #d4321a;
    --accent-2:     #ff5733;
    --gold:         #d4a437;
    --gold-2:       #e8c374;
    --green:        #6b8e4e;
    --shadow-lg:    0 30px 80px -20px rgba(0,0,0,.7);
    --shadow-warm:  0 30px 80px -20px rgba(212,80,30,.25);

    --f-display:    'Playfair Display', 'Georgia', serif;
    --f-sans:       'Inter', system-ui, sans-serif;

    --container:    1280px;
    --gutter:       clamp(18px, 4vw, 56px);
    --radius:       18px;
    --radius-sm:    10px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 90px;
}
body {
    font-family: var(--f-sans);
    background: var(--bg);
    color: var(--cream);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* --- LOADER --- */
.loader {
    position: fixed; inset: 0;
    background: var(--bg);
    display: grid; place-items: center;
    z-index: 9999;
    transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-inner img { width: 80px; animation: pulse 1.4s ease-in-out infinite; }
.loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.loader-bar span { display: block; height: 100%; background: var(--accent); animation: loadBar 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.95); opacity: .7; } }
@keyframes loadBar { 0% { width: 0; margin-left: 0; } 50% { width: 100%; margin-left: 0; } 100% { width: 0; margin-left: 100%; } }

/* --- NAVIGATION --- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background .35s ease, padding .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10,9,8,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    border-bottom-color: rgba(255,255,255,.06);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo img {
    height: 48px;
    width: auto;
    transition: height .35s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}
.nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream-2);
    position: relative;
    padding: 8px 0;
    transition: color .25s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s cubic-bezier(.76,0,.24,1);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 24px;
    background: var(--accent);
    color: var(--cream);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background .25s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }

.nav-burger {
    display: none;
    width: 44px; height: 44px;
    position: relative;
}
.nav-burger span {
    position: absolute;
    left: 10px; right: 10px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform .35s ease, opacity .35s ease, top .35s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
    padding: 80px var(--gutter) var(--gutter);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
    font-family: var(--f-display);
    font-size: clamp(28px, 7vw, 44px);
    color: var(--cream);
    font-style: italic;
}
.mobile-menu .mobile-cta {
    margin-top: 16px;
    font-family: var(--f-sans);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: var(--accent);
    border-radius: 999px;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 120px var(--gutter) 60px;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.18) saturate(.9) blur(2px);
    transform: scale(1.08);
    will-change: transform;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(10,9,8,.3) 0%, rgba(10,9,8,.85) 60%, var(--bg) 100%),
        linear-gradient(180deg, rgba(10,9,8,.6) 0%, rgba(10,9,8,.5) 50%, rgba(10,9,8,.98) 100%);
}
.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .35;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .9s cubic-bezier(.22,.61,.36,1) .3s forwards;
}
.eyebrow-line { width: 40px; height: 1px; background: var(--gold-2); opacity: .6; }

.hero-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(54px, 12vw, 180px);
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--cream);
    margin-bottom: 28px;
}
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-word:nth-child(1) { animation-delay: .5s; }
.hero-word:nth-child(2) { animation-delay: .65s; }
.hero-word:nth-child(3) { animation-delay: .8s; }
.hero-word em { font-style: italic; font-weight: 400; color: var(--gold-2); }
.hero-accent { color: var(--accent-2); font-style: italic; font-weight: 600; }

.hero-sub {
    font-size: clamp(15px, 1.6vw, 19px);
    color: var(--cream-2);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp .9s cubic-bezier(.22,.61,.36,1) 1s forwards;
    padding: 0 12px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s cubic-bezier(.22,.61,.36,1) 1.15s forwards;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary {
    background: var(--accent);
    color: var(--cream);
    box-shadow: 0 12px 32px -10px rgba(212,50,26,.7);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(212,50,26,.8); }
.btn-ghost {
    background: rgba(245,239,230,.04);
    color: var(--cream);
    border-color: rgba(245,239,230,.2);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(245,239,230,.1); border-color: var(--cream); transform: translateY(-2px); }

.hero-badges {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: clamp(28px, 6vw, 64px);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.6s forwards;
    padding-top: 20px;
    border-top: 1px solid rgba(232,195,116,.15);
    max-width: 720px;
    margin: 0 auto;
}
.hero-badge { text-align: center; color: var(--cream-2); }
.hero-badge strong {
    font-family: var(--f-display);
    font-size: clamp(26px, 4vw, 40px);
    color: var(--gold-2);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-badge span {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

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

/* Hero scroll indicator — absolute at bottom of hero, like the original v1 */
.hero-scroll {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .3em;
    text-indent: .3em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp 1s ease 1.9s forwards;
    z-index: 3;
    pointer-events: none;
}
.hero-scroll span { display: block; }
.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, var(--muted), transparent);
    position: relative;
    overflow: hidden;
    text-indent: 0;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -56px; left: 0; right: 0; height: 56px;
    background: var(--cream);
    animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { top: -56px; }
    100% { top: 56px; }
}

/* --- SECTION HEAD --- */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-2); }
.section-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(34px, 6.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--cream);
    margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-2); font-weight: 400; }
.section-title.light em { color: var(--accent-2); }
.section-lead {
    font-size: 16px;
    color: var(--cream-2);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

/* --- CATEGORIES --- */
.categories {
    padding: clamp(70px, 12vw, 160px) 0 clamp(40px, 6vw, 80px);
    background: var(--bg);
    position: relative;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 36px);
}
.cat-card {
    position: relative;
    background: var(--bg-2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border-color .5s ease;
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,195,116,.25);
    background: linear-gradient(165deg, var(--bg-warm) 0%, var(--bg-2) 70%);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:nth-child(2) { transform: translateY(24px); }
.cat-card:nth-child(2):hover { transform: translateY(16px); }

.cat-meta {
    padding: 36px 32px 34px;
    position: relative;
    z-index: 1;
}
.cat-no {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 15px;
    color: var(--accent);
    letter-spacing: .1em;
    display: block;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.cat-meta h3 {
    font-family: var(--f-display);
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 600;
    color: var(--cream);
    margin: 0 0 12px;
    letter-spacing: -.01em;
    line-height: 1.05;
}
.cat-meta p {
    color: var(--cream-2);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
    opacity: .75;
    min-height: 48px;
}
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-2);
    transition: gap .3s ease, color .3s ease;
}
.cat-card:hover .cat-link { color: var(--accent-2); }

.legend {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    margin-top: clamp(48px, 8vw, 72px);
    flex-wrap: wrap;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream-2);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.legend-item img { height: 32px; width: auto; }

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 88px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .3em;
    text-indent: .3em;
    text-transform: uppercase;
    transition: color .3s ease;
}
.scroll-hint:hover { color: var(--cream); }

/* --- MENU --- */
.menu {
    padding: clamp(70px, 12vw, 160px) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    position: relative;
}

.menu-tabs-wrap {
    overflow-x: auto;
    margin: 0 calc(-1 * var(--gutter)) 24px;
    padding: 0 var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.menu-tabs-wrap::-webkit-scrollbar { display: none; }
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto;
}
.menu-tab {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream-2);
    background: var(--bg-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 999px;
    transition: all .3s ease;
    white-space: nowrap;
}
.menu-tab:hover { color: var(--cream); border-color: rgba(255,255,255,.2); }
.menu-tab.active {
    color: var(--cream);
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 8px 24px -8px rgba(212,50,26,.6);
}

.menu-search {
    position: relative;
    max-width: 520px;
    margin: 0 auto 48px;
}
.menu-search svg {
    position: absolute;
    left: 20px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--muted);
    stroke: currentColor;
}
.menu-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--bg-3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 999px;
    color: var(--cream);
    font-size: 15px;
    transition: border-color .25s ease, background .25s ease;
}
.menu-search input::placeholder { color: var(--muted); }
.menu-search input:focus { outline: none; border-color: var(--gold-2); background: var(--bg-2); }

.menu-cat { margin-bottom: 64px; }
.menu-cat-head {
    margin-bottom: 36px;
    padding-bottom: 4px;
}
.menu-cat-head h3 {
    font-family: var(--f-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.menu-cat-head h3 em { font-style: normal; color: var(--gold-2); }
.menu-cat-head p { color: var(--muted); font-size: 13px; line-height: 1.55; max-width: 720px; font-style: italic; }

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
}

.menu-item {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    transition: padding-left .35s ease;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { padding-left: 8px; }

.menu-item-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 10px;
}
.menu-item-name {
    flex: 0 1 auto;
    font-family: var(--f-sans);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -.005em;
    line-height: 1.2;
}
.menu-item-name .menu-item-nr {
    margin-right: 12px;
    font-weight: 600;
}
.menu-item-nr {
    font-family: var(--f-sans);
    font-style: normal;
    font-size: 15px;
    color: var(--gold-2);
    letter-spacing: .02em;
    white-space: nowrap;
}
.menu-item-name-sub {
    font-size: 0.62em;
    font-weight: 500;
    color: var(--cream-2);
    letter-spacing: 0;
    white-space: nowrap;
}
.menu-item-dots {
    flex: 1 1 0;
    min-width: 24px;
    border-bottom: 1px dashed rgba(245,239,230,.28);
    transform: translateY(-6px);
}
.menu-item-price {
    flex: 0 0 auto;
    font-family: var(--f-sans);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--gold-2);
    white-space: nowrap;
    letter-spacing: -.005em;
}
.menu-item-price span { font-size: inherit; color: inherit; margin: 0; font-weight: inherit; }

.menu-item-ing {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    opacity: .85;
    max-width: 760px;
}

.menu-item-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.menu-item-signature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 3px 9px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-family: var(--f-sans);
    font-style: normal;
}
.menu-item-tags { display: flex; gap: 6px; }
.tag-badge {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
    color: white;
    font-family: var(--f-sans);
    font-style: normal;
}
.tag-badge.kott { background: var(--accent); }
.tag-badge.kyckling { background: var(--gold); color: var(--bg); }
.tag-badge.veg { background: var(--green); }
.tag-badge.fisk { background: #4a7ba8; }

.menu-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--muted);
    font-style: italic;
}

/* --- ABOUT --- */
.about {
    position: relative;
    padding: clamp(80px, 14vw, 180px) 0;
    overflow: hidden;
}
.about-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.35) saturate(1.1);
    transform: scale(1.02);
}
.about-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, var(--bg) 0%, rgba(10,9,8,.6) 50%, rgba(10,9,8,.2) 100%),
        linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}
.about .container { position: relative; z-index: 2; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text { max-width: 520px; }
.about-lead {
    font-family: var(--f-display);
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.5;
    color: var(--cream);
    margin: 28px 0 22px;
    font-style: italic;
    font-weight: 400;
}
.about-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--cream-2);
    margin-bottom: 14px;
}
.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}
.about-stats div { color: var(--cream-2); }
.about-stats strong {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--gold-2);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.about-stats span {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* --- SIGNATURE / FAVORITER --- */
.signature {
    padding: clamp(70px, 12vw, 160px) 0;
    background: var(--bg);
    position: relative;
}
.signature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,195,116,.15), transparent);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sig-card {
    position: relative;
    background: linear-gradient(165deg, var(--bg-warm) 0%, var(--bg-2) 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(232,195,116,.08);
    transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease, border-color .5s ease;
    padding: 0;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sig-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold-2));
    opacity: .6;
    transition: opacity .4s ease;
}
.sig-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(232,195,116,.25);
}
.sig-card:hover::before { opacity: 1; }

.sig-meta {
    padding: 32px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    position: relative;
}
.sig-tag-inline {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 5px 12px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    margin-bottom: 10px;
}
.sig-cat {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: .08em;
}
.sig-meta h3 {
    font-family: var(--f-display);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 600;
    color: var(--cream);
    margin: 4px 0 12px;
    letter-spacing: -.01em;
    line-height: 1.1;
}
.sig-meta p {
    color: var(--cream-2);
    font-size: 14px;
    line-height: 1.6;
    opacity: .85;
    margin-bottom: auto;
    padding-bottom: 20px;
}
.sig-price {
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold-2);
    line-height: 1;
    margin-top: 8px;
}
.sig-price span { font-size: 13px; color: var(--muted); font-weight: 400; }

/* --- FOOD GALLERY (auto-scrolling carousel) --- */
.food-gallery {
    padding: clamp(70px, 12vw, 140px) 0 clamp(60px, 10vw, 120px);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.food-gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,195,116,.15), transparent);
}
.food-gallery .section-head { margin-bottom: 64px; }

.gallery-row {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.gallery-row + .gallery-row { margin-top: 22px; }

.gallery-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: galleryScroll 80s linear infinite;
    will-change: transform;
}
.gallery-track-reverse {
    animation: galleryScrollReverse 80s linear infinite;
}

.food-gallery:hover .gallery-track { animation-play-state: paused; }

.gallery-item {
    flex: 0 0 auto;
    width: clamp(220px, 26vw, 340px);
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-2);
    position: relative;
    box-shadow: 0 12px 32px -12px rgba(0,0,0,.6);
    transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
    border: 1px solid rgba(255,255,255,.04);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,.4) 100%);
    pointer-events: none;
    transition: opacity .4s ease;
    opacity: .7;
}
.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px -12px rgba(0,0,0,.8);
    border-color: rgba(232,195,116,.25);
}
.gallery-item:hover::after { opacity: .3; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s cubic-bezier(.22,.61,.36,1);
}
.gallery-item:hover img { transform: scale(1.08); }

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

@media (max-width: 768px) {
    .gallery-row + .gallery-row { margin-top: 16px; }
    .gallery-track, .gallery-track-reverse { gap: 14px; animation-duration: 60s; }
    .gallery-item { width: clamp(180px, 56vw, 260px); border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-track, .gallery-track-reverse { animation: none; }
}

/* --- I LOVE PINGVIN BANNER --- */
.love-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    max-height: 720px;
    overflow: hidden;
    background: #1a0d0a;
}
.love-banner-img {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}
.love-banner:hover .love-banner-img { transform: scale(1.03); }
.love-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%);
    pointer-events: none;
}
@media (max-width: 768px) {
    .love-banner { aspect-ratio: 4/3; }
}

/* --- CONTACT --- */
.contact {
    padding: clamp(70px, 12vw, 140px) 0;
    background: var(--bg-2);
    position: relative;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.contact-info .section-eyebrow { color: var(--accent); }
.contact-lead {
    font-size: 16px;
    color: var(--cream-2);
    margin: 22px 0 36px;
    line-height: 1.6;
}
.contact-list { list-style: none; margin-bottom: 36px; }
.contact-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    align-items: start;
    gap: 20px;
}
.contact-label {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 4px;
}
.contact-val { color: var(--cream); line-height: 1.6; font-size: 15px; }
.contact-val.link {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--gold-2);
    transition: color .25s ease;
}
.contact-val.link:hover { color: var(--accent-2); }
.contact-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.contact-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.contact-visual img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 1.4s ease;
}
.contact-visual:hover img { transform: scale(1.04); }
.contact-visual-tag {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    padding: 16px 20px;
    background: rgba(10,9,8,.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(232,195,116,.15);
}
.contact-visual-tag span {
    display: block;
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}
.contact-visual-tag small {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-2);
}

/* --- FOOTER --- */
.footer {
    padding: 52px 0 28px;
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.footer-logo { height: 64px; }
.footer-tag {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 17px;
    color: var(--gold-2);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .1em;
    flex-wrap: wrap;
    gap: 10px;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE-FIRST OPTIMIZATIONS
   ============================================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .signature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sig-card { min-height: 240px; }
}

@media (max-width: 900px) {
    .cat-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .cat-card:nth-child(2) { transform: none; }
    .cat-card:nth-child(2):hover { transform: translateY(-8px); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .menu-grid { grid-template-columns: 1fr; gap: 0; }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }
    .nav-logo img { height: 42px; }
    .nav.scrolled .nav-logo img { height: 36px; }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 110px;
        padding-bottom: 160px;
    }
    .hero-eyebrow { font-size: 10px; gap: 10px; margin-bottom: 18px; }
    .eyebrow-line { width: 24px; }
    .hero-cta { flex-direction: column; align-items: stretch; max-width: 340px; margin-left: auto; margin-right: auto; }
    .hero-cta .btn { width: 100%; padding: 17px 24px; }
    .hero-badges {
        gap: 14px;
        padding-top: 28px;
        margin-top: 8px;
        flex-wrap: nowrap;
        justify-content: space-around;
    }
    .hero-badge { flex: 1; min-width: 0; }
    .hero-badge strong { font-size: clamp(18px, 5vw, 24px); }
    .hero-badge span { font-size: 9px; letter-spacing: .12em; }
    .hero-scroll { bottom: 32px; }
    .scroll-line { height: 40px; }
    .scroll-line::after { top: -40px; height: 40px; }
    @keyframes scrollDot {
        0% { top: -40px; }
        100% { top: 40px; }
    }

    .section-head { margin-bottom: 44px; }
    .section-title { font-size: clamp(32px, 9vw, 56px); }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .sig-card { min-height: 200px; }
    .sig-meta { padding: 26px 22px 26px; }

    .contact-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
    .contact-label { padding-top: 0; }
    .contact-val.link { font-size: 24px; }
    .contact-cta { flex-direction: column; }
    .contact-cta .btn { width: 100%; }
    .contact-visual { aspect-ratio: 4/3; }

    .about-stats { gap: 24px; }
    .about-stats div { flex: 1 1 calc(33% - 16px); min-width: 80px; }

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

    .legend { gap: 20px; }
    .legend-item img { height: 28px; }
    .legend-item span { font-size: 11px; }

    .menu-tabs-wrap { overflow-x: visible; }
    .menu-tabs { justify-content: center; gap: 6px; }
    .menu-tab {
        flex: 0 0 calc(25% - 6px);
        padding: 9px 4px;
        font-size: 9.5px;
        letter-spacing: .08em;
        text-align: center;
    }
    .menu-cat-head h3 { font-size: clamp(26px, 8vw, 38px); }
    .menu-item { padding: 20px 0; }
    .menu-item-name { font-size: 19px; }
    .menu-item-ing { font-size: 13px; }
    .menu-item-price { font-size: 19px; }
    .menu-item-row { gap: 10px; }
    .menu-item-dots { min-width: 16px; }

    .scroll-hint { margin-top: 64px; font-size: 10px; }
}

/* Small mobile */
@media (max-width: 480px) {
    :root { --gutter: 18px; }
    .hero-title { font-size: clamp(44px, 14vw, 80px); }
    .hero-sub { font-size: 14px; margin-bottom: 28px; }
    .hero-badges { gap: 18px; }
    .hero-badge strong { font-size: 20px; }
    .nav-inner { gap: 12px; }
    .cat-meta { padding: 28px 26px 30px; }
    .cat-meta h3 { font-size: 28px; }
    .cat-meta p { font-size: 14px; min-height: 0; }
    .about-lead { font-size: 18px; }
    .about-body { font-size: 14px; }
    .contact-list li { padding: 12px 0; }
}

/* iPhone safe area */
@supports (padding: max(0px)) {
    .nav-inner {
        padding-left: max(var(--gutter), env(safe-area-inset-left));
        padding-right: max(var(--gutter), env(safe-area-inset-right));
    }
}
