:root {
    --red: #ed1b2f;
    --blue: #10269c;
    --gray: #777777;
    --dark: #17181c;
    --text: #3f4147;
    --muted: #70737a;
    --light: #f5f6f8;
    --white: #ffffff;
    --border: #e8eaee;
    --shadow: 0 18px 45px rgba(23, 24, 28, .12);
    --radius: 22px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    /* nem átlátszó header */
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(23, 24, 28, .08);
}

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    width: 105px;
    height: auto;
    display: block;
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list a {
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--dark);
    transition: .2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--white);
    background: var(--red);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--dark);
    cursor: pointer;
    position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: .2s ease;
}

.menu-toggle span {
    top: 22px;
}

.menu-toggle::before {
    top: 16px;
}

.menu-toggle::after {
    top: 28px;
}

.menu-toggle.active span {
    opacity: 0;
}

.menu-toggle.active::before {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle.active::after {
    top: 22px;
    transform: rotate(-45deg);
}

.hero,
.leistungen-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        linear-gradient(120deg, rgba(237, 27, 47, .94), rgba(16, 38, 156, .83)),
        url('../images/gartenarbeiten.jpg') center/cover;
    color: var(--white);
}

.hero::after,
.leistungen-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 430px;
    height: 430px;
    border: 46px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.hero-content,
.leistungen-hero .container,
.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 790px;
}





.leistung-content p {
    margin-top: 15px;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
}

.leistung-content ul {
    display: none;
}

h1 {
    margin: 12px 0 18px;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 1.03;
    letter-spacing: -2px;
}

.hero p,
.leistungen-hero p,
.page-hero p {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .92);
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 800;
}

.hero-badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .17);
    border: 1px solid rgba(255, 255, 255, .25);
}

.eyebrow {
    color: var(--red);
}

.section {
    padding: 88px 0;
}

.section-white {
    background: var(--white);
}

.section-head {
    max-width: 730px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title,
.contact-strip h2,
.contact-info h2 {
    margin: 8px 0 12px;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-subtitle,
.text-large,
.contact-info>p {
    color: var(--muted);
    font-size: 1.1rem;
}

.btn-row,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(237, 27, 47, .25);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.trust-grid,
.service-image-grid,
.leistung-grid,
.impressum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card,
.content-card,
.contact-info,
.leistung-card,
.service-image-card,
.impressum-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trust-card {
    padding: 32px;
}

.trust-number {
    color: var(--blue);
    font-weight: 900;
    font-size: 2.3rem;
    line-height: 1;
}

.trust-card h3,
.leistung-card h3,
.service-image-card h3,
.contact-item h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.about-section,
.services-section {
    background: var(--white);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.about-image img,
.contact-map iframe {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image img {
    height: 470px;
    object-fit: cover;
}

.service-image-card,
.leistung-card {
    overflow: hidden;
    transition: .2s ease;
}

.service-image-card:hover,
.leistung-card:hover {
    transform: translateY(-5px);
}

.service-image-card img,
.leistung-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.service-image-content,
.leistung-content {
    padding: 26px;
}

.service-image-content a {
    color: var(--red);
    font-weight: 900;
}

.leistung-grid {
    grid-template-columns: repeat(2, 1fr);
}

.leistung-content ul,
.content-card ul {
    padding-left: 20px;
}

.leistung-content li::marker,
.content-card li::marker {
    color: var(--red);
}

.contact-strip {
    padding: 58px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--dark), var(--gray));
}

.contact-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-strip h2 {
    color: var(--white);
}

.contact-strip p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.contact-strip .eyebrow {
    color: var(--white);
}

.contact-info,
.content-card {
    padding: 34px;
}

.contact-item {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.contact-item a,
.content-card a {
    color: var(--blue);
    font-weight: 800;
}

.contact-map iframe {
    height: 520px;
    border: 0;
}

.content-card {
    max-width: 920px;
    margin: 0 auto;
}

.content-card h2,
.content-card h3 {
    color: var(--dark);
}

.impressum-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
}

.impressum-item {
    box-shadow: none;
    padding: 24px;
}

.site-footer {
    padding: 34px 0;
    color: rgba(255, 255, 255, .82);
    background: var(--dark);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.footer-inner p {
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 92px;
        display: none;
        padding: 14px;
        border-radius: 20px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-list a {
        border-radius: 14px;
    }

    .hero,
    .leistungen-hero,
    .page-hero {
        padding: 78px 0;
    }

    .trust-grid,
    .service-image-grid,
    .leistung-grid,
    .about-grid,
    .contact-grid,
    .impressum-grid {
        grid-template-columns: 1fr;
    }

    .contact-strip-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        width: 90px;
    }

    .about-image img,
    .contact-map iframe {
        height: 360px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .header-inner {
        height: 68px;
    }

    .logo {
        width: 90px;
    }

    h1 {
        letter-spacing: -1px;
    }

    .section {
        padding: 62px 0;
    }

    .btn,
    .btn-row a,
    .contact-actions a {
        width: 100%;
    }

    .service-image-card img,
    .leistung-card img {
        height: 190px;
    }

    .contact-info,
    .content-card,
    .trust-card {
        padding: 24px;
    }
}