/* DÖNER PRO: layout follows the supplied graphic preview. */
:root {
    --red: #E60028;
    --ink: #000000;
    --paper: #FFFFFF;
    --content-width: 920px;
    --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.48;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* Header */
.site-header {
    position: absolute;
    z-index: 10;
    inset: 0 0 auto;
    min-height: 104px;
    padding: 20px var(--gutter);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.site-logo { display: block; width: 76px; }
.site-logo img { width: 76px; height: 76px; object-fit: cover; }
.main-nav {
    display: none;
    position: absolute;
    top: 92px;
    right: var(--gutter);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border: 1px solid #dededc;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.main-nav.is-open { display: flex; }
.main-nav a {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}
.main-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.menu-toggle {
    display: block;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: var(--red);
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero: the two original artworks sit side by side, as in sitepreview. */
.hero-section { background: var(--paper); }
.hero-inner {
    position: relative;
    width: min(1110px, calc(100% - 2 * var(--gutter)));
    min-height: 520px;
    margin: 0 auto;
    padding: 100px 6% 50px;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
    align-items: center;
    gap: 4%;
}
.hero-opening { width: min(100%, 440px); justify-self: center; position: relative; }
.hero-opening img { width: 100%; }
.hero-offer {
    position: absolute;
    right: 4%;
    bottom: 6%;
    padding: 8px 12px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transform: rotate(-2deg);
}
.hero-offer strong { display: block; font-size: 10px; margin-bottom: 2px; }
.hero-emblem { position: relative; width: min(100%, 510px); aspect-ratio: 1; justify-self: center; }
.hero-emblem-ring { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.hero-emblem-person {
    position: absolute;
    left: 20%; top: 22%; width: 62%; height: 62%;
    object-fit: contain;
    object-position: center top;
    mix-blend-mode: multiply;
}
.hero-vegan { position: absolute; width: 40px; height: 40px; right: 6%; bottom: 15%; object-fit: contain; }

/* Film block */
.video-section { background: var(--red); padding: 52px var(--gutter) 56px; }
.video-frame { position: relative; width: min(900px, 100%); margin: 0 auto; }
.video-frame > img:first-child { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-play {
    position: absolute; left: 50%; top: 50%;
    width: 74px; height: 74px; transform: translate(-50%, -50%);
    border: 4px solid white; border-radius: 50%;
}
.video-play span {
    position: absolute; left: 29px; top: 21px;
    width: 0; height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid white;
}
.video-sticker { position: absolute; width: 82px; height: auto; }
.video-sticker-left {
    left: -90px;
    bottom: 8px;
    transform: rotate(-8deg);
    z-index: 10;
}
.video-sticker-right {
    right: -80px;
    bottom: -19px;
    transform: rotate(-12deg);
    z-index: 10;
}

/* Hero Stickers */
.hero-sticker-top-left {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 120px;
    transform: rotate(-10deg);
    z-index: 5;
}

.hero-sticker-top-right {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 120px;
    transform: rotate(10deg);
    z-index: 5;
}

.hero-sticker-bottom-right {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 120px;
    transform: rotate(5deg);
    z-index: 5;
}

/* Desktop nav (>900px): inline links, no hamburger */
@media (min-width: 901px) {
    .menu-toggle { display: none !important; }
    .main-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        padding: 0;
        gap: 22px;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .main-nav a {
        font-size: 12px;
        padding: 4px 0;
    }
}

/* Main copy */
.content-section { width: min(var(--content-width), calc(100% - 2 * var(--gutter))); margin: 0 auto; }
.content-block { position: relative; }
.content-copy { max-width: 690px; margin: 0 auto; }
.content-block h2 {
    margin: 0 0 8px;
    color: var(--red);
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    font-weight: 800;
}
.content-block p { margin: 0; font-size: clamp(16px, 1.55vw, 19px); line-height: 1.5; }
.content-block p + p { margin-top: 12px; }
.content-block strong { font-weight: 800; }
.idea-block { padding: 26px 0 50px; }
.why-block { padding: 0 0 48px; }
.why-block .content-copy { max-width: 690px; }
.why-block .content-copy h2 { margin-bottom: 8px; }
.content-sticker { position: absolute; width: 92px; height: auto; }
.sticker-right { right: -45px; top: 7px; transform: rotate(6deg); }
.sticker-left { left: -75px; top: 14px; transform: rotate(-5deg); }

/* Team arrangement follows the three-column composition in sitepreview2. */
.team-block { padding: 0 0 48px; }
.team-block > h2 { max-width: 690px; margin-left: auto; margin-right: auto; }
.team-layout {
    position: relative;
    min-height: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 32px;
}
.team-person { width: 100%; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.team-copy p { font-size: clamp(16px, 1.55vw, 19px); line-height: 1.48; }
.team-sticker { width: 82px; left: 50%; top: 44%; transform: translate(-50%, -50%) rotate(-8deg); z-index: 2; }
.location-block { padding: 0 0 48px; }
.ingredients-block { min-height: 132px; padding: 0 0 48px; }
.ingredients-block .content-copy { max-width: 690px; }
.ingredients-block sup { font-size: .55em; position: relative; top: -.35em; }
.ingredients-sticker { top: 8px; }

/* Footer is kept quiet because it is not part of the graphic composition. */
.site-footer { border-top: 1px solid #d9d9d7; padding: 24px var(--gutter); background: var(--paper); }
.footer-content { width: min(var(--content-width), 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; color: #6b6d6d; font-size: 12px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--red); }

@media (max-width: 900px) {
    .hero-inner { min-height: 580px; padding-left: 2%; padding-right: 2%; }
    .video-sticker-left { left: -20px; }
    .video-sticker-right { right: -20px; }
    .content-sticker { width: 78px; }
    .sticker-left { left: -38px; }
    .sticker-right { right: -22px; }
}

@media (max-width: 680px) {
    .site-header { min-height: 82px; padding: 14px 20px; }
    .site-logo, .site-logo img { width: 60px; height: 60px; }
    .menu-toggle {
        display: block; width: 46px; height: 46px; padding: 10px;
        border: 0; background: transparent; cursor: pointer;
    }
    .menu-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--red); transition: transform .2s ease, opacity .2s ease; }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .main-nav {
        display: none; position: absolute; top: 78px; right: 14px;
        padding: 16px; flex-direction: column; align-items: stretch; gap: 4px;
        background: var(--paper); border: 1px solid #dededc; box-shadow: 0 8px 22px rgba(0,0,0,.12);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 10px 12px; }
    .hero-inner {
        width: calc(100% - 32px); min-height: 0; padding: 104px 0 34px;
        display: flex; flex-direction: column; gap: 20px;
    }
    .hero-opening { width: min(88vw, 360px); }
    .hero-emblem { width: min(88vw, 360px); }
    .hero-vegan { right: 10%; bottom: 34%; width: 28px; height: 28px; }
    .hero-offer { right: 6%; bottom: 8%; font-size: 9px; padding: 6px 10px; }
    .video-section { padding: 28px 16px 34px; }
    .video-play { width: 58px; height: 58px; border-width: 3px; }
    .video-play span { left: 22px; top: 16px; border-top-width: 10px; border-bottom-width: 10px; border-left-width: 15px; }
    .video-sticker { width: 56px; }
    .video-sticker-left { left: -15px; bottom: -20px; }
    .video-sticker-right { right: -15px; bottom: -25px; }
    .content-section { width: calc(100% - 40px); }
    .content-block p, .team-copy p { font-size: 16px; line-height: 1.5; }
    .idea-block { padding: 28px 0 40px; }
    .why-block, .team-block, .location-block { padding-bottom: 40px; }
    .content-sticker { width: 60px; }
    .sticker-right { right: -10px; top: 0; }
    .sticker-left { left: -10px; top: 0; }
    .team-block > h2 { padding-right: 18px; }
    .team-layout { grid-template-columns: 1fr 1fr; gap: 12px; min-height: 0; align-items: end; }
    .team-person { width: 100%; height: auto; max-height: 180px; }
    .team-copy { grid-column: 1 / -1; grid-row: 1; padding: 0 8px; margin-bottom: 120px; }
    .team-annika { grid-column: 1; grid-row: 2; }
    .team-freddy { grid-column: 2; grid-row: 2; }
    .team-sticker { width: 58px; top: 62%; }
    .ingredients-block { min-height: 120px; }
    .footer-content { flex-direction: column; align-items: flex-start; }
}

/* ============ KONTAKT & NEWSLETTER ============ */
.contact-block,
.newsletter-block { padding: 0 0 48px; }

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 18px 0 4px;
    font-style: normal;
    font-size: clamp(15px, 1.4vw, 18px);
}
.contact-address a { color: var(--red); text-decoration: none; }
.contact-address a:hover { text-decoration: underline; }

.doenerpro-form {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcc;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(223, 43, 49, .14);
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-consent { gap: 0; }
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    color: #5c5e5f;
    cursor: pointer;
}
.consent-label input { width: auto; flex: none; margin-top: 3px; accent-color: var(--red); }
.consent-label a { color: var(--red); }

.form-submit {
    align-self: flex-start;
    padding: 14px 28px;
    border: 0;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}
.form-submit:hover { background: #c41f26; }
.form-submit:active { transform: scale(.98); }
.form-submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.form-status {
    margin: 18px 0 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 15px;
}
.form-status-ok { background: #e6f2e6; color: #1e6b2f; }
.form-status-error { background: #fbe8e8; color: #a11; }

/* ============ COOKIE-BANNER (DSGVO) ============ */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    max-width: 460px;
    background: #fff;
    border: 1px solid #dededc;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
}
.cookie-inner { padding: 22px; }
.cookie-title {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}
.cookie-text {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    color: #4a4c4d;
}
.cookie-text a { color: var(--red); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-btn {
    flex: 1 1 auto;
    padding: 11px 16px;
    border: 1px solid #cfcfcc;
    border-radius: 4px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.cookie-btn:hover { border-color: #b0b0ac; background: #f3f3f1; }
.cookie-btn-primary { border-color: var(--red); background: var(--red); color: #fff; }
.cookie-btn-primary:hover { background: #c41f26; border-color: #c41f26; }
.cookie-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

@media (max-width: 480px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
    .cookie-inner { padding: 18px; }
    .cookie-actions { flex-direction: column; }
}

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