/* The Taste Bar – rekonstruierte Seite. Schlankes eigenes Stylesheet. */

:root {
    --bg:       #14110f;
    --bg-soft:  #1d1916;
    --card:     #211c19;
    --line:     #322b26;
    --text:     #f2ece3;
    --muted:    #b3a89b;
    --gold:     #e8b53d;
    --gold-dk:  #c9992a;
    --radius:   14px;
    --wrap:     1160px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(20,17,15,.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand img { height: 38px; width: auto; }
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a { color: var(--text); font-weight: 600; font-size: .98rem; letter-spacing: .02em; }
.site-nav a:hover { color: var(--gold); text-decoration: none; }
.site-nav a.active { color: var(--gold); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
    background: radial-gradient(120% 120% at 50% 0%, #2a231d 0%, var(--bg) 70%);
    text-align: center;
    padding: 84px 20px 76px;
    border-bottom: 1px solid var(--line);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 18px; }
.hero .lead { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 680px; margin: 0 auto 30px; }
.hero .accent { color: var(--gold); }

.btn {
    display: inline-block; padding: 13px 26px; border-radius: 999px;
    font-weight: 700; letter-spacing: .02em; border: 1px solid var(--gold);
}
.btn-primary { background: var(--gold); color: #1a1510; }
.btn-primary:hover { background: var(--gold-dk); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(232,181,61,.12); text-decoration: none; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 42px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--gold); font-weight: 700; }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }

.card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dk); text-decoration: none; }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
           font-size: 2.6rem; font-weight: 800; color: rgba(255,255,255,.85); }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin: 0; font-size: 1.22rem; color: var(--text); }
.card-body p { margin: 0; color: var(--muted); font-size: .95rem; }
.card-meta { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
.card-more { margin-top: auto; padding-top: 10px; color: var(--gold); font-weight: 600; font-size: .92rem; }
.tag { display: inline-block; align-self: flex-start; background: rgba(232,181,61,.12); color: var(--gold);
       border-radius: 999px; padding: 3px 11px; font-size: .74rem; font-weight: 700; letter-spacing: .04em; }

/* ---------- Detail / article ---------- */
.page-head { padding: 56px 0 8px; text-align: center; }
.page-head .eyebrow { display: block; margin-bottom: 10px; }
.page-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 10px; }
.page-head .sub { color: var(--muted); max-width: 640px; margin: 0 auto; }

.breadcrumb { padding: 22px 0 0; font-size: .88rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

.detail { padding: 34px 0 72px; }
.detail-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 0 0 34px;
                aspect-ratio: 16 / 9; background: var(--bg-soft); }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-media .card-ph { font-size: 4rem; }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: #e3dccf; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 12px; color: var(--gold); }
.recipe-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.ingredients { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.ingredients h2 { margin-top: 0; }
.ingredients ul { list-style: none; padding: 0; margin: 0; }
.ingredients li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.ingredients li:last-child { border-bottom: 0; }

.back-link { display: inline-block; margin-top: 36px; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding: 54px 20px 34px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 320px; margin: 0; }
.footer-col h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin: 4px 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text); }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--muted); margin: 0; font-size: .92rem; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px; text-align: center; }
.footer-bottom p { color: var(--muted); font-size: .82rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
    .recipe-cols { grid-template-columns: 1fr; gap: 26px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px 26px; }
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute; top: 68px; left: 0; right: 0;
        flex-direction: column; gap: 0; background: var(--bg-soft);
        border-bottom: 1px solid var(--line); padding: 8px 20px 16px;
        display: none;
    }
    body.nav-open .site-nav { display: flex; }
    .site-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
    .site-nav a:last-child { border-bottom: 0; }
}
