:root {
    --forest-950: #10241b;
    --forest-900: #173326;
    --forest-800: #214937;
    --forest-700: #2f634b;
    --moss-500: #7f9f72;
    --moss-300: #c7d4b0;
    --gold-500: #c9a227;
    --sand-100: #fbf7ee;
    --sand-200: #f1e8d8;
    --sand-300: #e2d2b6;
    --ink-900: #202824;
    --ink-600: #5d675f;
    --white: #ffffff;
    --shadow-soft: 0 24px 80px rgba(16, 36, 27, 0.14);
    --shadow-card: 0 14px 36px rgba(16, 36, 27, 0.1);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Nunito Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(201, 162, 39, 0.16), transparent 28rem),
        linear-gradient(180deg, var(--sand-100), #fffaf3 42%, var(--sand-100));
    color: var(--ink-900);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(23, 51, 38, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 51, 38, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
}

a {
    color: inherit;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.02;
    color: var(--forest-950);
}

h1 {
    max-width: 900px;
    font-size: clamp(3rem, 8vw, 6.7rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2.35rem, 5vw, 4.25rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.65rem;
}

p {
    margin: 0;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    transform: translateY(-140%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--forest-950);
    color: var(--white);
    transition: transform 0.2s ease;
}

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

.hero {
    min-height: 100vh;
    padding: 1.25rem;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(16, 36, 27, 0.95), rgba(23, 51, 38, 0.78) 48%, rgba(16, 36, 27, 0.95)),
        url("images/kletterarbeit.jpg") center / cover;
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--gold-500);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.nav-links a,
.nav-cta {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: #25d366;
    color: #062915;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3rem;
    align-items: end;
    max-width: 1180px;
    min-height: calc(100vh - 110px);
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

.hero-copy {
    display: grid;
    gap: 1.55rem;
}

.hero h1 {
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.eyebrow,
.card-kicker {
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-lede {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    background: #25d366;
    color: #062915;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.26);
}

.button-primary:hover {
    background: #38e274;
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.button-ghost.light {
    border-color: rgba(255, 255, 255, 0.42);
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-checks li {
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
}

.hero-card {
    display: grid;
    gap: 1rem;
    padding: 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    background: rgba(251, 247, 238, 0.94);
    color: var(--ink-900);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.hero-card h2 {
    font-size: 2.2rem;
}

.hero-card ol {
    display: grid;
    gap: 0.8rem;
    padding-left: 1.2rem;
    margin: 0;
    color: var(--ink-600);
}

.text-link {
    color: var(--forest-800);
    font-weight: 900;
    text-underline-offset: 0.25em;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1180px;
    margin: -2.4rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(23, 51, 38, 0.14);
    box-shadow: var(--shadow-card);
}

.proof-strip div {
    display: grid;
    gap: 0.15rem;
    padding: 1.25rem;
    background: var(--white);
}

.proof-strip strong {
    color: var(--forest-900);
}

.proof-strip span {
    color: var(--ink-600);
    font-size: 0.92rem;
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 7.5rem) 1.25rem;
}

.split-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

.split-section > div:first-child {
    display: grid;
    gap: 1.2rem;
    position: sticky;
    top: 1.5rem;
}

.split-section p,
.section-heading p,
.centered.narrow {
    color: var(--ink-600);
}

.situation-grid,
.service-grid,
.price-grid,
.local-grid {
    display: grid;
    gap: 1rem;
}

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

.situation-grid article,
.service-grid article,
.price-grid article,
.local-grid article,
.process-grid article {
    border: 1px solid rgba(23, 51, 38, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}

.situation-grid article,
.service-grid article,
.price-grid article,
.local-grid article {
    padding: 1.35rem;
}

.situation-grid p,
.service-grid p,
.price-grid p,
.local-grid p,
.process-grid p {
    color: var(--ink-600);
}

.centered {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.process {
    max-width: none;
    padding-right: max(1.25rem, calc((100vw - 1180px) / 2));
    padding-left: max(1.25rem, calc((100vw - 1180px) / 2));
    background: linear-gradient(135deg, var(--forest-950), var(--forest-800));
    color: var(--white);
}

.process h2 {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
}

.process-grid article {
    min-width: 190px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.process-grid span {
    color: var(--gold-500);
    font-weight: 900;
}

.process-grid h3 {
    margin: 0.5rem 0;
    color: var(--white);
}

.process-grid p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.section-heading {
    display: grid;
    max-width: 820px;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.services .service-grid article {
    min-height: 210px;
}

.request-band {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 2rem;
    align-items: center;
    max-width: 1120px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: clamp(2rem, 5vw, 3.2rem);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.26), transparent 22rem),
        var(--forest-900);
    color: var(--white);
}

.request-band h2 {
    color: var(--white);
}

.request-card {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
}

.request-card h3 {
    color: var(--white);
}

.request-card ul {
    display: grid;
    gap: 0.45rem;
    padding-left: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin: 2rem 0;
}

.tag-list span {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--forest-800);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(16, 36, 27, 0.07);
}

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

.partner-section {
    max-width: none;
    padding-right: max(1.25rem, calc((100vw - 1180px) / 2));
    padding-left: max(1.25rem, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(90deg, rgba(16, 36, 27, 0.06), rgba(201, 162, 39, 0.12)),
        var(--sand-200);
}

.partner-panel {
    display: grid;
    max-width: 920px;
    gap: 1rem;
}

.partner-panel p {
    color: var(--ink-600);
    font-size: 1.08rem;
}

.small-note {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--forest-700);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(255, 255, 255, 0.6);
}

.price-grid article {
    background: var(--forest-950);
    color: var(--white);
}

.price-grid span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--gold-500);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-grid h3 {
    color: var(--white);
}

.price-grid p {
    color: rgba(255, 255, 255, 0.74);
}

.faq-list {
    display: grid;
    max-width: 920px;
    gap: 0.85rem;
    margin: 2rem auto 0;
}

details {
    border: 1px solid rgba(23, 51, 38, 0.1);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(16, 36, 27, 0.06);
}

summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    color: var(--forest-950);
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    padding: 0 1.15rem 1.15rem;
    color: var(--ink-600);
}

.final-cta {
    display: grid;
    justify-items: center;
    gap: 1.2rem;
    padding: clamp(4rem, 8vw, 6.5rem) 1.25rem;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(rgba(16, 36, 27, 0.9), rgba(16, 36, 27, 0.9)),
        url("images/faellung.jpg") center / cover;
}

.final-cta h2 {
    max-width: 900px;
    color: var(--white);
}

.footer {
    display: grid;
    gap: 1rem;
    padding: 3rem 1.25rem 6rem;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
    background: var(--forest-950);
}

.footer .logo {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

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

.footer-contact a:hover {
    color: var(--gold-500);
}

.footer-legal {
    width: min(760px, 100%);
    margin: 1.2rem auto 0;
    text-align: left;
}

.footer-legal-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: left;
}

.footer-legal-toggle:hover {
    color: var(--gold-500);
}

.footer-legal-content {
    display: none;
}

.footer-legal-item.active .footer-legal-content {
    display: block;
}

.footer-legal-inner {
    padding-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
}

.footer-legal-inner strong {
    display: block;
    margin: 1rem 0 0.2rem;
    color: var(--moss-300);
}

.footer-legal-inner strong:first-child {
    margin-top: 0;
}

.footer-legal-inner a {
    color: var(--gold-500);
}

.copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

.mobile-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: none;
    padding: 0.85rem 1.05rem;
    border-radius: 999px;
    background: #25d366;
    color: #062915;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
}

@media (max-width: 920px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .hero-grid,
    .split-section,
    .request-band {
        grid-template-columns: 1fr;
    }

    .split-section > div:first-child {
        position: static;
    }

    .proof-strip,
    .service-grid,
    .local-grid,
    .price-grid,
    .situation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 1rem;
    }

    .hero-grid {
        min-height: auto;
        padding: 3rem 0 2rem;
    }

    .hero-actions .button,
    .request-card .button {
        width: 100%;
    }

    .hero-checks {
        display: grid;
    }

    .proof-strip,
    .service-grid,
    .local-grid,
    .price-grid,
    .situation-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .mobile-whatsapp {
        display: none;
    }
}

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