:root {
    --rk-dark: #151515;
    --rk-footer: #2d3033;
    --rk-charcoal: #292929;
    --rk-cyan: #10943E;
    --rk-cyan-dark: #0b6f2e;
    --rk-yellow: #fee25f;
    --rk-ink: #151515;
    --rk-muted: #777777;
    --rk-soft: #f5f5f5;
    --rk-line: #eeeeee;
    --rk-radius: 8px;
}

/* Allgemein */
body {
    color: var(--rk-ink);
    background: #fff;
}

a {
    color: var(--rk-cyan-dark);
}

a:hover {
    color: var(--rk-cyan);
}

/* Buttons */
.btn-primary {
    --bs-btn-bg: var(--rk-cyan);
    --bs-btn-border-color: var(--rk-cyan);
    --bs-btn-hover-bg: var(--rk-cyan-dark);
    --bs-btn-hover-border-color: var(--rk-cyan-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}

.btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: var(--rk-dark);
    --bs-btn-hover-bg: var(--rk-yellow);
    --bs-btn-hover-border-color: var(--rk-yellow);
}

/* NAV START */

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.topbar-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rk-cyan);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    flex: 0 0 auto;
}

.site-header {
    z-index: 1030;
}

.site-header .topbar {
    color: #fff;
    background: var(--rk-dark);
}

.site-header .topbar a {
    color: #fff;
    text-decoration: none;
}

.site-header .topbar a:hover {
    color: var(--rk-yellow);
}

.site-header .navbar {
    min-height: 76px;
}

.site-logo {
    width: auto;
    max-height: 48px;
    object-fit: contain;
}

.brand-text {
    color: var(--rk-dark);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.1;
}

.navbar .nav-link {
    color: var(--rk-dark);
    font-weight: 700;
    padding-inline: .85rem;
}

.navbar .nav-link:hover,
.navbar .current-menu-item > .nav-link {
    color: var(--rk-cyan);
}

@media (max-width: 991.98px) {
    .site-logo {
        max-height: 42px;
    }

    .brand-text {
        font-size: .95rem;
    }

    .site-header .navbar {
        min-height: 68px;
    }

    #primaryNav {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #primaryNav .btn {
        margin-top: .75rem;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .site-header .topbar {
        display: none;
    }

    .site-logo {
        max-height: 38px;
    }
}
/* NAV END */
/* Hero */
.rk-hero {
    min-height: 72vh;
    color: #fff;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.rk-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 21, 21, .94), rgba(21, 21, 21, .68), rgba(21, 21, 21, .25)),
        radial-gradient(circle at 20% 25%, rgba(16, 148, 62, .35), transparent 35%);
}

.rk-hero > .container {
    position: relative;
    z-index: 1;
}

/* Sections */
.rk-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.rk-section-soft {
    background: var(--rk-soft);
}

.rk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--rk-cyan);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

.rk-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 50rem;
    background: var(--rk-cyan);
}

/* Iconboxen */
.rk-iconbox {
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
    box-shadow: 0 12px 35px rgba(21, 21, 21, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.rk-iconbox:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(21, 21, 21, .12);
}

.rk-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(16, 148, 62, .12);
    color: var(--rk-cyan);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Cards */
.rk-card,
.rk-blog-card {
    height: 100%;
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(21, 21, 21, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.rk-card:hover,
.rk-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 60px rgba(21, 21, 21, .13);
}

.rk-card a,
.rk-blog-card a {
    display: block;
    height: 100%;
    color: var(--rk-dark);
    text-decoration: none;
}

.rk-card a:hover,
.rk-blog-card a:hover {
    color: var(--rk-cyan-dark);
}

.rk-card img,
.rk-blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.rk-card .p-4 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rk-card h3 {
    line-height: 1.3;
}

.rk-card p {
    color: var(--rk-muted);
}

.rk-card span.fw-semibold,
.rk-card span.fw-bold {
    margin-top: auto;
    color: var(--rk-cyan-dark);
}

.rk-card span.fw-semibold::after,
.rk-card span.fw-bold::after {
    content: " →";
}

.rk-card:hover img {
    transform: scale(1.05);
}

.rk-card img {
    transition: transform .4s ease;
}

/* Service Links */
.rk-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
    color: var(--rk-dark);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(21, 21, 21, .05);
    transition: transform .2s ease, color .2s ease, border-color .2s ease;
}

.rk-service-link:hover {
    transform: translateX(5px);
    color: var(--rk-cyan-dark);
    border-color: rgba(16, 148, 62, .35);
}

/* CTA Bereiche */
.rk-cta {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: clamp(2rem, 5vw, 4rem);
    color: #fff;
    background: linear-gradient(135deg, var(--rk-dark), var(--rk-charcoal));
}

.rk-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, rgba(16, 148, 62, .45), transparent 34%);
}

.rk-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(254, 226, 95, .18);
}

.rk-cta > * {
    position: relative;
    z-index: 1;
}
/* FAQs */
.rk-faq-accordion .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 21, 21, .05);
}

.rk-faq-accordion .accordion-button {
    font-weight: 800;
    color: var(--rk-dark);
    background: #fff;
}

.rk-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--rk-cyan-dark);
    background: rgba(16, 148, 62, .08);
    box-shadow: none;
}

.rk-faq-accordion .accordion-button:focus {
    border-color: var(--rk-cyan);
    box-shadow: 0 0 0 .2rem rgba(16, 148, 62, .15);
}

.rk-faq-accordion .accordion-body {
    color: var(--rk-muted);
    background: #fff;
}
/* END FAQs */
/* PILLS */
.rk-service-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.rk-service-pill {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .9rem 1rem;
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
    color: var(--rk-dark);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(21, 21, 21, .05);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.rk-service-pill:hover {
    transform: translateY(-4px);
    color: var(--rk-cyan-dark);
    box-shadow: 0 18px 45px rgba(21, 21, 21, .12);
}

.rk-check {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(16, 148, 62, .12);
    color: var(--rk-cyan);
    flex: 0 0 auto;
    font-weight: 800;
}

.rk-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--rk-soft);
}

.rk-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.rk-card:hover .rk-card-img img {
    transform: scale(1.06);
}

.rk-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rk-card-body p {
    color: var(--rk-muted);
}

.rk-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 800;
    color: var(--rk-cyan-dark);
}

.rk-more::after {
    content: "→";
    transition: transform .2s ease;
}

.rk-card:hover .rk-more::after {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .rk-service-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .rk-service-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/* END PILLS */
/* LEISTUNGEN */
.rk-media-card {
    border-radius: var(--rk-radius);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(21, 21, 21, .1);
    background: #fff;
}

.rk-media-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.rk-gallery-card {
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
    box-shadow: 0 18px 50px rgba(21, 21, 21, .08);
}

.rk-gallery-card img {
    border-radius: var(--rk-radius);
}
/* END LEISTUNGEN */
/* Animationen */
.rk-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.rk-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background: var(--rk-footer);
    color: rgba(255,255,255,.85);
}

.footer-logo {
    max-height: 70px;
    width: auto;
}

.footer-lead {
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-nav li {
    margin-bottom: .65rem;
}

.footer-nav a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .2s;
}

.footer-nav a:hover {
    color: var(--rk-yellow);
}

.footer-contact-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rk-yellow);
    text-decoration: none;
}

.footer-phone:hover {
    color: #fff;
}

.footer-badge {
    background: rgba(16,148,62,.2);
    border: 1px solid rgba(16,148,62,.4);
    color: #fff;
    border-radius: 999px;
    padding: .5rem .9rem;
    margin-bottom: .75rem;
    display: inline-block;
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.15);
}

.footer-bottom a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--rk-yellow);
}
/* END Footer */

/* KONTAKSEITE */
.rk-form-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
    box-shadow: 0 18px 50px rgba(21, 21, 21, .08);
}

.rk-contact-form-section .wpcf7-form p {
    margin-bottom: 1rem;
}

.rk-contact-form-section input,
.rk-contact-form-section textarea,
.rk-contact-form-section select {
    width: 100%;
    min-height: 48px;
    padding: .8rem 1rem;
    border: 1px solid var(--rk-line);
    border-radius: var(--rk-radius);
    background: #fff;
}

.rk-contact-form-section textarea {
    min-height: 150px;
}

.rk-contact-form-section input:focus,
.rk-contact-form-section textarea:focus,
.rk-contact-form-section select:focus {
    outline: none;
    border-color: var(--rk-cyan);
    box-shadow: 0 0 0 .2rem rgba(16, 148, 62, .15);
}

.rk-contact-form-section input[type="submit"] {
    width: auto;
    min-height: auto;
    padding: .85rem 1.5rem;
    border-color: var(--rk-cyan);
    background: var(--rk-cyan);
    color: #fff;
    font-weight: 700;
}

.rk-contact-form-section input[type="submit"]:hover {
    border-color: var(--rk-cyan-dark);
    background: var(--rk-cyan-dark);
}
/* END KONTAKSEITE */