@font-face {
    font-family: "KBOutfit";
    src: url("/assets/fonts/outfit-v15-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "KBLora";
    src: url("/assets/fonts/lora-v37-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===== Design-Tokens ===== */
:root {
    /* LEIB GmbH – Retinting der Köbler-Basisvorlage auf die bisherige
       Shop-Farbe #327082 (blau). Variablennamen bewusst unverändert
       gelassen, damit die ~2700 Zeilen restliches CSS unverändert
       funktionieren – nur die Werte wurden getauscht. */
    --cream: #eef4f6;
    --paper: #ffffff;
    --ink: #1c2b30;
    --green: #2c6b7d;
    --rust: #2c6b7d;
    --gold: #e8a33d;
    --line: #dbe6e8;
    --kb-red: #2c6b7d;
    --kb-red-dark: #163e4a;
    --kb-yellow: #e8a33d;
    --kb-cream: #eef4f6;
    --kb-paper: #ffffff;
    --kb-ink: #1c2b30;
    --kb-muted: #55686e;
    --kb-line: #dbe6e8;
}

/* ===== Reset ===== */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--kb-paper);
    color: var(--kb-ink);
    font-family: KBOutfit, Arial, sans-serif;
}
.container {
    max-width: 1180px;
}

/* ===== Kopfbereich & Navigation ===== */
.kb-header {
    background: var(--kb-red);
    border-bottom: 3px solid var(--kb-yellow);
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(12px);
}
.kb-header__inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.kb-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: inherit;
    text-decoration: none;
	margin-left: -1.5rem;
}
.kb-brand img {
    display: block;
    width: auto;
    height: 76px;
    object-fit: contain;
}
.kb-brand__mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--rust);
    border-radius: 50%;
    font: 600 1.7rem KBLora;
    color: var(--rust);
}
.kb-brand strong,
.kb-brand small {
    display: block;
}
.kb-brand strong {
    font: 600 1.05rem KBLora;
}
.kb-brand small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.kb-header nav {
    display: flex;
    gap: 1.5rem;
}
.kb-header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
}
.kb-header nav a.active,
.kb-header nav a:hover {
    color: var(--rust);
}
.kb-menu {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0.55rem 0.8rem;
    color: #fff;
    border-color: #ffffff80;
}

/* ===== Startseite: Hero ===== */
.kb-hero {
    background: var(--cream);
    padding: clamp(3rem, 7vw, 7rem) 0;
}
.kb-hero__grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.kb-kicker {
    color: var(--kb-red);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: bold;
    margin: 0 0 1rem;
}
.kb-hero h1,
.kb-pagehead h1 {
    font: 600 clamp(3.2rem, 6.5vw, 6.6rem) / 0.92 KBLora;
    letter-spacing: -0.055em;
    margin: 0;
}
.kb-hero h1 em {
    color: var(--rust);
    font-style: normal;
}
.kb-lead {
    font-size: 1.2rem;
    max-width: 630px;
    line-height: 1.65;
    margin: 2rem 0;
}
.kb-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.kb-btn-primary {
    background: var(--kb-red);
    color: #fff;
    border-color: var(--kb-red);
    padding: 0.85rem 1.3rem;
    font-weight: 700;
}
.kb-btn-primary:hover {
    background: #8c3d23;
    color: #fff;
}
.kb-btn-light {
    background: transparent;
    border: 1px solid var(--ink);
    padding: 0.85rem 1.3rem;
    border-color: var(--kb-red);
    color: var(--kb-red);
    font-weight: 700;
}
.kb-btn-cream {
    background: var(--kb-cream);
    color: var(--kb-red);
    padding: 0.85rem 1.3rem;
    border-color: var(--kb-cream);
    font-weight: 700;
}
.kb-trust {
    display: flex;
    gap: 1.4rem;
    margin-top: 2.2rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.kb-trust span:before {
    content: "•";
    color: var(--gold);
    margin-right: 0.45rem;
}
.kb-hero__image {
    margin: 0;
    position: relative;
}
.kb-hero__image img {
    width: 100%;
    height: min(560px, 65vw);
    object-fit: cover;
    border-radius: 50% 50% 8px 8px;
}
.kb-hero__image figcaption {
    position: absolute;
    right: -1rem;
    bottom: 2rem;
    background: var(--paper);
    padding: 1rem 1.3rem;
    box-shadow: 0 15px 40px #44351b26;
    border-left: 4px solid var(--kb-yellow);
}
.kb-hero__image figcaption strong {
    display: block;
    color: var(--rust);
}

/* ===== Schnellinfo-Leiste ===== */
.kb-strip {
    border-block: 1px solid var(--line);
}
.kb-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.kb-strip a {
    padding: 1.6rem;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid var(--line);
}
.kb-strip a:first-child {
    border-left: 1px solid var(--line);
}
.kb-strip small,
.kb-strip strong {
    display: block;
}
.kb-strip small {
    color: #6e6a5f;
    margin-bottom: 0.25rem;
}
.kb-strip.kb-brown {
    background: #2a0e0d;
    color: #fff;
}
.kb-strip.kb-brown a,
.kb-strip.kb-brown a:link,
.kb-strip.kb-brown a:visited,
.kb-strip.kb-brown a strong {
    color: #fff;
}
.kb-strip.kb-brown small {
    color: rgba(255, 255, 255, 0.72);
}
.kb-strip.kb-brown a:hover strong {
    color: #f3e7c9;
}
.kb-strip.kb-brown a strong {
    color: #fff !important;
}

/* ===== Inhaltsbereiche & Karten ===== */
.kb-section {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
}
.kb-section {
    padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.kb-story,
.kb-route-teaser,
.kb-visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.kb-story h2,
.kb-route-teaser h2,
.kb-visit h2 {
    font: 600 clamp(2.5rem, 4vw, 4.5rem) / 1 KBLora;
    margin: 0;
}
.kb-story__text {
    font-size: 1.15rem;
    line-height: 1.7;
}
.kb-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    background: none;
    border: 0;
    margin-top: 4rem;
}
.kb-cards article {
    background: #fff;
    padding: 2.2rem;
    border: 1px solid var(--line);
    border-top: 4px solid var(--rust);
}
.kb-cards article > span {
    color: var(--rust);
    font-family: KBLora;
}
.kb-cards h3 {
    font-family: KBLora;
    margin-top: 2rem;
}
.kb-section--green {
    position: relative;
    background: var(--green);
    color: #fff;
    isolation: isolate;
    background-image: url("/media/koebler/brezen-handgemacht.webp");
    background-size: cover;
    background-position: center 58%;
    background-color: var(--kb-red);
}
.kb-section--green::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(42, 14, 13, 0.78);
}
.kb-kicker--light {
    color: #e5be68;
}
.kb-route-teaser {
    align-items: center;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.kb-route-teaser p:not(.kb-kicker) {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 570px;
    margin: 1.5rem 0 2rem;
}
.kb-route-list {
    border-top: 1px solid #ffffff40;
}
.kb-route-list > a,
.kb-route-empty {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.3rem 0;
    border-bottom: 1px solid #ffffff40;
    color: #fff;
    text-decoration: none;
}
.kb-route-list > a small {
    text-align: right;
}
.kb-route-list > a > span {
    white-space: nowrap;
}
.kb-route-empty {
    display: flex;
    flex-direction: column;
}
.kb-visit a {
    color: var(--rust);
    font-size: 1.3rem;
}
.kb-hours > div {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
}

/* ===== Seitenkopf (Unterseiten) ===== */
.kb-pagehead {
    background: var(--cream);
    padding: 5rem 0 4rem;
}
.kb-pagehead h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}
.kb-pagehead p:last-child {
    font-size: 1.15rem;
    margin: 1.5rem 0 0;
}

/* ===== Touren-Suche ===== */
.kb-search {
    max-width: 820px;
    margin-bottom: 3rem;
}
.kb-search label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.7rem;
}
.kb-search > div {
    display: flex;
}
.kb-search input {
    flex: 1;
    border: 1px solid var(--line);
    padding: 1rem 1.1rem;
    font: inherit;
}
.kb-search select {
    flex: 1;
    border: 1px solid var(--line);
    padding: 1rem 1.1rem;
    font: inherit;
    background: #fff;
    color: inherit;
    border-radius: 0;
}
.kb-search button {
    border-radius: 0;
}
.kb-notice {
    background: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--gold);
}
.kb-tour-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.kb-tour-results {
    display: grid;
    gap: 1rem;
    overflow-y: auto;
}
.kb-tour-card {
    position: relative;
    display: block;
    border: 1px solid var(--line);
    padding: 1.4rem;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}
.kb-tour-card.active,
.kb-tour-card:hover {
    border-color: var(--kb-red);
    box-shadow: 0 10px 30px #51371a12;
}
.kb-tour-card.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 32px 32px;
    border-color: transparent transparent var(--kb-red) transparent;
}

.kb-tour-card > span {
    color: var(--rust);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.kb-tour-card h2 {
    font: 600 1.5rem KBLora;
    margin: 0.35rem 0;
}
.kb-tour-card p {
    margin: 0;
    color: #6d695f;
}
.kb-stop-list {
    background: var(--cream);
    padding: 2rem;
    align-self: start;
}
.kb-stop-list h2 {
    font-family: KBLora;
}
.kb-stop-list ol {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.kb-stop-list li {
    display: flex;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.kb-stop-list time {
    color: var(--rust);
    font-weight: bold;
}
.kb-stop-list strong,
.kb-stop-list span {
    display: block;
}
.kb-stop-list .kb-stop-meta {
    color: var(--kb-muted, #6b6157);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}
.kb-live-hint {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.kb-live-hint > span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #89a197;
    margin-top: 0.4rem;
}

/* ===== Karriere & Kontaktseiten ===== */
.kb-content-grid,
.kb-apply {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.kb-content-grid h2,
.kb-apply h2 {
    font: 600 clamp(2.4rem, 4vw, 4.2rem) / 1 KBLora;
    margin: 0;
}
.kb-content-grid > div:last-child,
.kb-apply > div:last-child {
    font-size: 1.12rem;
    line-height: 1.75;
}
.kb-location-grid,
.kb-job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--kb-line);
    border: 1px solid var(--line);
    margin-top: 4rem;
    border-color: var(--kb-line);
}
.kb-location-grid article,
.kb-job-grid article {
    background: #fff;
    padding: 2rem;
}
.kb-location-grid a {
    display: block;
}
.kb-location-grid h2,
.kb-job-grid h2 {
    font: 600 1.6rem KBLora;
    margin-bottom: 0.8rem;
}
.kb-location-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
}
.kb-location-grid address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.kb-location-grid a,
.kb-contact-note a,
.kb-apply a,
.kb-legal a {
    color: var(--rust);
}
.kb-contact-note {
    background: var(--cream);
    padding: 2rem;
    margin-top: 2rem;
}
.kb-contact-note > * {
    margin-right: 1rem;
}
.kb-job-grid article > span {
    color: var(--rust);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
}

/* ===== Stellenangebote: Listen mit rotem Haken ===== */
.kb-job-grid ul {
    padding-left: 0;
    list-style: none;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.kb-apply {
    margin-top: 5rem;
}
.kb-pagehead--compact {
    padding-block: 3.5rem;
}

/* ===== Rechtstexte ===== */
.kb-legal {
    max-width: 820px;
}
.kb-legal h2 {
    font: 600 1.55rem KBLora;
    margin: 2.4rem 0 0.7rem;
}
.kb-legal h2:first-child {
    margin-top: 0;
}
.kb-legal p {
    line-height: 1.7;
}

/* ===== Unternehmensgeschichte ===== */
.kb-history-section {
    background: var(--kb-cream);
}
.kb-history-title {
    font: 600 clamp(2.4rem, 4vw, 4rem) / 1 KBLora;
    max-width: 900px;
}
.kb-history {
    margin-top: 3.5rem;
    border-top: 1px solid var(--line);
}
.kb-history article {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}
.kb-history time {
    color: var(--kb-red);
    font: 600 2rem KBLora;
}
.kb-history h3 {
    font: 600 1.5rem KBLora;
    margin: 0 0 0.5rem;
}
.kb-history p {
    max-width: 800px;
    line-height: 1.7;
    margin: 0;
}

/* ===== Filialen ===== */
.kb-branch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.kb-branch-grid article {
    background: var(--paper);
    border-top: 5px solid var(--kb-yellow);
    padding: clamp(1.5rem, 4vw, 3rem);
}
.kb-branch-grid h2 {
    font: 600 clamp(2rem, 3vw, 3rem) / 1.05 KBLora;
}
.kb-branch-grid h3 {
    font: 600 1.3rem KBLora;
    margin-top: 2rem;
}
.kb-branch-grid address {
    font-style: normal;
    line-height: 1.7;
    font-weight: 600;
}
.kb-branch-grid dl div {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    padding: 0.65rem 0;
}
.kb-branch-grid dt {
    font-weight: 700;
}
.kb-branch-grid dd {
    margin: 0;
}
.kb-branch-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.kb-branch-actions > a:not(.btn) {
    color: var(--kb-red);
}
.kb-route-teaser .btn {
    text-shadow: none;
}
.kb-header nav a:hover,
.kb-header nav a:focus-visible,
.kb-header nav a.active {
    color: var(--kb-yellow);
}
.kb-menu:hover {
    color: var(--kb-red);
    background: var(--kb-yellow);
    border-color: var(--kb-yellow);
}
.kb-kicker--light,
.kb-section--green .kb-kicker {
    color: var(--kb-yellow);
}
.kb-section a:not(.btn),
.kb-legal a,
.kb-location-grid a,
.kb-contact-note a,
.kb-apply a {
    color: var(--kb-red);
}
.kb-section--green h1,
.kb-section--green h2,
.kb-section--green h3,
.kb-section--green h4,
.kb-section--green p,
.kb-section--green li,
.kb-section--green span,
.kb-section--green strong {
    color: #fff;
}
.kb-section--green .kb-kicker,
.kb-section--green .kb-kicker span {
    color: var(--kb-yellow);
}
.kb-section--green a:not(.btn) {
    color: var(--kb-yellow);
}
.kb-section--green .kb-route-list > a {
    color: #fff;
}
.kb-section--green .kb-route-list > a:hover small {
    color: var(--kb-yellow);
}
.kb-btn-primary:hover,
.kb-btn-primary:focus-visible {
    background: var(--kb-red-dark);
    border-color: var(--kb-red-dark);
    color: #fff;
}
.kb-btn-light:hover {
    background: var(--kb-red);
    color: #fff;
}
.kb-btn-cream:hover,
.kb-btn-cream:focus-visible {
    background: var(--kb-yellow);
    border-color: var(--kb-yellow);
    color: var(--kb-ink);
}
.kb-pagehead,
.kb-notice,
.kb-stop-list,
.kb-contact-note {
    background: var(--kb-cream);
}
.kb-cards,
.kb-product-grid,
.kb-location-grid,
.kb-job-grid {
    background: var(--kb-line);
    border-color: var(--kb-line);
}
.kb-cards article,
.kb-product-grid article,
.kb-location-grid article,
.kb-job-grid article {
    background: #fff;
}
.kb-job-grid ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.kb-job-grid ul li::before {
    content: "";
    flex: 0 0 1.05em;
    width: 1.05em;
    height: 1.05em;
    margin-top: 0.2em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B51A1E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.btn:focus-visible {
    outline: 3px solid var(--kb-yellow);
    outline-offset: 3px;
}

/* ===== Utility: braune Textfarbe ===== */
.kb-brown {
    background-color: #2a0e0d;
    color: #fff;
}
.kb-brown a {
    color: #fff;
}
.kb-brown a:hover {
    color: var(--kb-yellow);
}
.container.kb-story,
.container.kb-cards,
.container.kb-product-intro,
.container.kb-product-grid {
    width: min(1180px, calc(100% - 3rem));
    margin-inline: auto;
    padding-inline: 0;
}
.kb-product-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 5rem);
}
.kb-product-intro h2 {
    margin: 0;
    max-width: 720px;
    font: 600 clamp(2.4rem, 4vw, 4.5rem) / 1.05 KBLora, serif;
    letter-spacing: -0.025em;
}
.kb-product-intro > p {
    margin: 0;
    max-width: 620px;
    color: var(--kb-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}
.container.kb-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background: none;
    border: 0;
}
.container.kb-cards article {
    min-width: 0;
    margin: 0;
    padding: clamp(1.75rem, 3vw, 2.4rem);
    background: #fff;
    border: 1px solid var(--kb-line);
    border-top: 4px solid var(--kb-red);
}
.container.kb-cards article > span {
    display: block;
    color: var(--kb-red);
    font: 600 0.9rem KBLora, serif;
    letter-spacing: 0.08em;
}
.container.kb-cards h3 {
    margin: 1.75rem 0 0.8rem;
    color: var(--kb-ink);
    font: 600 1.55rem/1.2 KBLora, serif;
}
.container.kb-cards p {
    margin: 0;
    color: var(--kb-muted);
    line-height: 1.65;
}
.container.kb-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background: none;
    border: 0;
}
.kb-section .container.kb-product-grid > .kb-product-card {
    display: flex;
    min-width: 0;
    color: var(--kb-ink);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--kb-line);
    transition: transform 180ms ease, border-color 180ms ease,
        box-shadow 180ms ease;
}
.kb-section .container.kb-product-grid > .kb-product-card:hover,
.kb-section .container.kb-product-grid > .kb-product-card:focus-visible {
    color: var(--kb-ink);
    border-color: var(--kb-red);
    box-shadow: 0 16px 38px rgba(42, 14, 13, 0.12);
    transform: translateY(-4px);
}
.kb-section .container.kb-product-grid > .kb-product-card:focus-visible {
    outline: 3px solid var(--kb-yellow);
    outline-offset: 3px;
}
.kb-product-card article {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: clamp(1.75rem, 3vw, 2.4rem);
    background: transparent;
    border: 0;
}
.kb-product-card article > span {
    display: block;
    color: var(--kb-red);
    font: 600 0.9rem KBLora, serif;
    letter-spacing: 0.08em;
}
.kb-product-card h2 {
    margin: 1.5rem 0 0.9rem;
    color: var(--kb-ink);
    font: 600 clamp(1.65rem, 2.2vw, 2.1rem) / 1.15 KBLora, serif;
}
.kb-product-card p {
    margin: 0;
    color: var(--kb-muted);
    line-height: 1.65;
}
.kb-product-card ul {
    margin: 1.4rem 0 1.8rem;
    padding: 0;
    list-style: none;
}
.kb-product-card li {
    position: relative;
    margin-top: 0.55rem;
    padding-left: 1.4rem;
    color: var(--kb-muted);
    line-height: 1.5;
}
.kb-product-card li::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 1.05em;
    height: 1.05em;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B51A1E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    transform: none;
}
.kb-product-card strong {
    display: block;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--kb-red);
    font-weight: 700;
}
.kb-product-card:hover strong,
.kb-product-card:focus-visible strong {
    color: var(--kb-red-dark);
}

/* ===== Produktkarten: Bilder ===== */

.kb-section .container.kb-product-grid > .kb-product-card article {
    --kb-product-card-padding: clamp(1.75rem, 3vw, 2.4rem);

    overflow: hidden;
    padding: var(--kb-product-card-padding);
}

.kb-section
    .container.kb-product-grid
    > .kb-product-card
    .kb-product-card__image {
    flex: 0 0 auto;

    width: calc(
        100%
        + var(--kb-product-card-padding)
        + var(--kb-product-card-padding)
    );

    aspect-ratio: 16 / 9;

    margin-top: calc(0px - var(--kb-product-card-padding));
    margin-right: calc(0px - var(--kb-product-card-padding));
    margin-bottom: 1.75rem;
    margin-left: calc(0px - var(--kb-product-card-padding));

    overflow: hidden;

    background: var(--kb-paper);
    border-bottom: 1px solid var(--kb-line);
}

.kb-section
    .container.kb-product-grid
    > .kb-product-card
    .kb-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center;

    transition: transform 300ms ease;
}

.kb-section
    .container.kb-product-grid
    > .kb-product-card:hover
    .kb-product-card__image:not(.kb-product-card__image--logo)
    img,
.kb-section
    .container.kb-product-grid
    > .kb-product-card:focus-visible
    .kb-product-card__image:not(.kb-product-card__image--logo)
    img {
    transform: scale(1.04);
}

/* Überschrift direkt nach dem Bild */
.kb-product-card__image + h2 {
    margin-top: 0;
}

/* Logo-Fallback */
.kb-section
    .container.kb-product-grid
    > .kb-product-card
    .kb-product-card__image--logo {
    display: grid;
    place-items: center;
    padding: 2.5rem;

    background:
        radial-gradient(
            circle at center,
            rgb(255 255 255 / 10%),
            transparent 65%
        ),
        var(--kb-red);
}

.kb-section
    .container.kb-product-grid
    > .kb-product-card
    .kb-product-card__image--logo img {
    width: min(75%, 240px);
    height: auto;
    max-height: 75%;

    object-fit: contain;
    transform: none;
}


.container.kb-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: min(1180px, calc(100% - 3rem));
    margin: 4rem auto 0;
    padding: 0;
    background: none;
    border: 0;
}
.container.kb-facts article {
    position: relative;
    min-width: 0;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--kb-line);
    border-top: 4px solid var(--kb-red);
}
.container.kb-facts article::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 4rem;
    height: 4px;
    background: var(--kb-yellow);
}
.container.kb-facts strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--kb-ink);
    font: 600 1.5rem/1.2 KBLora, serif;
}
.container.kb-facts span {
    display: block;
    color: var(--kb-muted);
    line-height: 1.65;
}
.container.kb-facts ul {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}
.container.kb-facts li {
    position: relative;
    margin-top: 0.55rem;
    padding-left: 1.4rem;
    color: var(--kb-muted);
    line-height: 1.5;
}
.container.kb-facts li:first-child {
    margin-top: 0;
}
.container.kb-facts li::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 1.05em;
    height: 1.05em;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B51A1E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    transform: none;
}

@media (max-width: 800px) {
  .kb-menu {
      display: block;
  }
  .kb-header nav {
      display: none;
      position: absolute;
      top: 86px;
      left: 0;
      right: 0;
      background: var(--kb-red);
      padding: 1.5rem;
      flex-direction: column;
      border-bottom: 3px solid var(--kb-yellow);
  }
  .kb-header nav.open {
      display: flex;
  }
  .kb-hero__grid,
      .kb-story,
      .kb-route-teaser,
      .kb-visit,
      .kb-tour-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
  }
  .kb-hero__image img {
      height: 420px;
  }
  .kb-hero__image figcaption {
      right: 0;
  }
  .kb-strip__grid,
      .kb-cards {
      grid-template-columns: 1fr;
  }
  .kb-strip a,
      .kb-strip a:first-child {
      border-left: 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
  }
  .kb-hours > div {
      flex-direction: column;
      gap: 0.25rem;
  }
  .kb-search > div {
      flex-direction: column;
  }
  .kb-content-grid,
      .kb-apply,
      .kb-location-grid,
      .kb-job-grid {
      grid-template-columns: 1fr;
      gap: 1px;
  }
  .kb-content-grid,
      .kb-apply {
      gap: 2.5rem;
  }
  .kb-location-grid,
      .kb-job-grid {
      margin-top: 2.5rem;
  }
  .kb-history article,
      .kb-branch-grid {
      grid-template-columns: 1fr;
  }
  .kb-history article {
      gap: 0.5rem;
  }
  .kb-branch-grid dl div {
      grid-template-columns: 1fr;
  }
  .kb-header nav a {
      padding: 0.45rem 0;
  }
  .kb-brand img {
      height: 68px;
  }
  .kb-section--green {
      background-position: center;
  }
  .container.kb-product-intro {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  .container.kb-cards {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  .container.kb-facts {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
}
@media (max-width: 980px) {
  .container.kb-product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .container.kb-story,
      .container.kb-cards,
      .container.kb-product-intro,
      .container.kb-product-grid {
      width: min(100% - 2rem, 1180px);
  }
  .container.kb-product-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  .container.kb-facts {
      width: min(100% - 2rem, 1180px);
  }
}

/* ===== Blog: Breadcrumb ===== */
.kb-crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--kb-muted);
    margin-bottom: 1.5rem;
}
.kb-crumb a {
    color: var(--kb-muted);
    text-decoration: none;
}
.kb-crumb a:hover {
    color: var(--kb-red);
}
.kb-crumb span[aria-current] {
    color: var(--kb-ink);
}

/* ===== Blog: Beitragsraster & Karten ===== */
.kb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.kb-blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--kb-line);
    border-top: 4px solid var(--kb-red);
    padding: clamp(1.75rem, 3vw, 2.2rem);
    color: inherit;
}
.kb-blog-card__meta {
    color: var(--kb-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}
.kb-blog-card h2,
.kb-blog-card h3 {
    font: 600 1.5rem/1.2 KBLora, serif;
    margin: 0.9rem 0 0.7rem;
}
.kb-blog-card h2 a,
.kb-blog-card h3 a {
    color: var(--kb-ink);
    text-decoration: none;
}
.kb-blog-card h2 a:hover,
.kb-blog-card h3 a:hover {
    color: var(--kb-red);
}
.kb-blog-card p {
    color: var(--kb-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}
.kb-blog-card__date {
    font-size: 0.85rem;
    color: var(--kb-muted);
    margin-bottom: 1rem;
}
.kb-blog-card__date strong {
    color: var(--kb-ink);
}
.kb-blog-card__link {
    margin-top: auto;
    color: var(--kb-red);
    font-weight: 700;
    text-decoration: none;
}
.kb-blog-card__link:hover {
    color: var(--kb-red-dark);
}

/* ===== Blog: Artikel-Meta & Fließtext ===== */
.kb-article-meta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    color: var(--kb-muted);
    font-size: 0.9rem;
    margin-top: 1.2rem;
}
.kb-article {
    max-width: 720px;
    margin-inline: auto;
    font-size: 1.1rem;
    line-height: 1.75;
}
.kb-article img {
    display: block;
    width: 100%;
    height: auto;
    margin: 2rem 0;
}
.kb-article h2 {
    font: 600 clamp(1.7rem, 3vw, 2.3rem) / 1.2 KBLora, serif;
    margin: 2.4rem 0 1rem;
}
.kb-article h3 {
    font: 600 1.4rem/1.2 KBLora, serif;
    margin: 2rem 0 0.8rem;
}
.kb-article p {
    margin: 0 0 1.3rem;
}
.kb-article ul,
.kb-article ol {
    margin: 0 0 1.3rem;
    padding-left: 1.3rem;
}
.kb-article li {
    margin: 0.4rem 0;
}
.kb-article a {
    color: var(--kb-red);
}
.kb-article blockquote {
    margin: 1.8rem 0;
    padding-left: 1.3rem;
    border-left: 4px solid var(--kb-yellow);
    color: var(--kb-muted);
    font-style: italic;
}

/* ===== Blog: Pagination ===== */
.kb-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 3rem;
}
.kb-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--kb-red);
    border-radius: 999px;
    color: var(--kb-red);
    text-decoration: none;
    font-weight: 600;
}
.kb-pagination a:hover,
.kb-pagination a[aria-current="page"] {
    background: var(--kb-red);
    color: #fff;
}

@media (max-width: 800px) {
    .kb-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Image */	
.kb-pagehead--image {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: clamp(440px, 55vw, 620px);
    display: flex;
    align-items: center;

    color: #fff;
    background: #2a0e0d;
}

.kb-pagehead__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

/* Dunkler Verlauf für lesbaren Text */
.kb-pagehead--image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        90deg,
        rgba(42, 14, 13, 0.94) 0%,
        rgba(42, 14, 13, 0.78) 38%,
        rgba(42, 14, 13, 0.28) 68%,
        rgba(42, 14, 13, 0.08) 100%
    );
}

.kb-pagehead--image .container {
    position: relative;
    width: min(1180px, calc(100% - 3rem));
    margin-inline: auto;
}

.kb-pagehead--image .kb-kicker {
    color: var(--kb-yellow);
}

.kb-pagehead--image h1 {
    max-width: 920px;
    color: #fff;
}

.kb-pagehead--image p:last-child {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .kb-pagehead--image {
        min-height: 480px;
    }

    .kb-pagehead__background {
        object-position: 65% center;
    }

    .kb-pagehead--image::after {
        background: rgba(42, 14, 13, 0.76);
    }

    .kb-pagehead--image .container {
        width: min(100% - 2rem, 1180px);
    }
}	


/* Hero mit Bild */
.kb-pagehead.kb-pagehead--image {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: clamp(440px, 52vw, 650px);
    padding: clamp(5rem, 10vw, 8rem) 0;

    color: #fff;
    background: #2a0e0d;

    grid-template-columns: none;
}

/* Herobild */
.kb-pagehead.kb-pagehead--image > img {
    position: absolute;
    z-index: -2;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center;
}

/* Dunkler Verlauf für lesbaren Text */
.kb-pagehead.kb-pagehead--image::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(42, 14, 13, 0.94) 0%,
        rgba(42, 14, 13, 0.78) 35%,
        rgba(42, 14, 13, 0.36) 65%,
        rgba(42, 14, 13, 0.12) 100%
    );
}

/* Textbereich */
.kb-pagehead.kb-pagehead--image > .container {
    position: relative;
    z-index: 1;

    display: block;
    width: min(1180px, calc(100% - 3rem));
    margin-inline: auto;
    padding: 0;
}

/* Textbreite begrenzen */
.kb-pagehead.kb-pagehead--image > .container > * {
    max-width: 650px;
}

/* Kicker */
.kb-pagehead.kb-pagehead--image .kb-kicker {
    margin: 0 0 1rem;
    color: var(--kb-yellow, #f2d224);
}

/* Überschrift */
.kb-pagehead.kb-pagehead--image h1 {
    margin: 0;
    max-width: 750px;

    color: #fff;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
}

/* Einleitung */
.kb-pagehead.kb-pagehead--image > .container > p:last-child {
    margin: 1.5rem 0 0;
    max-width: 620px;

    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.65;
}

/* Tablet und Smartphone */
@media (max-width: 800px) {
    .kb-pagehead.kb-pagehead--image {
        min-height: 480px;
        padding: 5rem 0;
    }

    .kb-pagehead.kb-pagehead--image > img {
        object-position: 60% center;
    }

    .kb-pagehead.kb-pagehead--image::after {
        background: linear-gradient(
            90deg,
            rgba(42, 14, 13, 0.92) 0%,
            rgba(42, 14, 13, 0.74) 65%,
            rgba(42, 14, 13, 0.4) 100%
        );
    }

    .kb-pagehead.kb-pagehead--image h1 {
        max-width: 90%;
        font-size: clamp(2.7rem, 11vw, 4.5rem);
    }
}

@media (max-width: 640px) {
    .kb-pagehead.kb-pagehead--image > .container {
        width: calc(100% - 2rem);
    }

    .kb-pagehead.kb-pagehead--image > img {
        object-position: 65% center;
    }

    .kb-pagehead.kb-pagehead--image::after {
        background: rgba(42, 14, 13, 0.7);
    }

    .kb-pagehead.kb-pagehead--image h1 {
        max-width: 100%;
    }
}

.kb-pagehead__ai-note {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 0.75rem;

    display: block;
    padding: 0.3rem 0.55rem;

    color: rgba(255, 255, 255, 0.9);
    background: rgba(42, 14, 13, 0.72);
    border-radius: 0.2rem;

    font-size: 0.7rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    pointer-events: none;
}

@media (max-width: 640px) {
    .kb-pagehead__ai-note {
        right: 0.5rem;
        bottom: 0.5rem;
        font-size: 0.65rem;
    }
}

/* ===== Datenschutzeinstellungen: Widerrufsformular ===== */
.kb-consent-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--kb-line);
    background: var(--kb-cream);
}
.kb-consent-form__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}
.kb-consent-form__list li {
    border: 1px solid var(--kb-line);
    background: #fff;
}
.kb-consent-form__list label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    cursor: pointer;
}
.kb-consent-form__list input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    accent-color: var(--kb-red);
}
.kb-consent-form__list input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.kb-consent-form__list strong {
    display: block;
    color: var(--kb-ink);
}
.kb-consent-form__hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--kb-muted);
}
.kb-consent-form .kb-actions {
    margin-top: 0.2rem;
}
.kb-consent-form__status {
    margin: 1rem 0 0;
    font-size: 0.85rem;
    color: var(--kb-muted);
}

/* ===== Vorbestellung Verkaufstouren ===== */
.kb-order-form h2 {
    font: 600 1.4rem/1.2 KBLora, serif;
    margin: 2rem 0 1rem;
}
.kb-order-form h2:first-of-type {
    margin-top: 0;
}
.kb-order-dates {
    display: grid;
    gap: 0.6rem;
}
.kb-order-date {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid var(--kb-line);
    background: #fff;
    padding: 0.9rem 1rem;
    cursor: pointer;
}
.kb-order-date input {
    margin-top: 0.25rem;
    accent-color: var(--kb-red);
}
.kb-order-date strong {
    display: block;
    color: var(--kb-ink);
}
.kb-order-date small {
    display: block;
    margin-top: 0.15rem;
    color: var(--kb-muted);
}
.kb-order-list {
    display: grid;
    gap: 0.5rem;
}
.kb-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--kb-line);
    background: #fff;
    padding: 0.8rem 1rem;
}
.kb-order-item strong {
    display: block;
    color: var(--kb-ink);
}
.kb-order-item__price {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.85rem;
    color: var(--kb-muted);
}
.kb-order-qty {
    width: 4.5rem;
    flex: 0 0 auto;
    border: 1px solid var(--kb-line);
    padding: 0.5rem;
    font: inherit;
    text-align: center;
}
.kb-order-total {
    margin: 1.2rem 0 0;
    padding: 0.9rem 1rem;
    background: var(--kb-cream);
    border: 1px solid var(--kb-line);
}
.kb-order-total__hint {
    display: block;
    font-size: 0.8rem;
    color: var(--kb-muted);
}
.kb-order-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.kb-order-fields label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--kb-ink);
}
.kb-order-fields input,
.kb-order-fields textarea {
    border: 1px solid var(--kb-line);
    padding: 0.7rem 0.9rem;
    font: inherit;
    font-weight: 400;
}
.kb-order-fields__full {
    grid-column: 1 / -1;
}
.kb-order-required {
    color: var(--kb-red);
    font-weight: 400;
}
.kb-order-optional {
    color: var(--kb-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .kb-order-fields {
        grid-template-columns: 1fr;
    }
}

/* ===== Live-Tracking (Leaflet/OpenStreetMap) ===== */
.kb-live-tracking {
    margin-top: 1.5rem;
}
.kb-live-tracking__placeholder {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    background: var(--kb-cream);
    border: 1px solid var(--kb-line);
    padding: 1rem;
}
.kb-live-tracking__placeholder span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #89a197;
    margin-top: 0.4rem;
    flex: 0 0 auto;
}
.kb-live-tracking__map {
    width: 100%;
    height: 260px;
    border: 1px solid var(--kb-line);
}
.kb-live-tracking--large .kb-live-tracking__map {
    height: 480px;
}
.kb-live-tracking__status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: var(--kb-muted);
}
.kb-live-tracking__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: var(--kb-muted);
}
.kb-live-tracking__badge--unterwegs {
    background: #2f7a4d;
}
.kb-live-tracking__badge--pause {
    background: #b98900;
}
.kb-live-tracking__badge--beendet {
    background: var(--kb-muted);
}
.kb-live-tracking__badge--signal_veraltet {
    background: var(--kb-red);
}

/* Fahrzeug-Icon auf der Karte: deutlich größer/auffälliger als die
   kleinen, neutralen Haltestellen-Kreise. */
.kb-live-tracking__vehicle-icon span {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--kb-red);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--kb-red), 0 2px 8px rgba(42, 14, 13, 0.45);
}

.kb-stop-popup {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--kb-ink, #2a2a2a);
}
.kb-stop-popup strong {
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .kb-live-tracking--large .kb-live-tracking__map {
        height: 360px;
    }
}

.kb-background-cream {
    background: var(--cream);
}
.kb-background-white {
    background: #ffffff;
}

/* FAQ Sections */
/* ===== Google Rezensionen (Startseite) ===== */
.kb-reviews {
    background: #fff;
}
.kb-reviews__intro {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}
.kb-reviews__intro h2 {
    font-family: KBLora, serif;
    margin: 0 0 0.6rem;
    color: var(--kb-ink, #2a2a2a);
}
.kb-reviews__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: var(--kb-muted, #6b6157);
    font-size: 1rem;
    margin: 0;
}
.kb-reviews__stars-inline {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.kb-reviews__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 980px) {
    .kb-reviews__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .kb-reviews__list {
        grid-template-columns: 1fr;
    }
}

.kb-review-card {
    background: #fff;
    border: 1px solid var(--kb-line, #e5dccd);
    border-top: 4px solid var(--kb-yellow);
    border-radius: 6px;
    padding: 1.5rem 1.75rem;
}
.kb-review-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.kb-review-card__avatar {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--kb-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
}
.kb-review-card__who {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.kb-review-card__who strong {
    color: var(--kb-ink, #2a2a2a);
    font-size: 1rem;
}
.kb-review-card__who span {
    color: var(--kb-muted, #6b6157);
    font-size: 0.82rem;
}
.kb-review-card__stars {
    flex: 0 0 auto;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.kb-review-card__text {
    margin: 0;
    color: var(--kb-ink, #2a2a2a);
    line-height: 1.65;
    font-style: italic;
}

.kb-reviews__summary {
    text-align: center;
}
.kb-reviews__summary-stars {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.kb-reviews__summary-score {
    display: block;
    font-family: KBLora, serif;
    font-size: 1.8rem;
    color: var(--kb-red);
    margin-bottom: 0.35rem;
}
.kb-reviews__summary-text {
    margin: 0 0 1.5rem;
    color: var(--kb-muted, #6b6157);
}
.kb-reviews__summary-text strong {
    color: var(--kb-ink, #2a2a2a);
}

.kb-faq {
    background: var(--cream);
}

.kb-faq > .container {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.kb-faq__intro {
    position: sticky;
    top: 130px;
}

.kb-faq__intro h2 {
    margin: 0.5rem 0 1.25rem;
    font-family: KBLora, serif;
}

.kb-faq__intro > p:last-child {
    max-width: 34rem;
    color: var(--kb-muted);
    line-height: 1.7;
}

.kb-faq__list {
    border-top: 1px solid var(--line);
}

.kb-faq__list details {
    border-bottom: 1px solid var(--line);
}

.kb-faq__list summary {
    position: relative;
    padding: 1.5rem 3.5rem 1.5rem 0;

    color: var(--kb-ink);
    font: 600 clamp(1.1rem, 2vw, 1.3rem)/1.4 KBLora, serif;

    list-style: none;
    cursor: pointer;
}

.kb-faq__list summary::-webkit-details-marker {
    display: none;
}

.kb-faq__list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;

    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;

    color: var(--kb-red);
    border: 1px solid var(--line);
    border-radius: 50%;

    font: 400 1.4rem/1 KBOutfit, sans-serif;
    transform: translateY(-50%);
    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.kb-faq__list details[open] summary::after {
    content: "−";
    color: #fff;
    background: var(--kb-red);
    border-color: var(--kb-red);
}

.kb-faq__list summary:hover {
    color: var(--kb-red);
}

.kb-faq__list summary:focus-visible {
    outline: 2px solid var(--kb-red);
    outline-offset: 4px;
}

.kb-faq__list details > div {
    padding: 0 3.5rem 1.5rem 0;
}

.kb-faq__list details > div p {
    max-width: 48rem;
    margin: 0;
    color: var(--kb-muted);
    line-height: 1.75;
}

.kb-faq__list a {
    color: var(--kb-red);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.kb-faq__list a:hover {
    text-decoration-thickness: 2px;
}

@media (max-width: 800px) {
    .kb-faq > .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .kb-faq__intro {
        position: static;
    }
}

@media (max-width: 640px) {
    .kb-faq__list summary {
        padding-right: 3rem;
    }

    .kb-faq__list details > div {
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kb-faq__list summary::after {
        transition: none;
    }
}

.kb-section--cream {
    background-color: var(--cream, #f6f0e2);
}

.kb-section--white {
    background-color: #ffffff;
}

.kb-tour-card__arrival {
    margin-top: 0.65rem;
    color: var(--kb-red);
    font-weight: 600;
}

.kb-text-white {
	color: #ffffff;
}
.kb-text-cream {
	color: var(--cream);
}

a.kb-text-cream {
	color: var(--cream);
}


/* ===== Footer ===== */
.kb-footer__brand {
    display: block !important;
}
.kb-footer .footer-social {
    margin-top: 1.25rem;
}
.kb-footer .footer-social a {
    color: #fff;
    background: #ffffff14;
    border-color: #ffffff55;
}
.kb-footer .footer-social a:hover {
    color: var(--kb-red);
    background: var(--kb-yellow);
    border-color: var(--kb-yellow);
}
.kb-footer .footer-social svg {
    display: block;
}
.kb-footer a:hover {
    color: var(--kb-yellow);
}
.kb-footer__grid > div > strong {
    display: inline-block;
    color: #fff;
    border-bottom: 2px solid var(--kb-yellow);
    padding-bottom: 0.4rem;
    margin-bottom: 0.2rem;
}

.kb-header a:focus-visible,
.kb-footer a:focus-visible {
    outline: 3px solid var(--kb-yellow);
    outline-offset: 3px;
}

.kb-footer-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kb-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 4.5rem 0 1.5rem;

    color: #fff;
    background:
        radial-gradient(
            circle at 12% 25%,
            rgb(181 26 30 / 22%),
            transparent 34rem
        ),
        linear-gradient(
            135deg,
            #351311 0%,
            #2a0e0d 55%,
            #210a09 100%
        );

    border-top: 3px solid var(--kb-yellow);
}

/* Dezentes Getreidemotiv rechts */
.kb-footer::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -2rem;
    bottom: -3rem;

    width: min(34rem, 48vw);
    aspect-ratio: 1;

    opacity: 0.08;
    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none' stroke='%23F6D70E' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M150 285C148 222 151 155 158 70'/%3E%3Cpath d='M157 91c-25-8-37-25-38-49 24 5 38 21 38 49Z'/%3E%3Cpath d='M157 118c26-8 40-25 42-49-25 4-40 21-42 49Z'/%3E%3Cpath d='M153 146c-27-7-42-23-45-47 26 3 42 19 45 47Z'/%3E%3Cpath d='M153 176c28-7 44-23 48-47-27 3-44 19-48 47Z'/%3E%3Cpath d='M150 205c-28-6-45-21-50-45 27 2 45 17 50 45Z'/%3E%3Cpath d='M149 234c29-5 47-20 53-44-28 1-47 16-53 44Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}

.kb-footer__grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

/* Spaltenüberschriften */
.kb-footer__grid h2,
.kb-footer__grid h3 {
    position: relative;

    margin: 0 0 1.1rem;
    padding-bottom: 0.75rem;

    color: #fff;
    font-family: KBLora, serif;
    font-size: 1.15rem;
    line-height: 1.3;
}

.kb-footer__grid h2::after,
.kb-footer__grid h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 2.8rem;
    height: 2px;

    background: var(--kb-yellow);
}

.kb-footer__grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Links */
.kb-footer a {
    position: relative;

    color: rgb(255 255 255 / 82%);
    text-decoration: none;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.kb-footer__grid > div:not(:first-child) a {
    padding-block: 0.15rem;
}

.kb-footer__grid > div:not(:first-child) a:hover,
.kb-footer__grid > div:not(:first-child) a:focus-visible {
    color: var(--kb-yellow);
    transform: translateX(0.2rem);
}

.kb-footer a:focus-visible {
    outline: 2px solid var(--kb-yellow);
    outline-offset: 4px;
}

/* Logo */
.kb-footer .kb-brand {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.kb-footer .kb-brand img {
    filter: drop-shadow(0 0.5rem 1rem rgb(0 0 0 / 20%));
}

.kb-brand--light .kb-brand__mark {
    color: #e5be68;
    border-color: #e5be68;
}

/* Beschreibung und Kontaktdaten */
.kb-footer p,
.kb-footer address {
    color: rgb(255 255 255 / 74%);
    line-height: 1.7;
}

.kb-footer address {
    margin: 0;
    font-style: normal;
}

/* Untere Footerzeile */
.kb-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;

    margin-top: 3.5rem;
    padding-top: 1.4rem;

    color: rgb(255 255 255 / 62%);
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.kb-footer__bottom a {
    color: inherit;
}

.kb-footer__bottom a:hover,
.kb-footer__bottom a:focus-visible {
    color: var(--kb-yellow);
}

/* Responsive */
@media (max-width: 950px) {
    .kb-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .kb-footer::before {
        width: 28rem;
        opacity: 0.06;
    }
}

@media (max-width: 600px) {
    .kb-footer {
        padding-top: 3.5rem;
    }

    .kb-footer__grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .kb-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2.75rem;
    }

    .kb-footer::before {
        right: -7rem;
        bottom: -1rem;
        width: 25rem;
    }
}		

/* ===== Dynamische Sortimentsübersicht ===== */

.container.kb-sortiment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.5rem;

    width: min(1180px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 0;
}

/* Link bildet die äußere Karte */
.kb-sortiment-card {
    display: flex;
    min-width: 0;

    color: var(--kb-ink);
    text-decoration: none;

    background: #fff;
    border: 1px solid var(--kb-line);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.kb-sortiment-card:hover,
.kb-sortiment-card:focus-visible {
    color: var(--kb-ink);
    border-color: var(--kb-red);
    box-shadow: 0 16px 38px rgb(42 14 13 / 12%);
    transform: translateY(-4px);
}

.kb-sortiment-card:focus-visible {
    outline: 3px solid var(--kb-yellow);
    outline-offset: 3px;
}

/* Artikel füllt die vollständige Kartenhöhe */
.kb-sortiment-card article {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
}

/* Produktbild */
.kb-sortiment-card__image {
    position: relative;
    flex: 0 0 auto;

    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;

    background: var(--kb-paper);
    border-bottom: 1px solid var(--kb-line);
}

.kb-sortiment-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center;

    transition: transform 300ms ease;
}

.kb-sortiment-card:hover
    .kb-sortiment-card__image:not(.kb-sortiment-card__image--placeholder)
    img,
.kb-sortiment-card:focus-visible
    .kb-sortiment-card__image:not(.kb-sortiment-card__image--placeholder)
    img {
    transform: scale(1.04);
}

/* Ersatzbild oder Logo */
.kb-sortiment-card__image--placeholder {
    display: grid;
    place-items: center;
    padding: clamp(2rem, 4vw, 3rem);

    background:
        radial-gradient(
            circle at center,
            rgb(255 255 255 / 10%),
            transparent 65%
        ),
        var(--kb-red);
}

.kb-sortiment-card__image--placeholder.kb-background-cream {
    background:
        radial-gradient(
            circle at center,
            rgb(255 255 255 / 35%),
            transparent 65%
        ),
        var(--cream);
}


.kb-sortiment-card__image--placeholder img {
    width: min(75%, 240px);
    height: auto;
    max-height: 75%;

    object-fit: contain;
    transform: none;
}

/* Textbereich */
.kb-sortiment-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: clamp(1.75rem, 3vw, 2.4rem);
}

.kb-sortiment-card h2 {
    margin: 0 0 0.9rem;

    color: var(--kb-ink);
    font: 600 clamp(1.65rem, 2.2vw, 2.1rem) / 1.15 KBLora, serif;
}

.kb-sortiment-card p {
    margin: 0;

    color: var(--kb-muted);
    line-height: 1.65;
}

/* Aufzählung */
.kb-sortiment-card ul {
    margin: 1.4rem 0 1.8rem;
    padding: 0;

    list-style: none;
}

.kb-sortiment-card li {
    position: relative;

    margin-top: 0.55rem;
    padding-left: 1.4rem;

    color: var(--kb-muted);
    line-height: 1.5;
}

.kb-sortiment-card li:first-child {
    margin-top: 0;
}

.kb-sortiment-card li::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;

    width: 1.05em;
    height: 1.05em;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B51A1E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Linktext immer unten */
.kb-sortiment-card__link {
    display: block;

    margin-top: auto;
    padding-top: 1rem;

    color: var(--kb-red);
    font-weight: 700;
}

.kb-sortiment-card:hover .kb-sortiment-card__link,
.kb-sortiment-card:focus-visible .kb-sortiment-card__link {
    color: var(--kb-red-dark);
}

/* ===== Responsive ===== */

@media (max-width: 980px) {
    .container.kb-sortiment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container.kb-sortiment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;

        width: min(100% - 2rem, 1180px);
    }

    .kb-sortiment-card__content {
        padding: 1.5rem;
    }
}

.kb-sortiment-card__ai-note {
    position: absolute;
    z-index: 2;
    right: 0.6rem;
    bottom: 0.5rem;

    display: block;
    padding: 0.3rem 0.5rem;

    color: rgb(255 255 255 / 90%);
    background: rgb(42 14 13 / 76%);
    border-radius: 0.2rem;

    font-size: 0.65rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;

    pointer-events: none;
}

/* Lesbarkeit über sehr hellen Bildbereichen */
.kb-sortiment-card__ai-note {
    box-shadow: 0 1px 5px rgb(0 0 0 / 18%);
}

@media (max-width: 640px) {
    .kb-sortiment-card__ai-note {
        right: 0.4rem;
        bottom: 0.4rem;
        font-size: 0.6rem;
    }
}
.kb-sortiment-card__image-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;

    display: flex;
    align-items: flex-end;
    padding: clamp(1.25rem, 3vw, 2rem);

    background: linear-gradient(
        to top,
        rgb(0 0 0 / 72%) 0%,
        rgb(0 0 0 / 20%) 55%,
        transparent 100%
    );
}

.kb-sortiment-card__image-overlay h2 {
    margin: 0;

    color: #fff;
    font: 600 clamp(1.65rem, 2.2vw, 2.1rem) / 1.15 KBLora, serif;
    text-shadow: 0 2px 8px rgb(0 0 0 / 45%);
}

.kb-footer__bio {
    display: flex;
    justify-content: center;

    margin-top: 1.25rem;
}

.kb-footer__bio img {
    display: block;
    width: clamp(68px, 6vw, 82px);
    height: auto;
}