@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;800;900&display=swap");
:root {
    --gold: #f4c741;
    --gold2: #fff0a8;
    --orange: #ff6200;
    --black: #030303;
    --soft: #f6f0e2;
    --ink: #070707;
    --muted: #777;
    --line: rgba(244, 199, 65, 0.34);
    --panel: rgba(255, 255, 255, 0.055);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--black);
    color: var(--soft);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}
a {
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0 0 1rem;
}
h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 400;
}
.section-dark {
    background: #030303;
    color: #fff;
}
.section-light {
    background: var(--soft);
    color: #000;
}
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 90;
    opacity: 0.075;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 3px 3px;
}
.cursor-glow {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 199, 65, 0.2), transparent 62%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}
.topbar {
    height: 76px;
    padding: 0 clamp(18px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    background: rgba(3, 3, 3, 0.76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(244, 199, 65, 0.16);
}
.brand {
    font-family: Anton, sans-serif;
    font-size: 34px;
    letter-spacing: 0.02em;
    color: var(--gold);
    line-height: 0.8;
}
.brand span {
    display: block;
    font: 800 9px/1 Inter;
    letter-spacing: 0.33em;
    color: #fff;
    text-transform: uppercase;
    margin-top: 7px;
}
.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav a {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
    padding: 12px 14px;
    border-radius: 999px;
    transition: 0.25s;
}
.nav a:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 26px rgba(244, 199, 65, 0.35);
}
.hamburger {
    display: none;
    background: none;
    border: 0;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
}
.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    padding: 126px clamp(18px, 6vw, 92px) 108px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(244, 199, 65, 0.22), transparent 30%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.72)),
        url("https://images.unsplash.com/photo-1604908176997-125f25cc6f3d?auto=format&fit=crop&w=1800&q=80")
            center/cover;
    opacity: 0.98;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(244, 199, 65, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(244, 199, 65, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(34px, 6vw, 88px);
    align-items: center;
}
.eyebrow {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--gold);
    margin: 0 0 22px;
}
.eyebrow.dark {
    color: #000;
}
.hero h1 {
    font-family: Anton, sans-serif;
    font-size: clamp(86px, 15vw, 230px);
    line-height: 0.74;
    letter-spacing: -0.058em;
    text-transform: uppercase;
    text-wrap: balance;
	margin-left: -8px;
}
.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    text-shadow: 0 0 34px rgba(244, 199, 65, 0.18);
}
.lead {
    max-width: 650px;
    font-size: clamp(18px, 2.1vw, 25px);
    line-height: 1.28;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero_img_doe {
	height: 100%;
	margin-left: -15%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 17px 24px;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 0.13em;
    font-size: 12px;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.28s;
}
.btn:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 0 35%, rgba(255, 255, 255, 0.55) 48%, transparent 62%);
    transform: translateX(-120%);
    transition: 0.55s;
}
.btn:hover:before {
    transform: translateX(120%);
}
.btn:hover {
    transform: translateY(-3px);
}
.btn.gold {
    color: #070707;
    background: linear-gradient(115deg, #9d6d00 0%, var(--gold) 34%, #fff3aa 48%, var(--gold) 62%, #9d6d00 100%);
    background-size: 220% 100%;
    box-shadow: 0 0 38px rgba(244, 199, 65, 0.35);
    /*animation: shine 3s linear infinite;*/
}
.btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}
@keyframes shine {
    to {
        background-position: 220% 0;
    }
}
.hero-art {
    position: relative;
    min-height: 560px;
}
.kebab-card {
    position: absolute;
    inset: 38px 0 0;
    /*border: 1px solid var(--line);*/
    /*background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(244, 199, 65, 0.12));*/
    /*box-shadow: 0 30px 120px rgba(0, 0, 0, 0.75);*/
    overflow: hidden;
    transform: rotate(-2deg);
}
.mega-word {
    position: absolute;
    inset: auto 0 34%;
    font-family: Anton;
    font-size: clamp(95px, 12vw, 190px);
    letter-spacing: -0.08em;
    text-align: center;
    color: rgba(255, 255, 255, 0.045);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
}
.wrap-visual {
    position: absolute;
    width: 68%;
    height: 44%;
    left: 16%;
    bottom: 16%;
    border-radius: 48% 52% 48% 52%;
    background: linear-gradient(
        110deg,
        #dfb15c,
        #ffe09a 30%,
        #b16625 31%,
        #fff0be 45%,
        #2f1608 46%,
        #d22 51%,
        #56a047 56%,
        #f3dfb2 61%,
        #d59b42
    );
    filter: drop-shadow(0 28px 32px #000);
    transform: rotate(-13deg);
}
.stamp {
    position: absolute;
    right: 5%;
    top: 40%;
    z-index: 4;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--gold);
    color: #000;
    font-family: Anton;
    letter-spacing: 0.06em;
    line-height: 1;
    animation: spin 12s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.ticker,
.marquee {
    overflow: hidden;
    white-space: nowrap;
}
.ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: #000;
    font-family: Anton;
    font-size: clamp(34px, 5.2vw, 74px);
    line-height: 0.92;
    text-transform: uppercase;
	padding-top: 2px; 
	
	
}
.ticker span,
.marquee span,
.footer-marquee span {
    display: inline-block;
    animation: move 18s linear infinite;
}
@keyframes move {
    to {
        transform: translateX(-100%);
    }
}
.about {
    padding: clamp(74px, 9vw, 122px) clamp(18px, 6vw, 90px);
}
.split {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: clamp(28px, 5vw, 70px);
    align-items: end;
}
.about h2,
.contact h2,
.section-head h2 {
    font-family: Anton;
    font-size: clamp(54px, 9.2vw, 134px);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-wrap: balance;
}
.split p:last-child {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.38;
    color: #151515;
}
.story {
    padding: 110px 90px 90px 90px;
}
.story-grid {
    align-items: center;
    margin: auto;
}
.story-block h3 {
    font-family: Anton;
    font-size: 180px;
    line-height: 0.89;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin: 0 0 22px;
}
.story-block p {
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.52;
    color: rgba(255, 255, 255, 1);
    max-width: 550px;
	font-weight: normal;
}
.photo-card {
    min-height: 430px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(244, 199, 65, 0.95) 0 45%, #111 45% 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.photo-card:after {
    content: "";
    position: absolute;
    inset: 22%;
    border-radius: 44%;
    background: linear-gradient(130deg, #f1d290, #391705, #da2c18, #64a84a, #f7e9bd);
    transform: rotate(-18deg);
    filter: drop-shadow(0 25px 25px #000);
}
.photo-card span {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 18px;
    font-family: Anton;
    font-size: clamp(58px, 7vw, 92px);
    line-height: 0.78;
    color: #fff;
    letter-spacing: -0.04em;
}
.photo-card.alt {
    background: linear-gradient(135deg, #111 0 50%, rgba(244, 199, 65, 0.95) 50%);
}
.menu {
    padding: clamp(84px, 10vw, 130px) clamp(18px, 5vw, 80px);
}
.section-head {
    margin-bottom: 28px;
}
.marquee {
    margin: 28px calc(clamp(18px, 5vw, 80px) * -1) 42px;
    background: #000;
    color: var(--gold);
    font-family: Anton;
    font-size: clamp(45px, 7vw, 98px);
    line-height: 0.9;
    text-transform: uppercase;
    border-top: 3px solid black;
}
.menu-filter {
    position: sticky;
    top: 84px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 34px;
    padding: 12px;
    background: rgba(246, 240, 226, 0.78);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}
.filter {
    border: 1px solid #0b0b0b;
    background: #fff;
    color: #000;
    border-radius: 0;
    padding: 16px 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    transition: 0.25s;
    position: relative;
    overflow: hidden;
}
.filter span {
    font-family: Anton;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 0.8;
    letter-spacing: -0.035em;
}
.filter em {
    font-style: normal;
    font-size: 11px;
    line-height: 1;
    background: #000;
    color: var(--gold);
    border-radius: 999px;
    padding: 7px 9px;
    min-width: 28px;
    text-align: center;
}
.filter:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0 36%, rgba(244, 199, 65, 0.35), transparent 64%);
    transform: translateX(-120%);
    transition: 0.45s;
}
.filter:hover:before,
.filter.active:before {
    transform: translateX(120%);
}
.filter.active,
.filter:hover {
    background: #000;
    color: var(--gold);
    box-shadow: 8px 8px 0 var(--gold);
    transform: translate(-3px, -3px);
}
.filter.active em,
.filter:hover em {
    background: var(--gold);
    color: #000;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.menu-card {
    background: #fff;
    border: 1px solid #111;
    min-height: 456px;
    padding: 16px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.36s,
        box-shadow 0.36s,
        opacity 0.25s;
    position: relative;
    overflow: hidden;
}
.menu-card:after {
    content: attr(data-label);
    position: absolute;
    right: 16px;
    top: 16px;
    background: rgba(0, 0, 0, 0.86);
    color: var(--gold);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 8px 10px;
}
.menu-card:hover {
    transform: translateY(-12px) rotate(-0.9deg);
    box-shadow: 14px 14px 0 #000;
}
.menu-card h3 {
    font-family: Anton;
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 0.86;
    letter-spacing: -0.035em;
    margin: 18px 0 10px;
    text-transform: uppercase;
}
.menu-card p {
    color: #333;
    line-height: 1.4;
    font-weight: 550;
    margin: 0 0 22px;
}
.menu-card strong {
    align-self: flex-start;
    background: #000;
    color: var(--gold);
    padding: 13px 16px;
    font-size: 15px;
    letter-spacing: 0.04em;
}
.food {
    height: 198px;
    background: #111;
    position: relative;
    overflow: hidden;
    border: 1px solid #111;
}
.food:before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    background: conic-gradient(from 20deg, #f7d98d, #b45b22, #e12616, #5da545, #fff0bc, #f7d98d);
    filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.45));
}
.food:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 45%, rgba(244, 199, 65, 0.18), transparent 58%);
}
.food.kebab:before,
.food.kebab2:before {
    border-radius: 48% 52%;
    height: 80px;
    top: 58px;
    transform: rotate(-18deg);
}
.food.teller:before,
.food.falafel:before {
    background: radial-gradient(circle, #bd7526 0 18%, transparent 19%),
        radial-gradient(circle at 70% 50%, #5ba840 0 20%, transparent 21%), #f6eee0;
}
.food.pide:before,
.food.pide2:before,
.food.pide3:before {
    border-radius: 50% 50% 48% 48%;
    height: 78px;
    top: 60px;
    transform: scaleX(1.5);
}
.food.drink:before {
    border-radius: 20px;
    width: 70px;
    height: 130px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(#f7d98d 0 20%, #111 20% 32%, var(--gold) 32%);
}
.timeline-section {
    padding: clamp(88px, 10vw, 135px) clamp(18px, 6vw, 90px);
}
.timeline {
    position: relative;
    max-width: 980px;
    margin: 12px auto 0;
    display: grid;
    gap: 30px;
}
.line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}
.time-item {
    width: 48%;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
}
.time-item:nth-child(odd) {
    margin-left: auto;
}
.time-item span {
    font-family: Anton;
    font-size: clamp(54px, 6vw, 78px);
    line-height: 0.85;
    color: var(--gold);
}
.time-item h3 {
    font-family: Anton;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 0.9;
    margin: 12px 0 10px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}
.time-item p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}
.contact {
    padding: clamp(84px, 10vw, 130px) clamp(18px, 6vw, 90px);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
}
.contact-copy {
    font-size: 18px;
    line-height: 1.5;
    max-width: 560px;
}
.map-wrap {
    height: 330px;
    border: 1px solid #000;
    box-shadow: 12px 12px 0 #000;
    margin-top: 26px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.15);
}
.contact-form {
    background: #080808;
    color: #fff;
    padding: 28px;
    border: 1px solid var(--gold);
    box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.22);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-row.full {
    grid-column: 1/-1;
}
.form-row label {
    display: block;
    font-weight: 950;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.13em;
    margin-bottom: 8px;
    color: var(--gold);
}
input,
textarea {
    width: 100%;
    background: #111;
    border: 1px solid rgba(244, 199, 65, 0.25);
    color: #fff;
    padding: 16px;
    font: inherit;
    outline: none;
    border-radius: 0;
}
input:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(244, 199, 65, 0.12);
}
.form-row.error input,
.form-row.error textarea {
    border-color: #ff3b30;
    animation: shake 0.25s linear 2;
}
.form-row.error label:after {
    content: " - prüfen";
    color: #ff3b30;
}
@keyframes shake {
    50% {
        transform: translateX(4px);
    }
}
.submit {
    grid-column: 1/-1;
    border: 0;
}
.form-message {
    grid-column: 1/-1;
    padding: 14px;
    display: none;
}
.form-message.success{
    display:block;
    background:rgb(60 255 130 / .14);
    border:1px solid rgb(60 255 130 / .4);
    color:#8cffb0;
}

.form-message.error{
    display:block;
    background:rgb(255 59 48 / .14);
    border:1px solid rgb(255 59 48 / .4);
    color:#ff8b84;
}
.footer {
    padding: 0 clamp(18px, 6vw, 90px) 34px;
    overflow: hidden;
}
.footer-marquee {
    margin: 0 calc(clamp(18px, 6vw, 90px) * -1) 54px;
    background: var(--gold);
    color: #000;
    font-family: Anton;
    font-size: clamp(42px, 7vw, 96px);
    line-height: 0.9;
    white-space: nowrap;
    text-transform: uppercase;
	padding-top: 3px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 1fr;
    gap: clamp(28px, 6vw, 86px);
    padding-bottom: 44px;
}
.footer-logo {
    font-family: Anton;
    font-size: clamp(80px, 14vw, 190px);
    line-height: 0.72;
    color: var(--gold);
    letter-spacing: -0.055em;
}
.footer-col {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.footer-col h4 {
    font-family: Anton;
    font-size: 36px;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 22px;
}
.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}
.footer-col a {
    display: block;
    margin: 8px 0;
    transition: 0.2s;
}
.footer-col a:hover {
    color: var(--gold);
    transform: translateX(4px);
}
.footer-brand p {
    max-width: 440px;
    font-weight: 600;
}
.footer-bottom {
    border-top: 1px solid rgba(244, 199, 65, 0.18);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.delay-1 {
    transition-delay: 0.16s;
}
@media (max-width: 1050px) {
    .menu-filter {
        grid-template-columns: repeat(3, 1fr);
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1/-1;
    }
    .footer-bottom {
        flex-direction: column;
    }
}
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #000;
        display: none;
        flex-direction: column;
        padding: 28px;
        border-bottom: 1px solid var(--line);
    }
    .nav.open {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-grid,
    .split,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-art {
        min-height: 260px;
		margin-top: -40px;
    }
    .line {
        left: 0;
    }
    .time-item,
    .time-item:nth-child(odd) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .marquee {
        font-size: 54px;
    }
}
@media (max-width: 620px) {
    body {
        font-size: 15px;
    }
    .topbar {
        height: 66px;
    }
    .brand {
        font-size: 29px;
    }
    .hero {
        padding-top: 98px;
    }
    .hero h1 {
        font-size: 78px;
    }
    .lead {
        font-size: 17px;
    }
    .hero-actions .btn {
        width: 100%;
    }
.menu-filter{
    position:relative;
    top:auto;
    grid-template-columns:1fr;
    padding:8px;
}
    .filter {
        min-height: 52px;
        padding: 13px 12px;
    }
    .filter span {
        font-size: 24px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .about h2,
    .contact h2,
    .section-head h2 {
        font-size: 56px;
    }
    .photo-card {
        min-height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        font-size: 11px;
    }
    .contact-form {
        padding: 20px;
    }
    .map-wrap {
        height: 260px;
    }
}





.order-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn.order {
    min-height: 50px;
    font-size: 11px;
}

.btn.uber {
    background: #06c167;
    border-color: #06c167;
    color: #000;
}

.btn.eat {
    background: #ff8000;
    border-color: #ff8000;
    color: #000;
}

.btn.order:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.22);
}

@media (max-width: 620px) {
    .order-actions .btn {
        width: 100%;
    }
}









.dueruem-drop {
    position: relative;
    width: min(700px, 90vw);
    height: 460px;
    margin: 60px auto;
}

/* Grundlayer */
.drop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    filter: drop-shadow(0 24px 24px rgba(0,0,0,0.55));
    pointer-events: none;
}

/* Brot fällt zuerst runter */
.bread {
    z-index: 1;
    animation: dropBread 0.75s cubic-bezier(.2,.9,.25,1.18) forwards;
}

/* Salat fällt direkt auf das Brot */
.salad {
    z-index: 2;
    animation: dropSalad 0.75s cubic-bezier(.2,.9,.25,1.18) 0.38s forwards;
}

/* Fleisch etwas kleiner und oben auf den Salat */
.meat {
    z-index: 3;
    animation: dropMeat 0.85s cubic-bezier(.2,.85,.25,1.15) 0.76s forwards;
}

/* Brot Endposition */
@keyframes dropBread {
    0% {
        opacity: 0;
        transform: translateY(-260px) scale(1) rotate(-2deg);
    }
    65% {
        opacity: 1;
        transform: translateY(250px) scale(1.04) rotate(2deg);
    }
    82% {
        transform: translateY(225px) scale(.99) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(235px) scale(1) rotate(0deg);
    }
}

/* Salat näher ans Brot */
@keyframes dropSalad {
    0% {
        opacity: 0;
        transform: translateY(-260px) scale(.98) rotate(3deg);
    }
    65% {
        opacity: 1;
        transform: translateY(205px) scale(1.03) rotate(-2deg);
    }
    82% {
        transform: translateY(180px) scale(.99) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(200px) scale(.98) rotate(0deg);
    }
}

/* Fleisch kleiner und näher zum Salat */
@keyframes dropMeat {
    0% {
        opacity: 0;
        transform: translateY(-280px) scale(.8) rotate(-3deg);
    }
    62% {
        opacity: 1;
        transform: translateY(165px) scale(.92) rotate(2deg);
    }
    82% {
        transform: translateY(140px) scale(.90) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(150px) scale(.88) rotate(0deg);
    }
}


.dueruem-drop {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.18s ease-out;
}

.drop {
    transition: transform 0.18s ease-out;
    will-change: transform;
}

@media (max-width: 1080px) {
	.story-block h3 {
		font-size: 100px;
	}	
}

@media (max-width: 620px) {
    .dueruem-drop {
        width: min(340px, 92vw);
        height: 260px;
        margin: -60px auto 0 auto;
    }

    .drop {
        filter: drop-shadow(0 16px 18px rgba(0,0,0,0.5));
    }

    @keyframes dropBread {
        0% {
            opacity: 0;
            transform: translateY(-180px) scale(1) rotate(-2deg);
        }
        65% {
            opacity: 1;
            transform: translateY(175px) scale(1.04) rotate(2deg);
        }
        82% {
            transform: translateY(158px) scale(.99) rotate(-1deg);
        }
        100% {
            opacity: 1;
            transform: translateY(165px) scale(1) rotate(0deg);
        }
    }

    @keyframes dropSalad {
        0% {
            opacity: 0;
            transform: translateY(-180px) scale(.98) rotate(3deg);
        }
        65% {
            opacity: 1;
            transform: translateY(158px) scale(1.03) rotate(-2deg);
        }
        82% {
            transform: translateY(142px) scale(.99) rotate(1deg);
        }
        100% {
            opacity: 1;
            transform: translateY(150px) scale(.97) rotate(0deg);
        }
    }

    @keyframes dropMeat {
        0% {
            opacity: 0;
            transform: translateY(-200px) scale(.8) rotate(-3deg);
        }
        62% {
            opacity: 1;
            transform: translateY(118px) scale(.92) rotate(2deg);
        }
        82% {
            transform: translateY(115px) scale(.88) rotate(-1deg);
        }
        100% {
            opacity: 1;
            transform: translateY(125px) scale(.88) rotate(0deg);
        }
    }
	
	.stamp {
		top: 30%;
		right: 0;
		width: 80px; 
		height: 80px;
	}	

	.hero {
		padding-bottom: 40px !important;
	}

	.story {
		padding: 60px 6vw 40px 6vw;
	}
	.story-block h3 {
		font-size: 50px;
	}
	
}




.stamp {
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* wenn aktiv */
.stamp.show {
    opacity: 1;
}

.footer_logo {
	max-width: 400px;
	width: 100%;
}

.header_logo {
	max-width: 200px;
}







.hamburger {
    display: none;
    background: none;
    border: 0;
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 8px;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    top: 14px;
}

.hamburger span:last-child {
    top: 24px;
}

@media (max-width: 900px) {

    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #000;
        display: none;
        flex-direction: column;
        padding: 28px;
        border-bottom: 1px solid var(--line);
    }

    .nav.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    /* ANIMATION */

    .hamburger.active span:first-child {
        top: 19px;
        transform: rotate(45deg);
    }

    .hamburger.active span:last-child {
        top: 19px;
        transform: rotate(-45deg);
    }
}

@media (max-width: 900px) {
    .menu-card {
        min-height: unset;
    }
}




#scrollTopBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:54px;
    height:54px;
    border:none;
    background:var(--gold);
    color:#000;
    font-size:22px;
    font-weight:900;
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all 0.3s ease;
    box-shadow:0 10px 30px rgb(0 0 0 / .35);
}

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#scrollTopBtn:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 35px rgb(244 199 65 / .35);
}

#scrollTopBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:56px;
    height:56px;
    border:none;
    background:#000;
    border:1px solid var(--gold);
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgb(0 0 0 / .35);
}

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#scrollTopBtn:hover{
    transform:translateY(-4px);
    background:var(--gold);
}

#scrollTopBtn span{
    width:12px;
    height:12px;
    border-top:2px solid var(--gold);
    border-left:2px solid var(--gold);
    transform:rotate(45deg);
    margin-top:4px;
    transition:0.3s ease;
}

#scrollTopBtn:hover span{
    border-color:#000;
}









.legal-panel{
    display:none;
    background:#fff;
    color:#000;
    border:2px solid #000;
    padding:40px;
    margin:40px auto;
    max-width:1200px;
    box-shadow:12px 12px 0 #000;
    position:relative;
}

.legal-panel.is-open{
    display:block;
}

.legal-panel h2{
    font-family:Anton,sans-serif;
    font-size:clamp(48px,6vw,90px);
    line-height:.9;
    text-transform:uppercase;
    margin-bottom:20px;
}

.legal-panel h3{
    font-family:Anton,sans-serif;
    font-size:32px;
    text-transform:uppercase;
    margin:35px 0 12px;
	line-height: 1;
}

.legal-panel p,
.legal-panel li{
    color:#222;
    line-height:1.8;
}

.legal-panel ul{
    list-style:disc;
    padding-left:25px;
    margin:15px 0 25px;
}

.legal-panel a{
    color:#000;
    font-weight:800;
    border-bottom:2px solid var(--gold);
}

.legal-close{
    position:absolute;
    right:20px;
    top:20px;
    width:48px;
    height:48px;
    border:2px solid #000;
    background:#fff;
    cursor:pointer;
    font-size:24px;
    font-weight:900;
}

.legal-close:hover{
    background:var(--gold);
}

.legal-close{
    -webkit-appearance:none;
    appearance:none;

    background:#fff !important;
    color:#000 !important;
    border:2px solid #000;

    outline:none;
    box-shadow:none;
}