/* =========================================================
   Basis & Variablen
   ========================================================= */
:root {
    --bg: #020617;
    --bg-soft: #0b1220;
    --bg-light: #f9fafb;
    --accent: #ea580c;
    --accent-soft: #fed7aa;
    --accent-soft-2: #ffedd5;
    --text-light: #e5e7eb;
    --text: #0f172a;
    --muted: #6b7280;
    --border: #1f2937;
    --border-soft: #e5e7eb;
    --radius-lg: 1.25rem;
    --radius-md: 1rem;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.35);
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 60%, #020617 100%);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
   Layout & Container
   ========================================================= */
main {
    background: radial-gradient(circle at top, #020617 0, #020617 50%, #f9fafb 50%, #f9fafb 100%);
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================================
   Header & Navigation
   ========================================================= */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #fed7aa, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.nav-brand-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.nav-brand-sub {
    font-size: 0.78rem;
    color: #9ca3af;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: #cbd5f5;
    opacity: 0.85;
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1.5px;
    width: 0;
    background: linear-gradient(to right, #fed7aa, #ea580c);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-phone {
    font-size: 0.86rem;
    color: #e5e7eb;
}

.nav-phone strong {
    color: var(--accent-soft);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #111827;
    box-shadow: 0 14px 35px rgba(234, 88, 12, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(234, 88, 12, 0.6);
}

.btn-outline {
    background: transparent;
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.5);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--accent-soft);
}

/* =========================================================
   Hero-Bereich
   ========================================================= */
.hero {
    padding: 3.5rem 0 3rem;
    color: var(--text-light);

    /* Hintergrundbild */
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('aufbereitung_braunschweig.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3.3fr) minmax(0, 2.7fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 0.9rem;
    opacity: 0.9;
}

.hero-title-block {
    margin-bottom: 1.5rem;
}

.hero-title-pill {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(248, 250, 252, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.hero h1 {
    font-size: clamp(2.35rem, 3.4vw, 2.9rem);
    line-height: 1.05;
    margin: 0;
}

.hero h1 span {
    background: linear-gradient(120deg, #fed7aa, #f97316, #fb923c);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-sub {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 1.7rem;
    max-width: 36rem;
}

.hero-sub strong {
    color: #f9fafb;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.3rem;
}

.hero-note {
    font-size: 0.85rem;
    color: #9ca3af;
}

.hero-note span {
    color: var(--accent-soft);
    font-weight: 600;
}

.hero-highlight-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
    font-size: 0.82rem;
}

.hero-highlight-pill {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
}

.hero-highlight-pill strong {
    color: var(--accent-soft);
}

/* Hero-Card rechts */
.hero-card {
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), rgba(15, 23, 42, 1));
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: var(--shadow-soft);
}

.hero-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #e5e7eb;
}

.taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.7rem;
    padding: 0.23rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
    background: rgba(15,23,42,0.9);
}

.hero-separator {
    height: 1px;
    background: linear-gradient(to right, rgba(148,163,184,0.1), rgba(148,163,184,0.6), rgba(148,163,184,0.1));
    margin: 0.8rem 0 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    font-size: 0.88rem;
    margin-top: 0.3rem;
}

.hero-stat-label {
    color: #9ca3af;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-stat-value {
    color: #f9fafb;
    font-weight: 600;
}

/* =========================================================
   Sections Allgemein
   ========================================================= */
section {
    padding: 3.2rem 0;
}

.section-surface {
    background: #ffffff;
}

.section-alt {
    background: #f3f4f6;
}

.section-contact {
    background: #f9fafb;
}

.section-head {
    text-align: center;
    margin-bottom: 2.4rem;
}

.section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.section-head h2 {
    margin: 0;
    font-size: 1.8rem;
}

.section-head p {
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Vorteile / Cards
   ========================================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.4rem 1.35rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
    border-color: #fed7aa;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

/* =========================================================
   Leistungen – Premium Service Cards
   ========================================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.4rem 1.4rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(254,215,170,0.35), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
    border-color: #fed7aa;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-highlight {
    border-color: #fed7aa;
    box-shadow: 0 22px 55px rgba(234, 88, 12, 0.18);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #f3f4f6;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.service-badge-highlight {
    background: #f97316;
    color: #111827;
}

.service-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
}

.service-intro {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.service-list {
    margin: 0 0 0.8rem;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.service-list li {
    margin-bottom: 0.18rem;
}

.service-price-hint {
    font-size: 0.86rem;
    color: #4b5563;
    margin: 0 0 0.6rem;
}

.service-price-hint strong {
    color: #b45309;
}

.service-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.78rem;
}

.service-tag {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
}

/* =========================================================
   Preise
   ========================================================= */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.price-card {
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border: 1px solid var(--border-soft);
    padding: 1.4rem 1.35rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(254,215,170,0.45), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
    border-color: #fed7aa;
}

.price-card:hover::before {
    opacity: 1;
}

.price-name {
    font-weight: 600;
    margin-bottom: 0.15rem;
    font-size: 1rem;
}

.price-badge {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.price-value span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
}

.price-list {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0.4rem 0 0.6rem;
    padding-left: 1.1rem;
}

.price-list li {
    margin-bottom: 0.18rem;
}

.price-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.4rem;
}

/* =========================================================
   Ablauf / Schritte
   ========================================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.step {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.15rem;
    border: 1px solid var(--border-soft);
    font-size: 0.94rem;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--accent-soft-2);
    color: #7c2d12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* =========================================================
   Kontakt & Formular
   ========================================================= */
.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.3rem;
}

.contact-box {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    font-size: 0.95rem;
}

.contact-box strong {
    display: inline-block;
    margin-bottom: 0.1rem;
}

.contact-row {
    margin-bottom: 0.55rem;
}

.contact-label {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-highlight {
    color: var(--accent);
    font-weight: 600;
}

.contact-mini-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.7rem;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.field-group {
    display: grid;
    gap: 0.25rem;
}

.field-group label {
    font-size: 0.85rem;
    font-weight: 500;
}

.field-group input,
.field-group textarea {
    border-radius: 0.65rem;
    border: 1px solid var(--border-soft);
    padding: 0.6rem 0.75rem;
    font: inherit;
    width: 100%;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: #fb923c;
    box-shadow: 0 0 0 1px #fed7aa;
}

.field-group textarea {
    min-height: 110px;
    resize: vertical;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--muted);
}

/* =========================================================
   Footer
   ========================================================= */
footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.6rem 0;
    font-size: 0.78rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.9rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 0.9rem;
}

footer a {
    color: #e5e7eb;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .grid-3,
    .price-grid,
    .steps,
    .service-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    header {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 2.6rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2.4rem 0 2.4rem;
    }

    section {
        padding: 2.4rem 0;
    }
}
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* =========================================================
   Kundenstimmen / Testimonials
   ========================================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    color: var(--muted);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.testimonial-card::before {
    content: "„";
    position: absolute;
    top: 0.6rem;
    right: 1.2rem;
    font-size: 3.5rem;
    color: rgba(209, 213, 219, 0.6);
    font-family: Georgia, "Times New Roman", serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
    border-color: #fed7aa;
}

.testimonial-quote {
    margin-bottom: 1.1rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.85rem;
}

.testimonial-name {
    font-weight: 600;
    color: #111827;
}

.testimonial-type {
    color: #6b7280;
}
/* =========================================================
   Kundenstimmen / Testimonials (mit Sternebewertung)
   ========================================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.6rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
    border-color: #fed7aa;
}

/* große graue Anführungszeichen im Hintergrund */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 5rem;
    color: rgba(209, 213, 219, 0.25);
    font-family: Georgia, "Times New Roman", serif;
    pointer-events: none;
}

/* Sterne */
.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.15rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.35);
}

/* Zitat */
.testimonial-quote {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Meta / Name */
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.testimonial-type {
    color: #6b7280;
    font-size: 0.85rem;
}


/* =========================================================
   Unsere Arbeiten / Vorher-Nachher
   ========================================================= */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.work-item {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.2rem 1.2rem 1.4rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    font-size: 0.9rem;
    color: var(--muted);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.work-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
    border-color: #fed7aa;
}

.work-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.work-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.work-image-block {
    position: relative;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #111827;
}

.work-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-tag {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
}

.work-tag-after {
    background: #22c55e;
    color: #022c22;
}

.work-desc {
    margin: 0;
}

/* =========================================================
   Galerie / Arbeitsbeispiele
   ========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    background: #020617;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15,23,42,0.1), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.96;
}

.gallery-item:hover::before {
    opacity: 1;
}
@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .grid-3,
    .price-grid,
    .steps,
    .service-grid,
    .testimonial-grid,
    .work-grid,
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    header {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 2.6rem;
    }
}

/* Großes Galerie-Feature-Bild */
.gallery-feature {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 45px rgba(15,23,42,0.15);
}

.gallery-feature img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



