:root{
  /* Markenfarben aus dem Logo (bruehgefluester-Logo.svg): dunkles Grün + Gold */
  --coffee-dark:#183F36;
  --coffee-mid:#2C5C4E;
  --coffee-warm:#8A6A3F;
  --caramel:#D2AF7B;
  --cream:#F7F1E8;
  --cream-2:#EFE4D4;
  --text:#1E2E29;
  --text-soft:#516158;
  --border:#E3D5C1;
  --radius:14px;
  --shadow:0 2px 10px rgba(24,63,54,0.10);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:var(--cream);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:Georgia,"Times New Roman",serif;color:var(--coffee-dark);line-height:1.25;margin:0 0 .5em}
h1{font-size:clamp(28px,4vw,42px)}
h2{font-size:clamp(20px,2.6vw,28px)}
h3{font-size:19px}
p{margin:0 0 1em}
a{color:var(--coffee-warm)}
a:hover{color:var(--coffee-mid)}
.container{max-width:960px;margin:0 auto;padding:0 20px}

/* header */
header.site{background:var(--coffee-dark);color:var(--cream)}
.logo-row{display:flex;align-items:center;padding:18px 20px}
.brand{display:flex;align-items:center;text-decoration:none}
.header-logo{height:46px;width:auto;display:block}
.nav-row{display:flex;align-items:center;justify-content:space-between;padding:0 20px 14px;gap:16px}
nav.primary{display:flex;gap:22px;flex-wrap:wrap}
nav.primary a{color:var(--cream-2);text-decoration:none;font-size:15px;padding:6px 0;border-bottom:2px solid transparent}
nav.primary a:hover,nav.primary a.active{color:#fff;border-bottom-color:var(--caramel)}
.menu-toggle{display:none;background:none;border:none;color:var(--cream);cursor:pointer;padding:6px}
@media (max-width:720px){
  nav.primary{display:none;flex-direction:column;width:100%;gap:4px}
  nav.primary.open{display:flex}
  .menu-toggle{display:block}
  .nav-row{flex-wrap:wrap}
}

/* breadcrumbs */
.breadcrumbs{padding:14px 20px 0}
.breadcrumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:6px;margin:0;padding:0;font-size:13px;color:var(--text-soft)}
.breadcrumbs li:not(:last-child)::after{content:"›";margin-left:6px;color:var(--border)}
.breadcrumbs a{color:var(--text-soft);text-decoration:none}
.breadcrumbs a:hover{color:var(--coffee-mid)}

/* hero (home) */
.hero{padding:56px 20px 36px;text-align:left;max-width:720px}
.kicker{text-transform:uppercase;letter-spacing:.08em;font-size:12.5px;color:var(--coffee-warm);font-weight:600;margin:0 0 8px}
.lede{font-size:18px;color:var(--text-soft);max-width:60ch}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
.btn{display:inline-block;padding:11px 20px;border-radius:999px;text-decoration:none;font-size:15px;font-weight:600;border:2px solid transparent}
.btn-primary{background:var(--coffee-mid);color:#fff}
.btn-primary:hover{background:var(--coffee-dark);color:#fff}
.btn-ghost{border-color:var(--coffee-mid);color:var(--coffee-mid)}
.btn-ghost:hover{background:var(--coffee-mid);color:#fff}

/* sections / card grids */
.section{padding:28px 20px}
.section-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:16px;flex-wrap:wrap}
.section-more{font-size:14px;text-decoration:none;white-space:nowrap}
.card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:18px}
.card-grid.mini{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px}
.edit-card,.mini-card{display:block;background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;text-decoration:none;color:inherit;box-shadow:var(--shadow);transition:transform .15s ease}
.edit-card:hover,.mini-card:hover{transform:translateY(-2px)}
.edit-card figure,.mini-card figure{margin:0;aspect-ratio:4/3;background:var(--cream-2);display:flex;align-items:center;justify-content:center;overflow:hidden}
.edit-card img,.mini-card img{width:100%;height:100%;object-fit:cover}
.cat-icon{width:52%;height:52%;color:var(--coffee-warm);opacity:.75}
.edit-body{padding:14px 16px}
.edit-body h3{font-size:16px;margin:0 0 4px}
.mini-card h3{font-size:14px;margin:10px 12px 12px;font-family:inherit;font-weight:600;color:var(--coffee-dark)}
.edit-note{font-size:13.5px;color:var(--text-soft);margin:0}

/* product hero */
.product-hero{display:grid;grid-template-columns:220px 1fr;gap:28px;padding:36px 0 20px;align-items:start}
.product-hero .art{aspect-ratio:1;background:var(--cream-2);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;overflow:hidden;border:1px solid var(--border)}
.product-hero .art img{width:100%;height:100%;object-fit:cover}
.product-hero .cat-icon{width:56%;height:56%}
@media (max-width:640px){.product-hero{grid-template-columns:1fr}.product-hero .art{max-width:220px}}

.rating-row{display:flex;align-items:center;gap:10px;margin:10px 0;flex-wrap:wrap}
.rating-stars{position:relative;display:inline-block;font-size:18px;letter-spacing:2px}
.rating-stars-bg{color:var(--border)}
.rating-stars-fg{position:absolute;inset:0;overflow:hidden;color:var(--caramel);white-space:nowrap}
.rating-value{font-weight:700;color:var(--coffee-dark)}
.rating-tag{font-size:12px;color:var(--text-soft);text-transform:uppercase;letter-spacing:.04em}

.product-facts{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0}
.fact-pill{display:inline-flex;align-items:center;gap:6px;background:var(--cream-2);border:1px solid var(--border);border-radius:999px;padding:5px 12px;font-size:13.5px;color:var(--text-soft)}
.fact-pill svg{width:15px;height:15px;color:var(--coffee-warm)}

.chip-row{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
.chip{background:var(--coffee-dark);color:var(--cream);font-size:12px;padding:4px 11px;border-radius:999px}

/* entry / article */
.entry{padding:24px 0 48px}
.entry-head{padding:24px 0 8px}
.entry-meta{color:var(--text-soft);font-size:13.5px;margin-top:4px}
.entry-body{max-width:68ch;margin-top:8px}
.entry-body h2{margin-top:1.7em}
.entry-body h3{margin-top:1.3em}
.entry-body ul,.entry-body ol{padding-left:1.3em}
.entry-body li{margin-bottom:.4em}
.wide-hero-img{margin:0 0 20px;border-radius:var(--radius);overflow:hidden}
.wide-hero-img img{width:100%;height:auto;display:block}

/* Geschmacksprofil / Aromenprofil */
.arom-sub{font-size:13.5px;color:var(--text-soft);max-width:60ch;margin-top:-6px}
.taste-profile{display:flex;flex-direction:column;gap:10px;max-width:60ch;margin:12px 0 24px}
.taste-row{display:grid;grid-template-columns:26px 92px 1fr 40px;align-items:center;gap:10px}
.taste-icon svg{width:20px;height:20px;color:var(--coffee-warm)}
.taste-label{font-size:13.5px;color:var(--text-soft)}
.taste-meter{background:var(--cream-2);border-radius:999px;height:8px;overflow:hidden}
.taste-fill{display:block;height:100%;background:linear-gradient(90deg,var(--caramel),var(--coffee-mid));border-radius:999px}
.taste-value{font-size:12.5px;color:var(--text-soft);text-align:right}
@media (max-width:480px){.taste-row{grid-template-columns:22px 70px 1fr 34px}}

/* footer */
footer.site{background:var(--coffee-dark);color:var(--cream-2);margin-top:40px}
.footer-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;padding:24px 20px;font-size:13.5px}
.footer-brand{display:flex;align-items:center;gap:10px;color:var(--cream-2)}
.footer-logo{height:30px;width:auto;display:block}
.footer-links a{color:var(--cream-2);text-decoration:none;margin-left:16px}
.footer-links a:hover{color:#fff}
