/* ============================================================
   BRAUN GARTENBAU — GALABAU
   sections.css — section-specific styles
   ============================================================ */

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(20, 30, 20, .55) 0%,
            rgba(20, 30, 20, .15) 32%,
            rgba(20, 30, 20, .55) 68%,
            rgba(20, 30, 20, .86) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 9rem clamp(2.6rem, 7vh, 5rem);
}
.hero__eyebrow { color: #fff; margin-bottom: 1.5rem; }
.hero__eyebrow::before { box-shadow: 0 0 0 4px rgba(188, 106, 68, .3); }
.hero__title {
    font-size: clamp(2.6rem, 7.2vw, 5.5rem);
    line-height: 1.03;
    letter-spacing: -.025em;
    color: #fff;
    max-width: 16ch;
}
.hero__title em {
    font-style: normal;
    color: #E7B98D;
    position: relative;
}
.hero__sub {
    margin-top: 1.6rem;
    max-width: 52ch;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero__actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__foot {
    margin-top: 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .26);
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero__badge svg { color: #E7B98D; }
.hero__dots { display: flex; gap: .5rem; }
.hero__dot {
    width: 28px; height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .3);
    transition: background .35s, width .35s var(--ease);
}
.hero__dot.active { background: #E7B98D; width: 44px; }

/* ---------- STATS STRIP (green band) ---------- */
.strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.strip__item { padding-block: .4rem; }
.strip__item b {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: .5rem;
}
.strip__item b i {
    font-style: normal;
    font-size: 1rem;
    color: var(--green-bri);
}
.strip__item span { font-size: .9rem; color: rgba(233, 235, 224, .72); }

/* ---------- INTRO ---------- */
.intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2.4rem, 5.5vw, 5rem);
    align-items: center;
}
.intro__text h2 {
    font-size: clamp(1.95rem, 4.2vw, 3rem);
    margin-block: 1.1rem 1.3rem;
}
.intro__text p { color: var(--muted); margin-bottom: 1rem; }
.intro__list {
    margin: 1.7rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .2rem 1.4rem;
}
.intro__list li {
    display: flex;
    gap: .65rem;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: .94rem;
    font-weight: 500;
}
.intro__list li svg { color: var(--clay); flex-shrink: 0; }

.intro__media { position: relative; }
.intro__media > img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.intro__badge {
    position: absolute;
    right: -1.4rem; bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.intro__badge .ring {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 82, 56, .1);
    color: var(--green);
    flex-shrink: 0;
}
.intro__badge b {
    display: block;
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--green-deep);
    line-height: 1.1;
}
.intro__badge span { font-size: .8rem; color: var(--muted); }

/* ---------- SECTION CARD GRID HELPERS ---------- */
.services, .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ---------- LEISTUNGEN ---------- */
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__num {
    position: absolute;
    left: 1rem; top: 1rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--green-deep);
    font-family: var(--font-d);
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.service-card__body {
    padding: clamp(1.5rem, 2.4vw, 2.1rem);
    display: flex;
    flex-direction: column;
    gap: .7rem;
    flex: 1;
}
.service-card__body h3 { font-size: 1.36rem; }
.service-card__body p { color: var(--muted); font-size: .95rem; }
.service-card__tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    padding-top: .7rem;
}
.service-card__tags span {
    font-size: .76rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(44, 82, 56, .08);
    border-radius: 100px;
    padding: .33rem .75rem;
}

/* ---------- BEFORE / AFTER ---------- */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}
.ba {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--pos, 50%);
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
}
.ba__grip {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .5);
}
.ba__tag {
    position: absolute;
    bottom: 1rem;
    z-index: 2;
    padding: .42rem .9rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .92);
    color: var(--green-deep);
}
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; background: var(--green); color: #fff; }
.ba__cap {
    margin-top: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
}

/* ---------- PROJEKTE ---------- */
.project-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.project-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.project-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__loc {
    position: absolute;
    left: .9rem; bottom: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .76rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .94);
    color: var(--green-deep);
    padding: .38rem .8rem;
    border-radius: 100px;
}
.project-card__loc svg { color: var(--clay); }
.project-card__body {
    padding: clamp(1.5rem, 2.3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.project-card__tag {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clay);
}
.project-card__body h3 { font-size: 1.26rem; }
.project-card__body p { color: var(--muted); font-size: .93rem; }

/* ---------- GALERIE ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    grid-auto-flow: dense;
    gap: 1rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(27, 49, 34, .6));
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item .zoom {
    position: absolute;
    right: .9rem; bottom: .9rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    z-index: 2;
}
.gallery__item:hover .zoom { opacity: 1; transform: none; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--big  { grid-column: span 2; grid-row: span 2; }

/* ---------- WARUM WIR ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.why-card {
    padding: clamp(1.7rem, 2.4vw, 2.2rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card__ico {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(44, 82, 56, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 1.3rem;
}
.why-card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.why-card p { color: var(--muted); font-size: .92rem; }

/* ---------- PROBLEME ---------- */
.problems__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.problems__solution {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius);
    padding: clamp(1.9rem, 3.4vw, 2.8rem);
    box-shadow: var(--shadow);
}
.problems__solution .ico {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .14);
    color: #E7B98D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}
.problems__solution h3 { color: #fff; font-size: 1.5rem; margin-bottom: .8rem; }
.problems__solution p { color: rgba(255, 255, 255, .85); font-size: 1.02rem; }
.problems__list { display: flex; flex-direction: column; gap: .85rem; }
.problem-item {
    display: flex;
    gap: .9rem;
    align-items: center;
    padding: 1.1rem 1.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease);
}
.problem-item:hover { transform: translateX(5px); }
.problem-item svg { color: var(--clay); flex-shrink: 0; }
.problem-item span { color: var(--ink); font-size: .95rem; }

/* ---------- ABLAUF (timeline) ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.step__top {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.1rem;
}
.step__num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 22px -10px rgba(44, 82, 56, .9);
}
.step__line {
    flex: 1;
    height: 2px;
    background: var(--line-2);
    position: relative;
    overflow: hidden;
}
.step__line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s var(--ease);
}
.step.is-visible .step__line::after { transform: scaleX(1); }
.step:last-child .step__line { display: none; }
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- STIMMEN ---------- */
.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.quote {
    display: flex;
    flex-direction: column;
    padding: clamp(1.8rem, 2.5vw, 2.3rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.quote__mark {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 3.4rem;
    line-height: .7;
    color: var(--clay);
    opacity: .35;
    margin-bottom: .4rem;
}
.quote__stars { display: flex; gap: 3px; color: var(--clay); margin-bottom: 1rem; }
.quote__text { font-size: 1.02rem; color: var(--ink); margin-bottom: 1.6rem; }
.quote__who { margin-top: auto; display: flex; align-items: center; gap: .85rem; }
.quote__av {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(44, 82, 56, .1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-weight: 700;
}
.quote__who b { color: var(--green-deep); font-size: .95rem; display: block; }
.quote__who span { color: var(--muted); font-size: .82rem; }

/* ---------- SEO TEXT ---------- */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
    margin-top: 2.4rem;
}
.seo-grid p { color: var(--muted); font-size: .93rem; }
.seo-grid p b { color: var(--green-deep); font-weight: 700; }

/* ---------- CTA BAND ---------- */
.ctaband {
    position: relative;
    border-radius: var(--radius);
    background: var(--green-deep);
    padding: clamp(2.6rem, 6vw, 4.4rem);
    overflow: hidden;
    text-align: center;
}
.ctaband h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3.2rem); margin-bottom: 1rem; }
.ctaband p { color: rgba(233, 235, 224, .8); margin-bottom: 1.8rem; }
.ctaband__glow {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 122, 69, .5), transparent 70%);
    top: -180px; right: -100px;
    pointer-events: none;
}

/* ---------- KONTAKT ---------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.4rem, 5vw, 4rem);
    align-items: start;
}
.contact__aside h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-block: 1rem 1.1rem; }
.contact__aside > p { color: var(--muted); margin-bottom: 2rem; max-width: 40ch; }
.contact__methods { display: flex; flex-direction: column; gap: .85rem; }
.contact__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease);
}
.contact__method:hover { transform: translateX(5px); }
.contact__method .ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(44, 82, 56, .09);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact__method span { font-size: .78rem; color: var(--muted); display: block; }
.contact__method b { color: var(--green-deep); font-size: 1rem; }

.form {
    padding: clamp(1.7rem, 3vw, 2.5rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.field { margin-bottom: .9rem; }
.field input, .field textarea {
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
    color: var(--ink);
    font-size: .97rem;
    transition: border-color .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }

.consent {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin: 1rem 0 1.3rem;
    font-size: .84rem;
    color: var(--muted);
}
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--green); flex-shrink: 0; }
.consent a { color: var(--green); text-decoration: underline; }
.consent .req { color: var(--clay); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__result {
    margin-top: 1rem;
    padding: .9rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    display: none;
}
.form__result.ok  { display: block; background: rgba(76, 122, 69, .12); border: 1px solid rgba(76, 122, 69, .4); color: var(--green-deep); }
.form__result.err { display: block; background: rgba(188, 106, 68, .12); border: 1px solid rgba(188, 106, 68, .4); color: #8c4527; }
