/* ============================================
   PRO GRÜN GARTENARBEITEN GMBH — Fahrweid
   Garten: Sattes Grün + Cream + Erde
   Fonts: Manrope (Display) + Inter (Body)
   ============================================ */

:root {
    --bg:           #F7F5EE;
    --bg-alt:       #FFFFFF;
    --bg-dark:      #1E241C;
    --bg-deep:      #141911;
    --surface:      #ECE8DB;
    --ink:          #1E241C;
    --ink-soft:     #3C4438;
    --ink-muted:    #75796E;
    --ink-light:    #A6A99E;
    --line:         #DCD7C6;
    --line-soft:    #E8E4D5;
    --accent:       #2F6B3C;
    --accent-deep:  #1F4A29;
    --accent-light: #7FAE89;
    --earth:        #5A4632;

    --font-display: 'Manrope', sans-serif;
    --font-body:    'Inter', sans-serif;

    --curve: 64px;
}

/* Signature: organische Abschluss-Kurven an Section-Übergängen */
.curve-top {
    position: relative; z-index: 2;
    border-top-left-radius: var(--curve);
    border-top-right-radius: var(--curve);
    margin-top: calc(-1 * var(--curve));
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.05;
}
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

h2 em, h3 em, blockquote em {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
/* Italic-em-Safety — Klipping verhindern */
h1 em, h2 em, h3 em, h4 em {
    display: inline-block;
    padding-right: 0.08em;
}

body { background: var(--bg); color: var(--ink-soft); }
section { padding: 7rem 0; }

.label {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.25rem;
}

/* === NAV === */
.nav { background: transparent; padding: 1.6rem 0; }
.nav.scrolled {
    background: rgba(247, 245, 238, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em;
}
.nav-logo .accent { color: var(--accent); }
.nav.over-dark:not(.scrolled) .nav-logo .accent { color: var(--accent-light); }
.nav.scrolled .nav-logo .accent { color: var(--accent); }
.nav-links a {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.18em; font-weight: 600;
}
.nav-links a:hover { color: var(--accent-light); }
.nav.scrolled .nav-links a:hover { color: var(--accent); }
.nav-cta {
    border-radius: 0 !important;
    letter-spacing: 0.18em !important;
}

/* === HERO — dunkelgrün, typografisch === */
.hero {
    height: 100vh; max-height: 100vh;
    background:
        radial-gradient(ellipse 70% 60% at 85% 10%, rgba(47, 107, 60, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 10% 95%, rgba(90, 70, 50, 0.28) 0%, transparent 55%),
        var(--bg-dark);
    color: var(--bg);
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--earth) 100%);
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(247, 245, 238, 0.6);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInLeft 0.9s cubic-bezier(0.22,0.61,0.36,1) 0.2s both;
}
.hero-eyebrow .num { color: var(--accent-light); font-weight: 700; }
.hero-eyebrow .sep { width: 36px; height: 1px; background: var(--accent-light); }
.hero h1 {
    font-size: clamp(2.75rem, 8.5vw, 6.75rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: var(--bg);
    max-width: 13ch;
    margin-bottom: 2.5rem;
}
.hero h1 .brand-line { display: block; opacity: 0; animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero h1 .brand-line:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .brand-line:nth-child(2) { animation-delay: 0.45s; }
.hero h1 .brand-line:nth-child(3) { animation-delay: 0.6s; }
.hero h1 .brand-accent { color: var(--accent-light); }
.hero h1 .brand-underline {
    display: block; width: 72px; height: 4px;
    background: var(--accent-light); margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.22,0.61,0.36,1) 0.85s both;
}
.hero-grid-bottom {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
    align-items: end;
}
.hero .lead {
    font-size: 1.08rem; line-height: 1.65;
    color: rgba(247, 245, 238, 0.78);
    max-width: 52ch;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.1s both;
}
.hero-values {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.25;
    text-align: right;
}
.hero-values .vw { display: block; opacity: 0; animation: fadeInUp 0.9s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-values .vw:nth-child(1) { color: var(--bg); animation-delay: 1.0s; }
.hero-values .vw:nth-child(2) { color: var(--accent-light); animation-delay: 1.15s; }
.hero-values .vw:nth-child(3) { color: #9AA694; animation-delay: 1.3s; }
.hero-actions {
    display: flex; align-items: center; gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.45s both;
}
.hero-actions .btn {
    background: var(--accent); color: #fff;
    border-radius: 0; border: none;
    padding: 1.05rem 2.5rem;
    font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.hero-actions .btn:hover { background: var(--accent-light); color: var(--bg-dark); transform: none; }
.hero-actions .secondary {
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; color: rgba(247, 245, 238, 0.85);
    border-bottom: 1px solid rgba(247, 245, 238, 0.5); padding-bottom: 0.3rem;
}
.hero-actions .secondary:hover { color: var(--accent-light); border-color: var(--accent-light); }
.hero-footnote {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247, 245, 238, 0.15);
    display: flex; align-items: center; gap: 1.25rem;
    font-size: 0.8rem; color: rgba(247, 245, 238, 0.55);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22,0.61,0.36,1) 1.7s both;
}
.hero-footnote .hf-loc {
    font-family: var(--font-display); font-weight: 800;
    font-size: 0.95rem; color: var(--bg);
}
.hero-footnote .hf-divider { width: 1px; height: 18px; background: rgba(247, 245, 238, 0.25); }

/* === JAHRESZEITEN-BAND (statisch, 4 Segmente) === */
.season-band {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--accent);
    color: var(--bg);
    padding: 2.4rem 0 calc(2.4rem + var(--curve));
}
.sb-seg {
    display: flex; flex-direction: column; gap: 0.45rem;
    align-items: center; text-align: center;
    padding: 0.25rem 1.5rem;
}
.sb-seg:not(:first-child) { border-left: 1px solid rgba(247, 245, 238, 0.25); }
.sb-seg .sb-season {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800; letter-spacing: -0.02em;
    color: #fff; line-height: 1;
}
.sb-seg .sb-key {
    font-family: var(--font-body);
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(247, 245, 238, 0.75);
    line-height: 1.5;
}

/* === ÜBER UNS === */
.about-section { background: var(--bg); }
.about-grid {
    display: grid; grid-template-columns: 1.15fr 1fr;
    gap: 5rem; align-items: center;
}
.about-text h2 { margin-bottom: 1.75rem; max-width: 18ch; }
.about-text p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 56ch; }
.about-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--surface);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .img-badge {
    position: absolute; left: 0; bottom: 0;
    background: var(--accent);
    color: #fff;
    padding: 1.25rem 1.75rem;
    font-family: var(--font-display);
}
.about-image .img-badge .big {
    font-size: 1.9rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em;
}
.about-image .img-badge .small {
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(247, 245, 238, 0.8); margin-top: 0.4rem;
}
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    border-top: 1px solid var(--ink);
}
.about-stat {
    padding: 1.75rem 1.5rem 0 0;
}
.about-stat:not(:first-child) { padding-left: 1.75rem; border-left: 1px solid var(--line); }
.about-stat .big {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    font-weight: 800; color: var(--accent);
    line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.about-stat .desc { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.5; }

/* === LEISTUNGEN — nummerierte Rows === */
.services-section { background: var(--bg-alt); }
.services-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end;
    margin-bottom: 3.5rem;
}
.services-head p { font-size: 1.02rem; line-height: 1.65; color: var(--ink-soft); }
.services-rows { border-top: 2px solid var(--ink); }
.service-row {
    display: grid;
    grid-template-columns: 120px 1fr 1.6fr;
    gap: 2.5rem;
    padding: 2.75rem 1.5rem 2.75rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    position: relative;
    transition: padding 400ms cubic-bezier(0.22, 0.61, 0.36, 1), background 400ms ease;
}
.service-row::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--accent);
    transition: width 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.service-row:hover { background: var(--bg); padding-left: 2.5rem; }
.service-row:hover::before { width: 5px; }
.service-row .num {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 0.9; letter-spacing: -0.04em;
}
.service-row h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 0.75rem; }
.service-row .srv-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.service-row .srv-tags span {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent-deep);
    border: 1px solid var(--line);
    padding: 0.3rem 0.7rem;
}
.service-row p { font-size: 0.97rem; line-height: 1.65; color: var(--ink-soft); max-width: 58ch; }

/* === SAISON (dark) === */
.season-section {
    background: var(--bg-dark);
    color: var(--bg);
}
.season-head { max-width: 760px; margin-bottom: 4rem; }
.season-head h2 { color: var(--bg); }
.season-head h2 em { color: var(--accent-light); }
.season-head .label { color: var(--accent-light); }
.season-head p { color: rgba(247, 245, 238, 0.72); font-size: 1.02rem; line-height: 1.65; }
.season-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(247, 245, 238, 0.18);
}
.season-cell {
    padding: 2.5rem 2rem 2.5rem 0;
    border-bottom: 1px solid rgba(247, 245, 238, 0.18);
}
.season-cell:not(:last-child) { border-right: 1px solid rgba(247, 245, 238, 0.18); }
.season-cell:not(:first-child) { padding-left: 2rem; }
.season-cell .tag {
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}
.season-cell h3 { color: var(--bg); font-size: 1.35rem; margin-bottom: 0.8rem; }
.season-cell p { font-size: 0.9rem; line-height: 1.6; color: rgba(247, 245, 238, 0.65); }

/* === REFERENZEN / VORHER-NACHHER PLACEHOLDER === */
.ref-section { background: var(--surface); }
.ref-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.ref-text h2 { margin-bottom: 1.5rem; }
.ref-text p { font-size: 1rem; line-height: 1.65; margin-bottom: 1rem; max-width: 54ch; }
/* Vorher/Nachher-Slots als gerahmte Platzhalter */
.ba-slots {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.ba-slot {
    position: relative;
    border: 1px dashed var(--accent);
    background: var(--bg-alt);
    aspect-ratio: 4/3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.5rem;
}
.ba-slot .ba-tag {
    position: absolute; top: 0; left: 0;
    background: var(--accent); color: #fff;
    font-family: var(--font-body); font-size: 0.64rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    padding: 0.45rem 0.9rem;
}
.ba-slot .ph-icon {
    font-family: var(--font-display);
    font-size: 2.25rem; font-weight: 800;
    color: var(--accent); line-height: 1;
}
.ba-wrap .ph-text {
    font-size: 0.88rem; color: var(--ink-muted);
    margin-top: 1rem; text-align: center;
}

/* === MANIFESTO === */
.manifesto {
    padding: 9rem 0;
    background: var(--bg);
    position: relative;
}
.manifesto::before {
    content: '\201E';
    position: absolute;
    top: 0.5rem; left: 50%; transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 16rem; font-weight: 800;
    line-height: 1;
    color: var(--accent);
    opacity: 0.14;
    pointer-events: none;
}
.manifesto blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    max-width: 30ch;
    margin: 0 auto;
    color: var(--ink);
    letter-spacing: -0.03em;
    position: relative; z-index: 1;
}
.manifesto cite {
    display: block; margin-top: 2.5rem; text-align: center;
    font-family: var(--font-body); font-style: normal;
    font-size: 0.72rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--accent); font-weight: 600;
}

/* === EINSATZGEBIET === */
.region-section { background: var(--bg-alt); }
.region-grid {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 5rem; align-items: start;
}
.region-text h2 { margin-bottom: 1.5rem; max-width: 16ch; }
.region-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 50ch; }
.region-list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--ink);
}
.region-list li {
    padding: 1.1rem 0 1.1rem 1.7rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.08rem; font-weight: 700;
    color: var(--ink);
    position: relative;
}
.region-list li::before {
    content: ''; position: absolute; left: 0; top: 1.6rem;
    width: 8px; height: 8px;
    background: var(--accent);
}
.region-list li small {
    display: block;
    font-family: var(--font-body); font-size: 0.78rem;
    font-weight: 400; color: var(--ink-muted);
    margin-top: 0.15rem;
}
.region-list li:nth-child(odd) { margin-right: 2rem; }

/* === SPONSOR-NOTIZ === */
.sponsor-note {
    margin-top: 2.5rem;
    background: var(--bg);
    border-left: 3px solid var(--accent);
    padding: 1.4rem 1.75rem;
    font-size: 0.92rem; line-height: 1.6;
    color: var(--ink-soft);
}
.sponsor-note strong { color: var(--accent-deep); }

/* === KONTAKT === */
.contact-section { background: var(--bg); }
.contact-grid-p {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: 5rem; align-items: stretch;
}
.contact-info-block h2 { margin-bottom: 1.5rem; }
.contact-info-block > p { font-size: 1rem; line-height: 1.65; max-width: 44ch; }
.contact-rows { margin-top: 2rem; border-top: 2px solid var(--ink); }
.contact-row {
    display: grid; grid-template-columns: 130px 1fr;
    gap: 2rem; padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.contact-row .label-c {
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600;
}
.contact-row .value {
    font-family: var(--font-display);
    font-size: 1.3rem; line-height: 1.4;
    color: var(--ink); font-weight: 700; letter-spacing: -0.015em;
}
.contact-row a:hover { color: var(--accent); }
.contact-map-p {
    min-height: 460px;
    overflow: hidden;
    background: var(--surface);
}
.contact-map-p iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.85) contrast(1.1) brightness(1.05);
}

/* === FINAL CTA === */
.final-cta {
    background: var(--accent);
    color: var(--bg);
    padding: 0;
    overflow: hidden;
}
.final-cta-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 480px;
}
.final-cta-pattern {
    background:
        linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.final-cta-pattern::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(247, 245, 238, 0.07) 0px,
        rgba(247, 245, 238, 0.07) 2px,
        transparent 2px,
        transparent 22px
    );
}
.final-cta-pattern .pattern-word {
    position: absolute; left: 2.5rem; bottom: 2rem;
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 800;
    color: rgba(247, 245, 238, 0.16);
    letter-spacing: -0.05em;
    line-height: 0.85;
    pointer-events: none;
}
.final-cta-content {
    padding: 5rem 4.5rem;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 640px;
}
.final-cta .label-eyebrow {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(247, 245, 238, 0.75); margin-bottom: 1.5rem;
}
.final-cta h2 {
    color: #FFFFFF;
    max-width: 17ch;
    margin-bottom: 1.5rem;
    padding-right: 0.3em;
}
.final-cta h2 em {
    color: #FFFFFF; font-style: italic; font-weight: 500;
    display: inline-block; padding-right: 0.2em;
}
.final-cta .lead {
    color: rgba(247, 245, 238, 0.85);
    max-width: 44ch; margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.final-cta .btn-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.final-cta .btn-primary {
    background: var(--bg); color: var(--accent-deep) !important;
    padding: 1.1rem 2.6rem;
    border: none; border-radius: 0;
    font-family: var(--font-body); font-size: 0.78rem;
    letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
    display: inline-block;
    transition: background 250ms, color 250ms;
}
.final-cta .btn-primary:hover { background: var(--bg-dark); color: var(--bg) !important; }
.final-cta .btn-ghost {
    border: 1px solid rgba(247, 245, 238, 0.6);
    color: #fff;
    padding: 1.1rem 2.6rem;
    font-family: var(--font-body); font-size: 0.78rem;
    letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    display: inline-block;
    transition: background 250ms, color 250ms;
}
.final-cta .btn-ghost:hover { background: #fff; color: var(--accent-deep); }

/* === FOOTER === */
.footer {
    background: var(--bg);
    color: var(--ink-soft);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--line);
}
.footer h4 { color: var(--ink); font-size: 1.6rem; font-weight: 800; }
.footer h4 .accent { color: var(--accent); }
.footer h5 {
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 600; margin-bottom: 1rem;
}
.footer p { color: var(--ink-muted); }
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 2.5rem;
}
.footer ul li { padding: 0.3rem 0; font-size: 0.92rem; color: var(--ink-soft); }
.footer ul a { color: var(--ink-soft); }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    padding-top: 1.75rem;
}
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* === PLACEHOLDER === */
.placeholder-banner {
    background: var(--surface);
    border-left: 3px solid var(--accent);
    border-radius: 0;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleReveal {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms cubic-bezier(0.22,0.61,0.36,1), transform 900ms cubic-bezier(0.22,0.61,0.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
/* Kurze Desktop-Viewports (1280×800): Hero-Inhalt komprimieren, nichts abschneiden */
@media (min-width: 981px) and (max-height: 900px) {
    .hero { padding: 6.5rem 0 3rem; }
    .hero-eyebrow { margin-bottom: 1.5rem; }
    .hero h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin-bottom: 1.5rem; }
    .hero h1 .brand-underline { margin-top: 1rem; }
    .hero .lead { font-size: 0.96rem; margin-bottom: 1.5rem; }
    .hero-values { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
    .hero-actions .btn { padding: 0.85rem 2rem; }
    .hero-footnote { margin-top: 1.75rem; padding-top: 1.1rem; }
}
@media (max-width: 1180px) {
    .season-grid { grid-template-columns: 1fr 1fr; }
    .season-cell:nth-child(2n) { border-right: none; }
    .season-cell:nth-child(even) { padding-left: 2rem; }
    .season-cell:nth-child(odd) { padding-left: 0; }
}
@media (max-width: 980px) {
    :root { --curve: 36px; }
    section { padding: 5rem 0; }
    .hero { min-height: 0; height: auto; max-height: none; padding: 7.5rem 0 3.5rem; }
    .hero-grid-bottom { grid-template-columns: 1fr; gap: 2rem; }
    .hero-values { text-align: left; display: flex; gap: 1.25rem; flex-wrap: wrap; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { aspect-ratio: 4/3; max-height: 320px; }
    .about-stats { grid-template-columns: 1fr; }
    .about-stat { padding: 1.5rem 0 0 !important; border-left: none !important; }
    .services-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
    .service-row { grid-template-columns: 1fr; gap: 1rem; padding: 2.25rem 0; }
    .service-row:hover { padding-left: 1rem; }
    .ref-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .region-grid { grid-template-columns: 1fr; gap: 3rem; }
    .region-list li:nth-child(odd) { margin-right: 1rem; }
    .contact-grid-p { grid-template-columns: 1fr; gap: 3rem; }
    .contact-map-p { min-height: 340px; }
    .final-cta-grid { grid-template-columns: 1fr; min-height: 0; }
    .final-cta-pattern { min-height: 220px; }
    .final-cta-content { padding: 4rem 1.75rem; max-width: 100%; }
    .season-band { grid-template-columns: 1fr 1fr; row-gap: 1.5rem; padding: 2rem 0 calc(2rem + var(--curve)); }
    .sb-seg:nth-child(3) { border-left: none; }
}
@media (max-width: 560px) {
    .hero { padding: 6.5rem 0 3rem; }
    .hero h1 { margin-bottom: 1.75rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .hero-values { font-size: 1.35rem; }
    .hero-footnote { flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
    .season-grid { grid-template-columns: 1fr; }
    .season-cell { border-right: none !important; padding: 2rem 0 !important; }
    .region-list { grid-template-columns: 1fr; }
    .region-list li:nth-child(odd) { margin-right: 0; }
    .contact-row { grid-template-columns: 1fr; gap: 0.4rem; }
    .final-cta .btn-row { flex-direction: column; align-items: flex-start; }
    .sb-seg { padding: 0.25rem 0.9rem; }
    .sb-seg .sb-key { font-size: 0.58rem; letter-spacing: 0.12em; }
    .ba-slots { gap: 0.9rem; }
}
