@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url("../fonts/open-sans-latin.23145c714161.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("../fonts/playfair-display-latin.6da252de0cbc.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 400 900;
    font-display: swap;
    src: url("../fonts/playfair-display-italic-latin.f5051d38185e.woff2") format("woff2");
}

:root {
    --green: #c07820;
    --green-dark: #8a5814;
    --schlamm: #3a3d0c;
    --olive: #5c5a41;
    --orange: #f8b042;
    --orange-dark: #d9920a;
    --coral: #ff9888;
    --cream: #fff5df;
    --pale-green: #f5f1e8;
    --text: #1a1a1a;
    --text-mid: #5c5a41;
    --text-light: #8a8870;
    --border: #e5e3d0;
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgb(58 61 12 / 8%);
    --shadow-lg: 0 24px 60px rgb(58 61 12 / 14%);
    --radius-sm: 0.5rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --container: 78rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

body.consent-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.7em;
    color: var(--schlamm);
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.1rem, 4.5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

p {
    margin: 0 0 1em;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.content-narrow {
    max-width: 48rem;
}

.content-normal {
    max-width: 64rem;
}

.content-wide {
    max-width: 76rem;
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: white;
    background: var(--schlamm);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 0.8rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section {
    padding-block: clamp(3rem, 5vw, 5rem);
}

.section-white {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-green {
    background: var(--pale-green);
}

.section-dark {
    color: white;
    background: var(--schlamm);
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-title,
.section-intro {
    max-width: 40rem;
    margin-inline: auto;
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-intro {
    margin-bottom: 0;
    color: var(--text-mid);
    font-size: 1.1rem;
    line-height: 1.7;
}

.richtext > :first-child {
    margin-top: 0;
}

.richtext > :last-child {
    margin-bottom: 0;
}

.richtext h2,
.richtext h3,
.richtext h4 {
    margin-top: 1.7em;
}

.richtext ul,
.richtext ol {
    padding-left: 1.35rem;
}

.richtext li + li {
    margin-top: 0.45rem;
}

.richtext a {
    color: var(--green-dark);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--schlamm);
    background: var(--orange);
    box-shadow: 0 8px 22px rgb(248 176 66 / 24%);
}

.button-primary:hover {
    background: var(--orange-dark);
}

.button-secondary {
    color: var(--schlamm);
    background: white;
    border-color: var(--border);
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green-dark);
    font-weight: 700;
}

.text-link::after {
    content: "→";
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgb(200 216 78 / 20%);
    background: rgb(46 48 8 / 97%);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
}

.brand img {
    width: auto;
    max-height: 2.75rem;
}

.brand-mark {
    padding: 0.28rem 0.48rem;
    color: white;
    background: #4c6b15;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.brand-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-navigation > ul {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-navigation > ul > li {
    position: relative;
}

.primary-navigation > ul > li > a,
.nav-parent {
    display: flex;
    min-height: 2.5rem;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    color: rgb(255 255 255 / 72%);
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease;
}

.nav-parent svg {
    width: 0.875rem;
    height: 0.875rem;
}

.primary-navigation > ul > li.is-active > a,
.primary-navigation > ul > li.is-active > .nav-parent {
    color: #c8d84e;
    border-bottom-color: #c8d84e;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.nav-parent:hover,
.nav-parent:focus-visible {
    color: #c8d84e;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    width: 13rem;
    gap: 0;
    padding: 0.75rem 0 0.5rem;
    margin: 0;
    visibility: hidden;
    list-style: none;
    background: #232800;
    border: 1px solid rgb(200 216 78 / 20%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-0.4rem);
    transition: 160ms ease;
}

.has-children:hover .submenu,
.has-children:focus-within .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.submenu-link {
    display: block;
    padding: 0.5rem 1rem;
    color: rgb(255 255 255 / 72%);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.submenu-link:hover,
.submenu-link:focus-visible,
.submenu-link.is-active {
    color: #c8d84e;
    background: rgb(200 216 78 / 10%);
}

.header-phone {
    color: rgb(255 255 255 / 55%);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone:hover {
    color: #c8d84e;
}

.nav-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0.6rem;
    border: 0;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #c8d84e;
    transition: 180ms ease;
}

.nav-cta {
    white-space: nowrap;
}

.hero {
    position: relative;
    display: grid;
    min-height: clamp(35.5rem, 60vh, 38rem);
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e2105 0%, #2d3410 40%, #1a3a0e 75%, #0d2208 100%);
}

.hero::before,
.hero::after {
    position: absolute;
    width: 32rem;
    height: 32rem;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.hero::before {
    top: -8rem;
    right: -6rem;
    background: radial-gradient(circle, rgb(192 120 32 / 20%) 0%, transparent 70%);
}

.hero::after {
    bottom: -8rem;
    left: -6rem;
    background: radial-gradient(circle, rgb(248 176 66 / 18%) 0%, transparent 70%);
}

.cta-background,
.page-header > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(29 31 7 / 78%) 0%, rgb(29 31 7 / 42%) 50%, rgb(29 31 7 / 8%) 100%);
}

.hero-background {
    position: absolute;
    z-index: 1;
    right: max(calc((100vw - var(--container)) / 2), 1rem);
    bottom: 0;
    width: min(24vw, 21.25rem);
    height: 90%;
    object-fit: contain;
    mask-image:
        linear-gradient(to bottom, transparent 0%, black 18%, black 80%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, black 18%, black 80%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-composite: source-in;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 72% 26%, rgb(248 176 66 / 10%), transparent 28%),
        linear-gradient(90deg, rgb(20 24 5 / 18%), transparent 68%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    padding-block: 3rem;
    padding-right: min(29vw, 25rem);
}

.hero-has-image .hero-content,
.hero-has-image h1 {
    color: white;
}

.hero h1 {
    max-width: 54.25rem;
    color: white;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero .eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
    color: rgb(255 255 255 / 60%);
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.hero-text {
    color: rgb(212 232 176 / 85%);
}

.hero-title-primary,
.hero-title-secondary {
    display: block;
}

.hero-title-secondary {
    margin-top: 0.1em;
    color: rgb(255 255 255 / 70%);
    font-size: 0.85em;
    font-weight: 600;
}

.hero .button-secondary {
    color: white;
    background: transparent;
    border: 2px solid rgb(255 255 255 / 70%);
    backdrop-filter: blur(4px);
}

.hero .button-secondary:hover {
    color: var(--schlamm);
    background: white;
    border-color: white;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.25rem;
    padding: 0;
    margin: 1.25rem 0 0;
    color: rgb(255 255 255 / 50%);
    font-size: 0.82rem;
    list-style: none;
}

.hero-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-benefits span {
    color: var(--orange);
}

.hero-center .hero-content {
    margin-inline: auto;
    text-align: center;
}

.hero-center .button-row {
    justify-content: center;
}

.hero-text {
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.7;
}

.page-header {
    position: relative;
    isolation: isolate;
    padding-block: clamp(2.5rem, 8vw, 5rem);
    overflow: hidden;
    color: white;
    background:
        linear-gradient(135deg, #1e2105 0%, #2d3410 45%, #1a3a0e 100%);
}

.page-header-orb {
    position: absolute;
    z-index: -1;
    width: 34rem;
    height: 34rem;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.page-header-orb-a {
    top: -8rem;
    right: -6rem;
    background: radial-gradient(circle, rgb(192 120 32 / 20%) 0%, transparent 70%);
    opacity: 0.6;
}

.page-header-orb-b {
    bottom: -8rem;
    left: -5rem;
    background: radial-gradient(circle, rgb(248 176 66 / 18%) 0%, transparent 70%);
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 56rem;
    padding-inline: 1rem;
    margin-inline: auto;
    text-align: center;
}

.page-header h1 {
    max-width: none;
    margin: 0 0 1.25rem;
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.page-intro {
    max-width: 42rem;
    margin-inline: auto;
    color: rgb(212 232 176 / 85%);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.625;
}

.page-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin: 0 0 1.5rem;
    color: var(--orange);
    background: rgb(248 176 66 / 15%);
    border: 1px solid rgb(248 176 66 / 30%);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1rem;
}

.page-header-wave {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
}

.page-header-wave path {
    fill: white;
}

.image-text {
    display: grid;
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.image-text.image-left .image-text-media {
    order: -1;
}

.image-text-media {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-text-media img {
    width: 100%;
    transition: transform 500ms ease;
}

.image-text-media:hover img {
    transform: scale(1.025);
}

.card-grid {
    display: grid;
    gap: 1.35rem;
    margin-top: 3rem;
}

.card-grid.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card-grid.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
}

.card-icon {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    margin: 1.5rem 1.5rem 0;
    background: var(--pale-green);
    border-radius: 50%;
    font-size: 1.45rem;
}

.card-copy {
    padding: 1.5rem;
}

.card-copy h3 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.card-grid-categories {
    gap: 1.25rem;
}

.category-card {
    display: block;
    color: inherit;
    text-align: center;
    text-decoration: none;
    border-radius: 1rem;
}

.category-card:hover {
    transform: translateY(-0.5rem);
}

.category-card-media {
    display: grid;
    height: 11rem;
    place-items: center;
    padding: 0.75rem;
    overflow: hidden;
    background: var(--pale-green);
}

.category-card .card-image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    transition: transform 500ms ease;
}

.category-card:hover .card-image {
    transform: scale(1.1);
}

.category-card .card-copy {
    display: block;
    padding: 1rem;
    background: white;
    transition: background 200ms ease;
}

.category-card:hover .card-copy {
    background: var(--pale-green);
}

.category-card-title {
    display: block;
    margin: 0 0 0.25rem;
    color: var(--schlamm);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.category-card .richtext {
    display: block;
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.5;
}

.card-grid-benefits .feature-card {
    text-align: center;
}

.card-grid-benefits .card-image {
    height: 12rem;
    aspect-ratio: auto;
    object-fit: cover;
}

.card-grid-benefits .card-copy {
    padding: 1.25rem;
}

.card-grid-benefits .card-copy h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.375;
}

.card-grid-benefits .richtext {
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.625;
}

.card-grid-steps {
    gap: 2rem;
}

.step-card {
    position: relative;
    min-width: 0;
}

.step-card .card-copy {
    padding: 0;
}

.step-card .card-copy h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-card .richtext {
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.625;
}

.step-card .step-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    margin: 0 0 1rem;
    color: white;
    background: var(--orange);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
}

.step-card:not(:last-child)::after {
    position: absolute;
    z-index: 0;
    top: 1.25rem;
    right: -2rem;
    left: 2.5rem;
    display: none;
    height: 1px;
    content: "";
    background: var(--border);
}

@media (min-width: 64rem) {
    .step-card:not(:last-child)::after {
        display: block;
    }
}

.cta {
    position: relative;
    display: grid;
    min-height: 0;
    place-items: center;
    overflow: hidden;
    color: white;
    background: var(--green);
}

.cta-dark {
    background: linear-gradient(135deg, #1e2105 0%, #2d3410 50%, #1a3a0e 100%);
}

.cta-cream {
    margin-top: 4rem;
    color: var(--olive);
    background: var(--cream);
}

.cta-cream .cta-content {
    max-width: 48rem;
    padding-block: 3.5rem;
}

.cta-cream .cta-content h2 {
    color: var(--schlamm);
    font-size: 2.25rem;
}

.cta-cream .cta-content > .richtext {
    color: var(--olive);
    font-size: 1.1rem;
}

.cta-cream .cta .button-row,
.cta-cream .button-row {
    gap: 1rem;
}

.cta-cream .button-secondary {
    color: var(--green-dark);
    background: transparent;
    border: 2px solid var(--green);
}

.cta-cream .button-secondary:hover {
    color: white;
    background: var(--green);
    border-color: var(--green);
}

.cta-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgb(40 42 10 / 72%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 58rem;
    padding-block: clamp(3rem, 5vw, 5rem);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-heading-accent {
    color: var(--orange);
}

.cta-content > .richtext {
    color: rgb(212 232 176 / 85%);
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-content .button-row {
    justify-content: center;
}

.cta:not(.cta-cream) .button-secondary {
    color: white;
    background: transparent;
    border: 2px solid rgb(255 255 255 / 70%);
}

.cta:not(.cta-cream) .button-secondary:hover {
    color: var(--schlamm);
    background: white;
    border-color: white;
}

.quote {
    display: grid;
    max-width: 58rem;
    justify-items: center;
    text-align: center;
}

.quote img {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border-radius: 50%;
}

.quote blockquote {
    margin: 0;
    color: var(--schlamm);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.65rem, 3.4vw, 2.75rem);
    line-height: 1.35;
}

.quote figcaption {
    margin-top: 1.5rem;
    font-weight: 700;
}

.quote figcaption span {
    display: block;
    color: var(--text-mid);
    font-size: 0.85rem;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
    margin: 0;
}

.gallery-grid img {
    width: 100%;
    border-radius: var(--radius);
}

.gallery-grid figcaption {
    margin-top: 0.5rem;
    color: var(--text-mid);
    font-size: 0.85rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.faq-item,
.product-details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-item summary,
.product-details summary {
    position: relative;
    padding: 1rem 3.5rem 1rem 1.5rem;
    color: var(--schlamm);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: background 180ms ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
    background: var(--pale-green);
}

.faq-item summary::-webkit-details-marker,
.product-details summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after,
.product-details summary::after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 0.65rem;
    height: 0.65rem;
    content: "";
    border-right: 2px solid currentcolor;
    border-bottom: 2px solid currentcolor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 180ms ease;
}

.faq-item[open] summary::after,
.product-details[open] summary::after {
    transform: translateY(-20%) rotate(225deg);
}

.faq-item > .richtext,
.product-details > .richtext {
    padding: 1rem 1.5rem 1.25rem;
    color: var(--olive);
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    line-height: 1.625;
}

.standard-page-faq .faq-section {
    padding-block: 3.5rem;
}

.standard-page-faq .faq-section .section-title,
.standard-page-faq .faq-section .section-intro {
    display: none;
}

.standard-page-faq .faq-list {
    margin-top: 0;
}

.product-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.product-section {
    padding-block: 3.5rem;
    background: white;
}

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.product-card:hover {
    border-color: rgb(192 120 32 / 30%);
    box-shadow: 0 12px 32px rgb(58 61 12 / 13%);
    transform: translateY(-3px);
}

.product-media {
    display: grid;
    height: 16rem;
    place-items: center;
    padding: 1rem;
    overflow: hidden;
    background: #f0ebe3;
    border-radius: 1rem 1rem 0 0;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-media-cover {
    height: 13rem;
    padding: 0;
}

.product-media-cover img {
    object-fit: cover;
}

.product-media-portrait {
    height: auto;
    min-height: 17.875rem;
    align-items: end;
    padding: 1.5rem 2rem 0;
    background: #f5f2ee;
}

.product-media-portrait img {
    width: auto;
    height: 16.25rem;
    object-fit: contain;
}

.product-media-height-compact {
    height: 13rem;
}

.product-media-height-portrait {
    height: auto;
    min-height: 17.875rem;
}

.product-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
}

.product-copy .product-name {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.55;
}

.product-subtitle {
    margin-bottom: 0.75rem;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1rem;
    text-transform: uppercase;
}

.product-description {
    flex: 1;
    margin-bottom: 1rem;
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.625;
}

.product-info {
    padding: 2rem;
    margin-top: 3rem;
    color: var(--olive);
    background: #f0fbe4;
    border-radius: 1rem;
}

.product-info-cream {
    background: var(--cream);
}

.product-category-mensch .product-info {
    background: #fff1f1;
}

.product-info h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-info .richtext {
    line-height: 1.65;
}

.product-info .richtext ul {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.product-info .richtext li {
    position: relative;
    padding-left: 1.75rem;
}

.product-info .richtext li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "✓";
    color: var(--green);
    font-weight: 800;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: auto 0 0;
    list-style: none;
}

.badges li {
    padding: 0.2rem 0.7rem;
    color: var(--green-dark);
    background: var(--pale-green);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-listing {
    padding-block: 3.5rem;
}

.blog-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    text-decoration: none;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
    border-color: rgb(192 120 32 / 30%);
    box-shadow: 0 12px 32px rgb(58 61 12 / 13%);
    transform: translateY(-3px);
}

.blog-card-image {
    display: block;
    height: 12rem;
    flex: 0 0 auto;
    overflow: hidden;
    background: var(--pale-green);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.035);
}

.blog-card-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-category {
    padding: 0.25rem 0.75rem;
    color: var(--green-dark);
    background: var(--pale-green);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.blog-category-hund {
    background: #e8f3e2;
}

.blog-category-katze {
    color: #c0392b;
    background: #fef0ef;
}

.blog-category-gesundheit {
    color: #c87a00;
    background: #fef8ee;
}

.blog-category-pflege {
    color: #7a5c3a;
    background: #f0ebe3;
}

.blog-category-ernaehrung {
    color: var(--schlamm);
    background: #e8f5ec;
}

.blog-card time,
.article-header time {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
}

.blog-card h2 {
    margin: 0.75rem 0 0.5rem;
    color: var(--schlamm);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-copy > p {
    flex: 1;
    margin-bottom: 0;
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.625;
}

.blog-card .text-link {
    margin-top: 1rem;
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-consultation {
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    background: var(--pale-green);
    border-radius: 1rem;
}

.blog-consultation h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.blog-consultation .richtext {
    color: var(--olive);
}

.blog-consultation .button-row {
    justify-content: center;
    margin-top: 1.5rem;
}

.blog-faq-divider {
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.template-blogindexpage .faq-section {
    padding-top: 3.5rem;
}

.article-header {
    padding-block: clamp(2.5rem, 7vw, 5rem);
}

.article-header h1 {
    max-width: 56rem;
    margin: 0.6rem auto 1rem;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    line-height: 1.15;
    text-align: center;
}

.article-intro {
    max-width: 45rem;
    margin: 0 auto 1em;
    color: rgb(212 232 176 / 85%);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}

.article-intro > :last-child {
    margin-bottom: 0;
}

.article-header-content {
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.article-meta .eyebrow {
    margin: 0;
}

.article-header time {
    color: rgb(255 255 255 / 65%);
}

.article-shell {
    padding-block: 3.5rem 0;
}

.article-image {
    max-width: 64rem;
}

.article-image img {
    width: 100%;
    max-height: 36rem;
    object-fit: cover;
    border-radius: 1.25rem;
}

.article-body {
    max-width: 48rem;
    margin-inline: auto;
}

.article-body .section {
    padding-block: 3.5rem 0;
}

.article-body .section > .container {
    width: 100%;
}

.article-body .richtext {
    color: var(--olive);
    font-size: 1rem;
    line-height: 1.8;
}

.article-body .richtext h2 {
    margin-top: 1.8em;
    font-size: 1.75rem;
}

.article-body .richtext h3 {
    font-size: 1.25rem;
}

.contact-layout {
    display: grid;
    max-width: 64rem;
    align-items: start;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-section {
    padding-block: 3.5rem;
}

.contact-portrait {
    position: relative;
    width: 60%;
    margin-bottom: 1.75rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgb(58 61 12 / 16%);
}

.contact-portrait > img {
    width: 100%;
    height: auto;
}

.contact-portrait-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2.5rem 1.25rem 1rem;
    color: white;
    background: linear-gradient(to top, rgb(46 48 8 / 85%) 0%, transparent 100%);
}

.contact-portrait-caption strong,
.contact-portrait-caption span {
    display: block;
}

.contact-portrait-caption strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.contact-portrait-caption span {
    margin-top: 0.2rem;
    color: #c8d84e;
    font-size: 0.875rem;
}

.contact-information > h2,
.form-card > h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-methods {
    display: grid;
    gap: 1.25rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method > span {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
    place-items: center;
    background: var(--pale-green);
    border-radius: 50%;
    font-size: 1.1rem;
}

.contact-method h3 {
    margin-bottom: 0.15rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-method p,
.contact-method a {
    margin: 0;
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-method a {
    color: var(--green);
}

.contact-trial {
    padding: 1.25rem;
    margin-top: 2rem;
    background: #f0fbe4;
    border-radius: 0.75rem;
}

.contact-trial h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-trial .richtext {
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.625;
}

.form-card {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.form-grid {
    display: grid;
    gap: 0.75rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: grid;
    gap: 0.25rem;
    grid-column: 1 / -1;
}

.template-contactpage .form-field {
    align-content: start;
}

.form-field-vorname,
.form-field-nachname,
.form-field-plz,
.form-field-ort,
.form-field-telefonnummer,
.form-field-e_mail_adresse {
    grid-column: auto;
}

.form-field label {
    color: var(--text-mid);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.45;
}

.form-field input:not([type="checkbox"]),
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 2.625rem;
    padding: 0.5rem 0.75rem;
    color: var(--text);
    background: white;
    border: 1px solid #d7d8cf;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    outline: none;
}

.form-field textarea {
    height: 7.5rem;
    min-height: 7.5rem;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgb(192 120 32 / 14%);
}

.form-field-checkbox {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.form-field-checkbox input {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    accent-color: var(--green);
}

.form-field-checkbox > div:not(.form-checkbox-row, .help-text) {
    display: grid;
    gap: 0.3rem;
}

.form-field-checkbox > div:not(.form-checkbox-row, .help-text) label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-field-consent {
    margin-top: 0.25rem;
}

.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.form-checkbox-row input {
    margin: 0.18rem 0 0;
}

.form-checkbox-row label {
    color: var(--olive);
    font-weight: 400;
    line-height: 1.55;
}

.form-consent-copy {
    min-width: 0;
}

.form-consent-copy .help-text {
    margin-top: 0.2rem;
    line-height: 1.5;
}

.form-consent-copy a {
    color: var(--green);
    font-weight: 600;
}

.template-contactpage .form-field-altcha {
    margin-block: 0.75rem;
}

.field-error,
.form-errors {
    color: #a52b21;
    font-size: 0.82rem;
}

.has-error input,
.has-error textarea,
.has-error select {
    border-color: #c23a30;
}

.help-text,
.required-note {
    color: var(--text-light);
    font-size: 0.78rem;
}

.success-section {
    display: grid;
    min-height: 65vh;
    place-items: center;
    background: var(--cream);
}

.success-icon {
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    place-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    background: var(--green);
    border-radius: 50%;
    font-size: 2rem;
}

.about-section,
.jobs-section,
.legal-page {
    background: white;
}

.about-section {
    padding-block: 3.5rem 0;
}

.about-layout {
    display: grid;
    max-width: 64rem;
    align-items: start;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-layout h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-copy {
    color: var(--olive);
    line-height: 1.65;
}

.about-partner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
    color: #c8c9a8;
    background: var(--schlamm);
    border-radius: 0.75rem;
}

.about-partner img {
    width: 9.375rem;
    height: auto;
    flex: 0 0 auto;
}

.about-partner h3 {
    margin-bottom: 0.25rem;
    color: #c8d84e;
    font-size: 0.875rem;
    font-weight: 700;
}

.about-partner p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
}

.about-contact {
    padding: 1.25rem;
    margin-top: 1rem;
    background: #f0fbe4;
    border-radius: 0.75rem;
}

.about-contact h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.about-contact p,
.about-contact span,
.about-contact a {
    display: block;
    margin: 0;
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.5;
}

.about-contact a {
    color: var(--green);
}

.about-card-list {
    display: grid;
    gap: 1.25rem;
}

.about-card {
    display: flex;
    gap: 1rem;
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.about-card:hover {
    border-color: rgb(192 120 32 / 30%);
    box-shadow: 0 12px 32px rgb(58 61 12 / 13%);
    transform: translateY(-3px);
}

.about-card > span {
    flex: 0 0 auto;
    font-size: 1.5rem;
}

.about-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.about-card .richtext {
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.55;
}

.about-primary-action {
    max-width: 64rem;
    margin-top: 3rem;
    text-align: center;
}

.jobs-section {
    padding-block: 3.5rem;
}

.jobs-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.jobs-intro h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.jobs-intro .richtext {
    max-width: 40rem;
    margin-inline: auto;
    color: var(--olive);
    font-size: 1.1rem;
    line-height: 1.7;
}

.jobs-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jobs-card {
    padding: 1.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.jobs-card:hover {
    border-color: rgb(192 120 32 / 30%);
    box-shadow: 0 12px 32px rgb(58 61 12 / 13%);
    transform: translateY(-3px);
}

.jobs-card > span {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
    line-height: 1;
}

.jobs-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.jobs-card .richtext {
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.625;
}

.jobs-panel {
    padding: 3rem;
    margin-top: 3.5rem;
    background: #f0fbe4;
    border-radius: 1rem;
}

.jobs-panel-copy {
    display: grid;
    gap: 0 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jobs-panel-copy h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
}

.jobs-panel-copy ul,
.jobs-panel-copy ol {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.5;
    list-style: none;
}

.jobs-panel-copy h3:nth-of-type(1),
.jobs-panel-copy ul {
    grid-column: 1;
}

.jobs-panel-copy h3:nth-of-type(2),
.jobs-panel-copy ol {
    grid-column: 2;
}

.jobs-panel-copy h3:nth-of-type(1),
.jobs-panel-copy h3:nth-of-type(2) {
    grid-row: 1;
}

.jobs-panel-copy ul,
.jobs-panel-copy ol {
    grid-row: 2;
}

.jobs-panel-copy li {
    position: relative;
    padding-left: 1.8rem;
}

.jobs-panel-copy ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "✓";
    color: var(--green);
    font-weight: 800;
}

.jobs-panel-copy ol {
    counter-reset: jobs-step;
}

.jobs-panel-copy ol li {
    counter-increment: jobs-step;
}

.jobs-panel-copy ol li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 1.5rem;
    height: 1.5rem;
    place-items: center;
    content: counter(jobs-step);
    color: white;
    background: var(--green);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

.jobs-action {
    margin-top: 2rem;
    text-align: center;
}

.legal-page {
    padding-block: 4rem;
}

.legal-page > .container {
    max-width: 48rem;
}

.legal-page h1 {
    margin-bottom: 2rem;
    font-size: 1.875rem;
    line-height: 1.2;
}

.legal-meta {
    margin-top: -1.7rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
}

.legal-page .section {
    padding: 0;
    background: transparent;
}

.legal-page .section > .container {
    width: 100%;
    max-width: none;
}

.legal-page .richtext {
    color: var(--olive);
    font-size: 0.875rem;
    line-height: 1.7;
}

.legal-page .richtext h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.legal-page .richtext h3 {
    margin: 1rem 0 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.legal-page .richtext p {
    margin-bottom: 0.75rem;
}

.site-footer {
    margin-top: 5rem;
    color: rgb(255 255 255 / 78%);
    background: var(--schlamm);
}

.partner-strip {
    background: #2e3008;
    border-bottom: 1px solid rgb(200 216 78 / 20%);
}

.partner-strip-inner {
    display: grid;
    align-items: center;
    gap: 2rem;
    padding-block: 2rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.partner-strip img {
    width: 13.75rem;
    height: auto;
    max-height: none;
}

.partner-strip-logo {
    flex: 0 0 auto;
}

.partner-strip-copy {
    padding-left: 2rem;
    border-left: 1px solid rgb(200 216 78 / 30%);
}

.site-footer .partner-strip h2 {
    margin: 0 0 0.25rem;
    color: #c8d84e;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5rem;
}

.partner-strip .richtext {
    color: #c8c9a8;
    font-size: 0.875rem;
    line-height: 1.625;
}

.partner-strip .richtext p {
    margin: 0;
}

.partner-badges {
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    color: #c8d84e;
    font-size: 0.72rem;
    font-weight: 800;
    list-style: none;
}

.partner-badges li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgb(200 216 78 / 15%);
    border: 1px solid rgb(200 216 78 / 30%);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1rem;
}

.partner-badges li > span {
    font-size: 1rem;
    line-height: 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-block: 3.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer h2,
.site-footer h3 {
    color: white;
}

.site-footer h3 {
    color: #c8d84e;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.25rem;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > h3 {
    margin: 0 0 1rem;
}

.footer-brand h2 {
    margin-bottom: 0.75rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.4;
}

.footer-brand h2 span {
    color: #c8d84e;
}

.footer-brand h2 em {
    color: var(--orange);
    font-style: normal;
}

.footer-brand > p {
    margin: 0;
    color: #c8c9a8;
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-brand address {
    margin-top: 1rem;
    color: #c8c9a8;
    font-size: 0.875rem;
    font-style: normal;
    line-height: 1.25rem;
}

.site-footer a {
    color: #c8c9a8;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: white;
}

.footer-brand img {
    width: auto;
    max-height: 4rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    color: #c8c9a8;
    font-size: 0.875rem;
    line-height: 1.25rem;
    list-style: none;
}

.footer-bottom {
    position: relative;
    padding: 0;
    color: #a0a080;
    border-top: 1px solid rgb(255 255 255 / 12%);
    font-size: 0.75rem;
    line-height: 1rem;
}

.footer-bottom-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 4.8125rem;
    padding-block: 1.25rem;
}

.footer-bottom-main p,
.footer-credit {
    margin: 0;
}

.footer-bottom-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-brand img {
    width: 5rem;
    height: auto;
    max-height: none;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-bottom-links > a {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
}

.footer-bottom-links .text-link::after {
    content: none;
}

.site-footer .footer-bottom-links > .text-link {
    display: block;
    padding: 0;
    color: #a0a080;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
}

.footer-credit-wrap {
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: auto;
    padding: 0;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
}

.footer-credit {
    font-size: 0.625rem;
    line-height: 0.875rem;
    opacity: 0.78;
}

.footer-credit a {
    font-weight: 700;
    text-underline-offset: 0.18em;
}

.footer-cookie-button {
    display: block;
    padding: 0;
    color: #a0a080;
    background: transparent;
    border: 0;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    cursor: pointer;
    transition: color 180ms ease;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
    color: white;
}

.consent-layer {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    align-items: end;
    padding: clamp(0.5rem, 2vw, 1.5rem);
}

.consent-layer[hidden] {
    display: none;
}

.consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(20 22 5 / 72%);
    backdrop-filter: blur(4px);
}

.consent-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 54rem);
    max-height: calc(100dvh - clamp(1rem, 4vw, 3rem));
    padding: clamp(1rem, 2vw, 1.35rem);
    margin-inline: auto;
    overflow-y: auto;
    color: var(--text);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    outline: none;
}

.consent-dialog:focus-visible {
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--orange);
}

.consent-heading h2 {
    margin-bottom: 0.2rem;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.consent-kicker {
    margin-bottom: 0.2rem;
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.consent-intro {
    max-width: 50rem;
    color: var(--text-mid);
    font-size: 0.8rem;
    line-height: 1.45;
}

.consent-intro .richtext {
    margin-bottom: 0.25rem;
}

.consent-intro p {
    margin: 0.2rem 0;
}

.consent-categories {
    display: grid;
    gap: 0.4rem;
    padding: 0;
    margin: 0.75rem 0;
    border: 0;
}

.consent-category {
    display: grid;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    background: #fbfaf6;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    grid-template-columns: minmax(0, 1fr) auto;
}

.consent-category-required {
    background: var(--pale-green);
}

.consent-category-copy label {
    display: block;
    color: var(--schlamm);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
}

.consent-category-copy p {
    margin: 0.08rem 0 0;
    color: var(--text-mid);
    font-size: 0.7rem;
    line-height: 1.35;
}

.consent-category input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    accent-color: var(--green-dark);
    cursor: pointer;
}

.consent-category input[type="checkbox"]:focus-visible,
.consent-action:focus-visible,
.footer-cookie-button:focus-visible,
.consent-meta a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.consent-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.consent-actions {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.consent-action {
    display: inline-flex;
    min-height: 2.65rem;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 0.9rem;
    color: var(--schlamm);
    background: white;
    border: 1px solid var(--green-dark);
    border-radius: 999px;
    font-weight: 750;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
}

.consent-action:hover {
    background: var(--cream);
}

.consent-action-primary {
    color: white;
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0.35rem 1rem rgb(186 102 16 / 22%);
}

.consent-action-primary:hover {
    color: white;
    background: #9f520c;
    border-color: #9f520c;
}

.consent-status {
    min-height: 1.4em;
    margin: -0.25rem 0 0.45rem;
    color: #8f231c;
    font-size: 0.8rem;
    font-weight: 700;
}

.consent-meta {
    margin: 0.55rem 0 0;
    color: var(--text-light);
    font-size: 0.73rem;
}

.consent-meta a {
    color: var(--green-dark);
    font-weight: 700;
}

.consent-mounted {
    display: contents;
}

@media (max-width: 85.99rem) {
    .nav-toggle {
        display: block;
    }

    .primary-navigation {
        position: fixed;
        inset: 4rem 0 auto;
        display: none;
        max-height: calc(100vh - 4rem);
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        overflow-y: auto;
        background: #232800;
        border-top: 1px solid rgb(200 216 78 / 20%);
        box-shadow: var(--shadow-lg);
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .primary-navigation > ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    .primary-navigation > ul > li {
        width: 100%;
    }

    .primary-navigation > ul > li:not(.has-children) > a {
        width: 100%;
        min-height: 0;
        padding: 0.5rem;
        color: rgb(255 255 255 / 78%);
        border: 0;
        font-size: 0.875rem;
        font-weight: 600;
    }

    .primary-navigation > ul > li.is-active:not(.has-children) > a {
        color: #c8d84e;
        font-weight: 800;
    }

    .nav-parent {
        width: 100%;
        min-height: 0;
        padding: 0.25rem 0.5rem;
        margin-top: 0.5rem;
        color: #c8d84e;
        border: 0;
        border-radius: 0;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: default;
    }

    .nav-parent svg {
        display: none;
    }

    .submenu {
        position: static;
        width: 100%;
        min-width: 0;
        gap: 0;
        padding: 0;
        visibility: visible;
        margin: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .submenu-link {
        padding: 0.5rem 1rem;
        background: transparent;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .submenu-link.is-active {
        color: #c8d84e;
        background: rgb(200 216 78 / 10%);
        font-weight: 700;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.75rem;
    }

    .header-phone {
        display: none;
    }
}

@media (max-width: 63.99rem) {
    .card-grid.columns-4,
    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid-categories.columns-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 48rem) {
    .section {
        padding-block: 3rem;
    }

    .page-header-overlay {
        background: rgb(29 31 7 / 66%);
    }

    .hero-background {
        display: none;
    }

    .hero-content {
        padding-right: 0;
        text-align: left;
    }

    .image-text {
        grid-template-columns: 1fr;
    }

    .image-text-media {
        order: -1;
    }

    .card-grid.columns-2,
    .card-grid.columns-3,
    .card-grid.columns-4,
    .card-grid.columns-5,
    .product-grid,
    .blog-grid,
    .gallery-grid,
    .footer-grid,
    .contact-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .card-grid-categories.columns-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-field:has(textarea),
    .form-field-checkbox {
        grid-column: auto;
    }

    .product-media img {
        height: 15rem;
    }

    .partner-strip-inner {
        justify-items: center;
        text-align: center;
        grid-template-columns: 1fr;
    }

    .partner-strip-copy {
        padding-left: 0;
        border-left: 0;
    }

    .partner-badges {
        justify-items: center;
    }

    .footer-bottom-main,
    .footer-bottom-brand,
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-bottom-main {
        flex-direction: column;
    }

    .consent-layer {
        align-items: end;
        padding: 0.35rem 0 0;
    }

    .consent-dialog {
        width: 100%;
        max-height: calc(100dvh - 0.35rem);
        padding: 0.9rem;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .consent-actions {
        grid-template-columns: 1fr;
    }
}

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

/* 404 */
.not-found {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: clamp(40rem, calc(100svh - 4rem), 54rem);
    align-items: center;
    overflow: hidden;
    color: rgb(255 255 255 / 80%);
    background:
        radial-gradient(circle at 14% 24%, rgb(248 176 66 / 14%), transparent 24rem),
        radial-gradient(circle at 88% 78%, rgb(192 120 32 / 16%), transparent 26rem),
        linear-gradient(135deg, #1e2105 0%, #30360d 48%, #18320d 100%);
}

.not-found::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
    background-size: 3.75rem 3.75rem;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.not-found-orb {
    position: absolute;
    z-index: -1;
    width: 25rem;
    height: 25rem;
    pointer-events: none;
    border: 1px solid rgb(248 176 66 / 12%);
    border-radius: 50%;
}

.not-found-orb::before,
.not-found-orb::after {
    position: absolute;
    content: "";
    border: 1px solid rgb(248 176 66 / 10%);
    border-radius: inherit;
}

.not-found-orb::before {
    inset: 3rem;
}

.not-found-orb::after {
    inset: 7rem;
}

.not-found-orb-one {
    top: -11rem;
    right: -8rem;
}

.not-found-orb-two {
    bottom: -15rem;
    left: -8rem;
}

.not-found-layout {
    display: grid;
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
    padding-block: clamp(4rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
}

.not-found-copy {
    max-width: 42rem;
}

.not-found-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.78rem;
    margin-bottom: 1.25rem;
    color: var(--orange);
    background: rgb(248 176 66 / 10%);
    border: 1px solid rgb(248 176 66 / 28%);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.not-found-code::before {
    width: 0.48rem;
    height: 0.48rem;
    content: "";
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0.28rem rgb(248 176 66 / 12%);
}

.not-found h1 {
    max-width: 12ch;
    margin-bottom: 0.55em;
    color: white;
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.not-found-lead {
    max-width: 38rem;
    margin-bottom: 0;
    color: rgb(255 255 255 / 76%);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.75;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.not-found .button {
    min-height: 3.15rem;
}

.not-found .button-secondary {
    color: white;
    background: rgb(255 255 255 / 8%);
    border-color: rgb(255 255 255 / 24%);
}

.not-found .button-secondary:hover {
    background: rgb(255 255 255 / 14%);
    border-color: rgb(255 255 255 / 40%);
}

.not-found-contact-button {
    color: #dbe784;
    background: transparent;
    border-color: rgb(200 216 78 / 44%);
}

.not-found-contact-button:hover {
    color: white;
    background: rgb(200 216 78 / 12%);
    border-color: #c8d84e;
}

.not-found .button:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
}

.not-found-hint {
    margin: 1.15rem 0 0;
    color: rgb(255 255 255 / 50%);
    font-size: 0.82rem;
}

.not-found-stage {
    position: relative;
    width: min(100%, 30rem);
    min-height: 25rem;
    justify-self: end;
    padding: clamp(2rem, 5vw, 3.5rem) 1.5rem 2rem;
    color: var(--schlamm);
    background:
        radial-gradient(circle at 50% 0%, rgb(248 176 66 / 24%), transparent 48%),
        linear-gradient(145deg, #fffdf8, #fff3d7);
    border: 1px solid rgb(255 255 255 / 58%);
    border-radius: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow:
        0 2.5rem 5rem rgb(5 17 4 / 38%),
        inset 0 1px 0 white;
    transform: rotate(1.3deg);
}

.not-found-stage::before {
    position: absolute;
    inset: 0.7rem;
    content: "";
    pointer-events: none;
    border: 1px dashed rgb(138 88 20 / 20%);
    border-radius: calc(clamp(1.5rem, 4vw, 2.5rem) - 0.45rem);
}

.not-found-number {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(0.25rem, 1.5vw, 0.85rem);
    margin-top: 2rem;
}

.not-found-number > span {
    color: var(--schlamm);
    font-size: clamp(5rem, 11vw, 8.2rem);
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 0.8;
}

.not-found-bowl {
    display: grid;
    width: clamp(5.5rem, 12vw, 7.4rem);
    align-items: end;
    margin-bottom: 0.1rem;
    filter: drop-shadow(0 0.9rem 0.8rem rgb(58 61 12 / 18%));
    transform-origin: center bottom;
    animation: not-found-bowl-wiggle 3.6s ease-in-out infinite;
}

.not-found-bowl-rim {
    position: relative;
    z-index: 2;
    display: block;
    height: 1rem;
    background: var(--orange);
    border: 0.18rem solid var(--schlamm);
    border-radius: 999px;
}

.not-found-bowl-body {
    display: grid;
    width: 88%;
    min-height: 3.65rem;
    place-items: center;
    justify-self: center;
    margin-top: -0.14rem;
    color: white;
    background: var(--green);
    border: 0.18rem solid var(--schlamm);
    border-top: 0;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    clip-path: polygon(5% 0, 95% 0, 82% 100%, 18% 100%);
}

.not-found-stage-caption {
    position: relative;
    z-index: 1;
    margin: 2rem 0 0;
    color: var(--olive);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.not-found-paw {
    position: absolute;
    z-index: 2;
    display: block;
    color: var(--green-dark);
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.42;
}

.not-found-paw-one {
    top: 1.6rem;
    left: 2.2rem;
    transform: rotate(26deg);
}

.not-found-paw-two {
    top: 3.9rem;
    left: 4.8rem;
    font-size: 1.2rem;
    transform: rotate(42deg);
}

.not-found-paw-three {
    right: 2.1rem;
    bottom: 2rem;
    font-size: 1.25rem;
    transform: rotate(-24deg);
}

@keyframes not-found-bowl-wiggle {
    0%,
    84%,
    100% {
        transform: rotate(0);
    }

    88% {
        transform: rotate(-3deg);
    }

    94% {
        transform: rotate(3deg);
    }
}

@media (max-width: 62rem) {
    .not-found-layout {
        gap: 3rem;
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.8fr);
    }

    .not-found-stage {
        min-height: 22rem;
    }
}

@media (max-width: 48rem) {
    .not-found {
        min-height: auto;
    }

    .not-found-layout {
        gap: 3.5rem;
        padding-block: 3.5rem 4.5rem;
        grid-template-columns: 1fr;
    }

    .not-found-copy {
        text-align: center;
    }

    .not-found h1,
    .not-found-lead {
        margin-inline: auto;
    }

    .not-found-actions {
        justify-content: center;
    }

    .not-found-stage {
        width: min(100%, 26rem);
        min-height: 21rem;
        justify-self: center;
    }
}

@media (max-width: 32rem) {
    .not-found-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .not-found .button {
        width: 100%;
    }

    .not-found-stage {
        min-height: 19rem;
    }

    .not-found-number {
        margin-top: 1.35rem;
    }

    .not-found-stage-caption {
        margin-top: 1.5rem;
    }
}

/* Responsive parity for all migrated subpage types. */
@media (min-width: 48rem) {
    .product-grid-tablet-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid-tablet-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-strip-inner {
        justify-items: stretch;
        text-align: left;
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .partner-strip-copy {
        padding-left: 2rem;
        border-left: 1px solid rgb(200 216 78 / 30%);
    }

    .partner-badges {
        justify-items: stretch;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .product-grid-desktop-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid-desktop-3,
    .blog-grid,
    .jobs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-brand {
        transform: translateY(-0.25rem);
    }
}

@media (max-width: 63.99rem) {
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        max-width: 48rem;
    }
}

@media (max-width: 47.99rem) {
    .page-header-content {
        padding-right: 0;
        padding-left: 0;
    }

    .product-grid,
    .blog-grid,
    .jobs-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1rem;
    }

    .product-media img {
        height: 100%;
    }

    .product-media-contain img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100%;
        align-self: center;
        justify-self: center;
        margin-inline: auto;
        object-position: center center;
    }

    .product-media-portrait img {
        width: auto;
        height: 16.25rem;
    }

    .product-info,
    .blog-consultation {
        padding: 1.5rem;
    }

    .cta-cream .cta-content h2 {
        font-size: 1.8rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-partner {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-partner img {
        width: 8rem;
    }

    .jobs-panel {
        padding: 1.5rem;
    }

    .jobs-panel-copy {
        display: block;
    }

    .jobs-panel-copy h3:not(:first-child) {
        margin-top: 2rem;
    }

    .contact-portrait {
        width: min(100%, 22rem);
    }

    .form-field,
    .form-field:nth-child(1),
    .form-field:nth-child(2) {
        grid-column: 1;
    }

    .partner-strip-inner {
        justify-items: center;
        text-align: center;
        grid-template-columns: 1fr;
    }

    .partner-strip-copy {
        padding-left: 0;
        border-left: 0;
    }

    .partner-badges {
        justify-items: center;
    }

    .footer-bottom-main {
        min-height: 0;
        padding-block: 1.25rem 0.75rem;
    }

    .footer-credit-wrap {
        position: static;
        width: min(calc(100% - 2rem), var(--container));
        padding-bottom: 0.75rem;
        transform: none;
        white-space: normal;
    }
}
