/*
Theme Name: Cold Brew Crew
Theme URI: https://coldbrewcrew.de
Author: Cold Brew Crew
Description: Premium Cold Brew Infoblog — kaffeebasiertes Magazin-Theme mit edler Typographie und warmer Farbwelt.
Version: 1.3.0
License: GPL-2.0-or-later
Text Domain: coldbrewcrew
*/

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
    --espresso:    #261C14;
    --amber:       #A98467;
    --amber-light: #C4A47E;
    --amber-dark:  #8a6a50;
    --cafe-lait:   #F5EFE6;
    --cream:       #FDFBF7;
    --roasted:     #3D342E;
    --roasted-light: #6b5c53;
    --white:       #ffffff;

    --shadow-sm:  0 2px 8px rgba(38,28,20,.08);
    --shadow-md:  0 6px 24px rgba(38,28,20,.10);
    --shadow-lg:  0 16px 48px rgba(38,28,20,.14);
    --shadow-amber: 0 6px 24px rgba(169,132,103,.35);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --max-w: 1200px;
    --max-w-text: 760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--roasted);
    background-color: var(--cream);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--amber); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--amber-dark); }
a:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--espresso);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: .75rem; }
h4 { font-size: 1.2rem; margin-bottom: .5rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--espresso); font-weight: 700; }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: .4rem; }

blockquote {
    border-left: 4px solid var(--amber);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--cafe-lait);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--espresso);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
.container-narrow {
    max-width: var(--max-w-text);
    margin: 0 auto;
    padding: 0 40px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.section-bg-cream { background: var(--cream); }
.section-bg-lait  { background: var(--cafe-lait); }
.section-bg-dark  { background: var(--espresso); color: var(--cream); }
.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 { color: var(--cream); }
.section-bg-dark p { color: rgba(253,251,247,.8); }

.section-label {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-title-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}
.section-title-line::before {
    content: '';
    display: block;
    width: 4px;
    height: 40px;
    background: var(--amber);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title-line h2 { margin-bottom: 0; }

.text-center { text-align: center; }
.text-amber  { color: var(--amber) !important; }

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--espresso);
    transition: box-shadow .3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(38,28,20,.4);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity .2s ease;
}
.nav-logo img:hover { opacity: .85; }

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}
.nav-menu li a {
    display: block;
    padding: 8px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(253,251,247,.75);
    position: relative;
    transition: color .2s ease;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-menu li a:hover { color: var(--cream); }
.nav-menu li a:hover::after { transform: scaleX(1); }
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--amber);
}
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: transform .3s ease, opacity .3s ease;
    border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   5. HERO SECTIONS
   ============================================================ */
.hero {
    position: relative;
    height: 88vh;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-sm {
    height: 60vh;
    min-height: 420px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 7s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(38,28,20,.88) 0%,
        rgba(38,28,20,.55) 50%,
        rgba(38,28,20,.25) 100%
    );
}
.hero-overlay-center {
    background: linear-gradient(
        to bottom,
        rgba(38,28,20,.3) 0%,
        rgba(38,28,20,.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px 72px;
}
.hero-center .hero-content {
    text-align: center;
    padding-bottom: 80px;
}

.hero .section-label { color: var(--amber-light); }

.hero h1 {
    color: var(--white);
    max-width: 720px;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 16px rgba(38,28,20,.4);
}
.hero-center h1 { max-width: 100%; }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(253,251,247,.82);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-center .hero-subtitle { max-width: 600px; margin: 0 auto 2rem; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn-amber {
    background: var(--amber);
    color: var(--white);
    box-shadow: var(--shadow-amber);
}
.btn-amber:hover {
    background: var(--amber-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(169,132,103,.45);
}
.btn-amber:active { transform: translateY(0); }
.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(253,251,247,.4);
}
.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    background: rgba(169,132,103,.08);
}
.btn-dark {
    background: var(--espresso);
    color: var(--cream);
}
.btn-dark:hover {
    background: var(--roasted);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ============================================================
   7. STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--espresso);
    padding: 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    divide-style: solid;
}
.stat-item {
    padding: 40px 48px;
    border-right: 1px solid rgba(253,251,247,.1);
    text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--amber);
    line-height: 1;
    margin-bottom: .5rem;
    letter-spacing: -0.03em;
}
.stat-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(253,251,247,.6);
}
.stat-desc {
    font-size: .9rem;
    color: rgba(253,251,247,.5);
    margin-top: .4rem;
}

/* ============================================================
   8. SPLIT SECTIONS (Image + Text)
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}
.split-section:hover .split-image img { transform: scale(1.03); }

.split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(38,28,20,.12));
}

.split-content {
    display: flex;
    align-items: center;
    padding: 80px 64px;
    background: var(--cream);
}
.split-content.bg-lait { background: var(--cafe-lait); }
.split-content.bg-dark { background: var(--espresso); }
.split-content.bg-dark h2,
.split-content.bg-dark h3,
.split-content.bg-dark p { color: var(--cream); }
.split-content.bg-dark p { color: rgba(253,251,247,.8); }

.split-inner { max-width: 480px; }

/* ============================================================
   9. CARD GRID
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-body { padding: 28px; }

.card-tag {
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(169,132,103,.12);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
.card p {
    font-size: .9rem;
    color: var(--roasted-light);
    margin-bottom: 1rem;
}

/* Highlighted Card */
.card-highlight {
    background: var(--espresso);
    color: var(--cream);
}
.card-highlight h3,
.card-highlight h4 { color: var(--amber-light); }
.card-highlight p { color: rgba(253,251,247,.75); }

/* Lait Card */
.card-lait { background: var(--cafe-lait); box-shadow: none; }

/* Icon Card */
.icon-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(169,132,103,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}
.icon-card h4 { font-size: 1rem; margin-bottom: .5rem; }
.icon-card p  { font-size: .85rem; color: var(--roasted-light); margin: 0; }

/* ============================================================
   10. AMBER ACCENT BLOCK
   ============================================================ */
.accent-block {
    background: var(--amber);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.accent-block::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.accent-block::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(38,28,20,.08);
}
.accent-block h2,
.accent-block h3 { color: var(--white); }
.accent-block p   { color: rgba(255,255,255,.88); }
.accent-block .section-label { color: rgba(255,255,255,.7); }

.accent-block-content { position: relative; z-index: 1; }

/* ============================================================
   11. PULL QUOTE
   ============================================================ */
.pull-quote {
    margin: 3rem 0;
    padding: 2.5rem 3rem;
    background: var(--cafe-lait);
    border-left: 6px solid var(--amber);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}
.pull-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 0;
    color: var(--amber);
    opacity: .25;
    position: absolute;
    top: 56px;
    left: 20px;
}
.pull-quote p {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--espresso);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   12. STEP GUIDE
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    counter-reset: steps;
}
.step-item {
    position: relative;
    padding: 36px 32px 36px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    counter-increment: steps;
    transition: transform .25s ease, box-shadow .25s ease;
}
.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-item::before {
    content: counter(steps, decimal-leading-zero);
    font-family: Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--amber);
    opacity: .15;
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}
.step-item h4 { font-size: 1rem; margin-bottom: .6rem; color: var(--espresso); }
.step-item p  { font-size: .88rem; color: var(--roasted-light); margin: 0; }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--amber);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 16px;
}

/* ============================================================
   13. DATA TABLE
   ============================================================ */
.brew-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 2rem 0;
    font-size: .9rem;
}
.brew-table thead tr { background: var(--espresso); }
.brew-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--amber-light);
}
.brew-table tbody tr { background: var(--white); }
.brew-table tbody tr:nth-child(even) { background: var(--cafe-lait); }
.brew-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(169,132,103,.1);
    color: var(--roasted);
}
.brew-table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid rgba(169,132,103,.2);
}
.faq-item:first-child { border-top: 1px solid rgba(169,132,103,.2); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--espresso);
    transition: color .2s ease;
}
.faq-question:hover { color: var(--amber); }
.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(169,132,103,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .3s ease;
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--amber); transition: transform .3s ease; }
.faq-item.active .faq-icon { background: var(--amber); }
.faq-item.active .faq-icon svg { fill: white; transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease;
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner {
    padding: 0 0 24px;
    color: var(--roasted-light);
    line-height: 1.8;
    font-size: .95rem;
}

/* ============================================================
   15. COMPARISON (VS BLOCK)
   ============================================================ */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}
.vs-col {
    padding: 40px 36px;
    border-radius: var(--radius-lg);
}
.vs-col-bad {
    background: var(--cafe-lait);
    border: 2px solid rgba(169,132,103,.2);
}
.vs-col-good {
    background: var(--espresso);
    color: var(--cream);
}
.vs-col-good h3 { color: var(--amber-light); }
.vs-col-good p,
.vs-col-good li { color: rgba(253,251,247,.8); }
.vs-col-good ul { color: rgba(253,251,247,.8); }
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber);
    opacity: .5;
}
.vs-col h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.vs-col ul { padding-left: 1.2rem; }
.vs-col li { margin-bottom: .5rem; font-size: .9rem; }
.vs-col .vs-label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .75rem;
    display: block;
}
.vs-col-good .vs-label { color: var(--amber-light); }

/* ============================================================
   16. IMAGE MOSAIC / GALLERY
   ============================================================ */
.img-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 240px);
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.img-mosaic .mosaic-main {
    grid-row: 1 / 3;
}
.img-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.img-mosaic div:hover img { transform: scale(1.04); }
.img-mosaic > div { overflow: hidden; }

/* Two-up image */
.img-two-up {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.img-two-up div { overflow: hidden; height: 300px; }
.img-two-up img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.img-two-up div:hover img { transform: scale(1.04); }

/* Full-width image strip */
.img-strip {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* ============================================================
   17. ÜBER UNS PAGE
   ============================================================ */
.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-item {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--amber);
    box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-item h4 { margin-bottom: .5rem; }
.value-item p { font-size: .88rem; color: var(--roasted-light); margin: 0; }

/* ============================================================
   18. CONTACT FORM
   ============================================================ */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--espresso);
    margin-bottom: 8px;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid rgba(169,132,103,.25);
    border-radius: var(--radius-md);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--roasted);
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
    appearance: none;
}
.form-input:focus,
.form-textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(169,132,103,.15);
}
.form-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(61,52,46,.4); }

.form-notice {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: .9rem;
}
.form-notice-success {
    background: rgba(169,132,103,.12);
    border: 1px solid var(--amber);
    color: var(--amber-dark);
}
.form-notice-error {
    background: rgba(200,60,60,.08);
    border: 1px solid rgba(200,60,60,.4);
    color: #c83c3c;
}

/* ============================================================
   19. DATENSCHUTZ PAGE
   ============================================================ */
.datenschutz-content {
    max-width: var(--max-w-text);
    margin: 0 auto;
    padding: 0 40px;
}
.datenschutz-content h1 { margin-bottom: 1.5rem; }
.datenschutz-content h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--cafe-lait);
}
.datenschutz-content h3 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: .75rem; }
.datenschutz-content ul { margin-bottom: 1rem; }
.datenschutz-content a { word-break: break-all; }
.datenschutz-content .index { list-style: none; padding: 0; }
.datenschutz-content .index li { margin-bottom: .3rem; }
.datenschutz-content .index a { color: var(--amber); }
.datenschutz-content .m-elements { list-style: none; padding: 0; }
.datenschutz-content .m-elements li { padding: 12px 0; border-bottom: 1px solid var(--cafe-lait); font-size: .9rem; }
.datenschutz-content .glossary { list-style: none; padding: 0; }
.datenschutz-content .glossary li { padding: 16px 0; border-bottom: 1px solid var(--cafe-lait); font-size: .9rem; }

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
    background: var(--espresso);
    color: rgba(253,251,247,.65);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    opacity: .9;
}
.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 0;
}

.footer-col h5 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: .875rem;
    color: rgba(253,251,247,.6);
    transition: color .2s ease;
}
.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
    border-top: 1px solid rgba(253,251,247,.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: rgba(253,251,247,.35);
}
.footer-bottom a { color: rgba(253,251,247,.45); }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   21. PAGE INNER HEADER (non-hero pages)
   ============================================================ */
.page-header {
    background: var(--cafe-lait);
    padding: 64px 0 56px;
    border-bottom: 1px solid rgba(169,132,103,.15);
}
.page-header .section-label { display: block; margin-bottom: .75rem; }
.page-header h1 { margin-bottom: .75rem; }
.page-header p  { font-size: 1.1rem; color: var(--roasted-light); max-width: 600px; margin: 0; }

/* ============================================================
   22. ROAST COMPARISON (Kaffeberatung)
   ============================================================ */
.roast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.roast-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.roast-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px; height: 120px;
    border-radius: 50%;
    opacity: .07;
}
.roast-light { background: var(--cafe-lait); }
.roast-light::before { background: var(--amber); }
.roast-dark  { background: var(--espresso); }
.roast-dark::before { background: var(--cream); }
.roast-dark h3 { color: var(--amber-light); }
.roast-dark p,
.roast-dark li { color: rgba(253,251,247,.8); }
.roast-dark ul { color: rgba(253,251,247,.8); }
.roast-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.roast-light .roast-badge {
    background: rgba(169,132,103,.18);
    color: var(--amber-dark);
}
.roast-dark .roast-badge {
    background: rgba(253,251,247,.12);
    color: var(--amber-light);
}

/* ============================================================
   23. TROUBLESHOOT SECTION
   ============================================================ */
.trouble-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.trouble-item {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--amber);
    box-shadow: var(--shadow-sm);
}
.trouble-item h4 { font-size: .95rem; margin-bottom: .5rem; color: var(--espresso); }
.trouble-item p { font-size: .85rem; color: var(--roasted-light); margin: 0; }

/* ============================================================
   24. ÜBER UNS HERO IMAGE SPLIT
   ============================================================ */
.uber-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

/* ============================================================
   25. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-fade-up { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }
.animate-delay-4 { animation-delay: .4s; }

/* ============================================================
   26. PRODUCT CARDS (Affiliate-Empfehlungen)
   ============================================================ */

/* Einzelne Produkt-Empfehlung — inline im Fließtext */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(169,132,103,.18);
    border-left: 4px solid var(--amber);
    padding: 24px 28px;
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
    box-shadow: 0 3px 12px rgba(38,28,20,.07);
    transition: box-shadow .25s ease, transform .2s ease;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-badge {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    background: rgba(169,132,103,.15);
    color: var(--amber-dark);
}
.product-badge-bio   { background: rgba(80,140,60,.12); color: #3a7230; }
.product-badge-top   { background: rgba(38,28,20,.1);   color: var(--espresso); }

.product-stars {
    font-size: .9rem;
    color: #f59e0b;
    letter-spacing: -.02em;
}
.product-reviews {
    font-size: .75rem;
    color: var(--roasted-light);
}

.product-name {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--espresso);
    margin-bottom: .5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: .9rem;
    color: var(--roasted-light);
    line-height: 1.65;
    margin-bottom: .85rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.product-features span {
    font-size: .78rem;
    color: var(--roasted);
    background: var(--cafe-lait);
    padding: 3px 10px;
    border-radius: 20px;
}

.product-card-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.product-affiliate-note {
    font-size: .65rem;
    color: rgba(61,52,46,.4);
    text-align: right;
}

/* Equipment-Card (dunkler Hintergrund) */
.product-card-dark {
    background: rgba(253,251,247,.07);
    border-color: rgba(169,132,103,.3);
    border-left-color: var(--amber);
}
.product-card-dark .product-name { color: var(--amber-light); }
.product-card-dark .product-desc { color: rgba(253,251,247,.7); }
.product-card-dark .product-features span { background: rgba(253,251,247,.1); color: rgba(253,251,247,.8); }
.product-card-dark .product-reviews { color: rgba(253,251,247,.5); }
.product-card-dark .product-badge { background: rgba(169,132,103,.25); color: var(--amber-light); }
.product-card-dark .product-affiliate-note { color: rgba(253,251,247,.25); }

/* 2-er Equipment-Raster */
.product-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2.5rem 0;
}
.product-grid-2 .product-card {
    margin: 0;
    grid-template-columns: 1fr;
}
.product-grid-2 .product-card-action {
    align-items: flex-start;
}

/* Bohnen-Vergleichsraster */
.beans-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 2.5rem 0;
}
.bean-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--amber);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.bean-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bean-card.bean-top { border-top-color: var(--espresso); background: var(--cafe-lait); }
.bean-card.bean-bio { border-top-color: #5a9245; }

.bean-price-tag {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(169,132,103,.12);
    color: var(--amber-dark);
    align-self: flex-start;
}
.bean-card.bean-top .bean-price-tag {
    background: rgba(38,28,20,.1);
    color: var(--espresso);
}
.bean-card.bean-bio .bean-price-tag {
    background: rgba(90,146,69,.12);
    color: #3a7230;
}

.bean-card h4 {
    font-size: .95rem;
    margin-bottom: .35rem;
    color: var(--espresso);
}
.bean-card p {
    font-size: .82rem;
    color: var(--roasted-light);
    flex: 1;
    margin-bottom: 1rem;
    line-height: 1.55;
}
.bean-card .bean-stars {
    font-size: .8rem;
    color: #f59e0b;
    margin-bottom: 12px;
    display: block;
}
.bean-card a {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s ease;
}
.bean-card a:hover { color: var(--amber-dark); }

/* Produkt-Highlight Box (kleiner, dezenter) */
.product-hint {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--cafe-lait);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--amber);
}
.product-hint-icon { font-size: 1.5rem; flex-shrink: 0; }
.product-hint-body { flex: 1; }
.product-hint-body strong { display: block; font-size: .9rem; margin-bottom: 3px; color: var(--espresso); }
.product-hint-body span { font-size: .82rem; color: var(--roasted-light); }
.product-hint a.btn { font-size: .72rem; padding: 8px 16px; flex-shrink: 0; }

/* Dunkle Variante der Hint-Box */
.product-hint-dark {
    background: rgba(253,251,247,.07);
    border-left-color: var(--amber);
}
.product-hint-dark strong { color: var(--amber-light); }
.product-hint-dark span  { color: rgba(253,251,247,.6); }

/* ============================================================
   26b. PRODUKT-BILDKARTEN — pcard
   ============================================================ */

.pcard {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(38,28,20,.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(38,28,20,.06), 0 1px 3px rgba(38,28,20,.04);
    transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(38,28,20,.13), 0 4px 12px rgba(38,28,20,.07);
}
.pcard-photo {
    background: #f7f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(38,28,20,.06);
    min-height: 180px;
}
.pcard-photo img {
    width: 100%;
    max-width: 200px;
    height: 160px;
    object-fit: contain;
    display: block;
}
.pcard-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.pcard-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(169,132,103,.12);
    color: var(--amber-dark);
    align-self: flex-start;
}
.pcard-label-bio    { background: rgba(80,140,60,.1);  color: #2e6e26; }
.pcard-label-eco    { background: rgba(38,28,20,.1);   color: var(--espresso); }
.pcard-label-special{ background: rgba(169,132,103,.22); color: var(--amber-dark); }
.pcard-name {
    font-family: Georgia, serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--espresso);
    line-height: 1.35;
}
.pcard-stars {
    font-size: .8rem;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pcard-stars small {
    font-size: .7rem;
    color: var(--roasted-light);
    font-style: normal;
}
.pcard-desc {
    font-size: .78rem;
    color: var(--roasted-light);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}
.pcard-action {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(38,28,20,.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.pcard-note {
    font-size: .62rem;
    color: rgba(61,52,46,.35);
}

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

.pcard-group-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber-dark);
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(169,132,103,.2);
}

/* ============================================================
   27. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .container-narrow { padding: 0 24px; }
    .section { padding: 72px 0; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / 3; }

    .split-section { grid-template-columns: 1fr; }
    .split-section.reverse { direction: ltr; }
    .split-image { min-height: 320px; }
    .split-content { padding: 56px 40px; }

    .stats-grid { grid-template-columns: repeat(3,1fr); }

    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .team-values { grid-template-columns: repeat(2, 1fr); }
    .trouble-grid { grid-template-columns: 1fr 1fr; }
    .pcard-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pcard-grid-3 { grid-template-columns: repeat(2, 1fr); }

    .img-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .img-mosaic .mosaic-main { grid-row: 1 / 2; grid-column: 1 / 3; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--espresso);
        flex-direction: column;
        padding: 16px 0 24px;
        transform: translateY(-110%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        z-index: 999;
        box-shadow: 0 16px 32px rgba(38,28,20,.4);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu li a { padding: 14px 32px; font-size: .85rem; }
    .nav-menu li a::after { left: 32px; right: 32px; }
    .nav-toggle { display: flex; }

    .hero { height: 70vh; }
    .hero-sm { height: 50vh; }
    .hero-content { padding: 0 24px 48px; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(253,251,247,.1); }
    .stat-item:last-child { border-bottom: none; }

    .vs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vs-divider { padding: 8px 0; }

    .card-grid-3,
    .card-grid-2 { grid-template-columns: 1fr; }

    .product-card { grid-template-columns: 1fr; }
    .product-card-action { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .product-grid-2 { grid-template-columns: 1fr; }
    .beans-compare-grid { grid-template-columns: 1fr; }
    .pcard-grid-4, .pcard-grid-3, .pcard-grid-2 { grid-template-columns: 1fr; }

    .roast-grid { grid-template-columns: 1fr; }
    .team-values { grid-template-columns: 1fr; }
    .trouble-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .brew-table { font-size: .8rem; }
    .brew-table th, .brew-table td { padding: 12px 16px; }

    .split-content { padding: 40px 24px; }
    .pull-quote { padding: 2rem 1.5rem; }

    .steps-grid { grid-template-columns: 1fr; }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }

    .section { padding: 56px 0; }
    .section-lg { padding: 72px 0; }

    .datenschutz-content { padding: 0 24px; }
    .nav-container { padding: 0 24px; }
}

@media (max-width: 480px) {
    .hero { height: 60vh; }
    .hero-content { padding: 0 16px 40px; }
    .container { padding: 0 16px; }
    .container-narrow { padding: 0 16px; }
    .img-strip { height: 260px; }
    .img-two-up { grid-template-columns: 1fr; }
    .img-two-up div { height: 220px; }
    .img-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
    .img-mosaic .mosaic-main { grid-column: auto; }
    .img-mosaic > div { height: 200px; }
}
