<style>*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Watercolor Palette */
    --cream: #fdf3ee;

    /* very bright salmon, fast weiß */
    --cream-deep: #f7e6dc;

    /* leicht dunklere cream-Variante */
    --blue-soft: #cfe4f0;

    /* soft pastel hellblau */
    --blue-soft-deep: #b8d4e3;

    /* etwas tiefere Variante */
    --blue-deep: #3d5a7a;

    /* darker pale blue — dunkelster Ton */
    --blue-deep-2: #2e4762;

    /* noch tiefer */
    --orange: #d96a3f;

    /* burnt orange */
    --orange-soft: #e89b76;

    /* sanftere Orange-Variante */
    --grey: #6b6157;
    --border: 2.5px solid var(--blue-deep);
    --shadow: 4px 4px 0 var(--blue-deep);
    --shadow-hover: 6px 6px 0 var(--blue-deep);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--blue-deep);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Watercolor noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.35 0 0 0 0 0.48 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
}

/* ============================================
   HEADER / NAV
   ============================================ */
nav {
    background: var(--cream);
    border-bottom: var(--border);
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
    var(--blue-soft) 0%,
    var(--orange-soft) 30%,
    var(--blue-soft-deep) 60%,
    var(--orange) 100%);
    opacity: 0.85;
}

.nav-logo {
    display: flex;
    gap: 0.55rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--cream) !important;
    text-decoration: none;
    border: 2.5px solid var(--blue-deep);
    box-shadow: 3px 3px 0 var(--blue-deep);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
    grid-area: 1 / 2 / 2 / 5;
    margin-right: 140px;
}

.nav-logo:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--blue-deep);
}

.nav-logo-star {
    display: inline-block;
    color: var(--orange);
    font-size: 1.3rem;
    animation: starWiggle 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes starWiggle {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-12deg) scale(1.1);
    }

    75% {
        transform: rotate(12deg) scale(1.1);
    }
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: var(--cream-deep);
    border: 2px solid var(--blue-deep);
    padding: 0.3rem;
    box-shadow: 3px 3px 0 var(--blue-deep);
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: var(--blue-deep);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:not(.nav-cta):hover {
    background: var(--blue-soft);
    color: var(--blue-deep-2);
}

.nav-cta {
    background: var(--orange);
    color: var(--cream) !important;
    border: 2px solid var(--blue-deep);
    padding: 0.4rem 1rem !important;
    margin-left: 0.4rem;
    transition: transform 0.15s ease, background 0.15s ease !important;
}

.nav-cta:hover {
    transform: translate(-1px, -1px);
    background: var(--blue-deep) !important;
    color: var(--cream) !important;
}

@media (max-width: 720px) {
    nav {
        padding: 0.7rem 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-links {
        width: 60&;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    border-bottom: var(--border);
    display: flex;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 84vh;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    border-top-style: solid;
    width: 100%;
}

@media (max-width:750px){
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.hero-left {
    padding: 4rem 3rem;
    border-right: var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    position: relative;
    border-left-style: solid;
    width: 100%;
}

@media (max-width:750px){
    .hero-left {
        border-bottom: var(--border);
        padding: 3rem 1.5rem;
    }
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 220px;
    height: 220px;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.hero-left > * {
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--blue-soft);
    color: var(--blue-deep);
    border: 2px solid var(--blue-deep);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem 0rem;
    margin-bottom: -1rem;
    align-self: flex-start;
    font-size: 12px;
}

* * .hero-tag::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

*
*
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 11vw, 9rem);
    letter-spacing: 0.09rem;
    line-height: 1;
    margin-bottom: 1.75rem;
    color: var(--orange);
}

.hero-title .accent {
    color: var(--blue-deep);
    position: relative;
    display: inline-block;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0.1em;
    height: 0.18em;
    background: var(--blue-soft);
    z-index: -1;
    transform: skew(-3deg, -1deg);
}

.hero-handwritten {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--orange);
    display: inline-block;
    transform: rotate(-3deg);
    margin: -0.8rem 0 0.5rem;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--orange);
    padding-left: 1rem;
    box-shadow: inset 15px 9px 80px #000000;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    padding: 0.7rem 1.6rem;
    border: var(--border);
    box-shadow: var(--shadow);
    cursor: pointer;
    text-decoration: none;

    /* transition: transform 0.12s ease, box-shadow 0.12s ease */
}

.btn:hover {
    transform: translate(-1px, -1px);
    background: var(--blue-deep)  !important;
    color: var(--cream) !important;
}

.btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--blue-deep);
}

.btn-primary {
    background: var(--blue-soft);
    color: var(--blue-deep);
}

.btn-primary:hover {
    background: var(--blue-deep-2);
}

.btn-secondary {
    background: var(--cream);
    color: var(--blue-deep);
    margin-left: 0.6rem;
}

.btn-secondary:hover {
    background: var(--cream-deep);
}

.btn-orange {
    background: var(--orange);
    color: var(--cream);
}

.btn-orange:hover {
    background: var(--blue-deep);
}

.btn-blue-soft {
    background: var(--blue-soft);
    color: var(--blue-deep);
}

.btn-blue-soft:hover {
    background: var(--blue-soft-deep);
}

/* Hero Right */
.hero-right {
    background: var(--blue-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
}

.hero-right::before,
.hero-right::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero-right::before {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
}

.hero-right::after {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: -40px;
}

.hero-big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: 0.06em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    -webkit-text-stroke: 2px var(--blue-deep);
    color: transparent;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.hero-stat {
    border: var(--border);
    border-bottom: none;
    background: var(--cream);
    padding: 1.2rem 1.4rem;
    transition: background 0.15s ease;
}

.hero-stat:last-child {
    border-bottom: var(--border);
}

.hero-stat:hover {
    background: var(--cream-deep);
}

.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--orange);
}

.hero-stat:nth-child(2) .hero-stat-num {
    color: var(--blue-deep);
}

.hero-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 0.2rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 4rem 3rem;
    border-bottom: var(--border);
    background: var(--cream);
}

@media (max-width:600px){
    .section {
        padding: 3rem 1.5rem;
    }
}

.section-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.section-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--blue-deep);
    color: var(--cream);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid var(--blue-deep);
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.06em;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    color: var(--blue-deep);
    text-align: center;
    margin-top: 15px;
}

.section-sub {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0;
    border: var(--border);
    background: var(--cream);
}

.feat {
    padding: 2rem;
    border-right: var(--border);
    border-bottom: var(--border);
    transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
}

.feat:nth-child(1) {
    background: var(--cream);
}

.feat:nth-child(2) {
    background: var(--blue-soft);
}

.feat:nth-child(3) {
    background: var(--cream-deep);
}

.feat:nth-child(4) {
    background: var(--blue-soft-deep);
}

.feat:hover {
    background: var(--orange-soft);
}

.feat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--orange);
    opacity: 0.55;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feat-num::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--blue-deep);
    opacity: 0.2;
}

.feat h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    color: var(--blue-deep);
}

.feat p {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.6;
}

/* ============================================
   GALLERY — auf blue-deep statt schwarz
   ============================================ */
.gallery-section {
    background: var(--blue-deep);
}

.gallery-section .section-tag {
    background: var(--orange);
    color: var(--cream);
    border-color: var(--orange);
}

.gallery-section h2 {
    color: var(--cream);
}

.gallery-section .section-sub {
    color: rgba(253, 243, 238, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2.5px solid var(--cream);
}

@media (max-width:600px){
    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

.gallery-item {
    aspect-ratio: 1/1;
    border-right: 2.5px solid rgba(253, 243, 238, 0.2);
    border-bottom: 2.5px solid rgba(253, 243, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--blue-deep-2);
    transition: background 0.2s ease;
    position: relative;
    overflow: hidden;
    color: var(--cream);
}

.gallery-item:nth-child(2) {
    background: var(--blue-deep);
}

.gallery-item:nth-child(4) {
    background: var(--blue-deep);
}

.gallery-item:nth-child(5) {
    background: var(--blue-deep);
}

.gallery-item:hover {
    background: var(--orange);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    font-size: 5rem;
    background: var(--blue-soft);
    color: var(--blue-deep);
}

.gallery-item:first-child:hover {
    background: var(--orange-soft);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--blue-deep);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.65rem;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    border-top: 2px solid var(--blue-deep);
}

.gallery-item:hover .gallery-caption {
    transform: none;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--border);
}

@media (max-width:700px){
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-photo {
    background: var(--orange);
    border-right: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (max-width:700px){
    .about-photo {
        border-right: none;
        border-bottom: var(--border);
    }
}

.about-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(253,243,238,0.2), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(61,90,122,0.15), transparent 40%);
    pointer-events: none;
}

.about-avatar {
    border: var(--border);
    background: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 5px 5px 0 var(--blue-deep);
    position: relative;
    z-index: 1;
    width: 95px;
}

.about-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.about-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: rgba(253, 243, 238, 0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.about-text-box {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}

.about-text-box p {
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.about-text-box p strong {
    color: var(--blue-deep);
}

.about-text-box .btn {
    margin-top: 1rem;
    align-self: flex-start;
}

/* ============================================
   TESTIMONIALS — auf blue-soft
   ============================================ */
.testi-section {
    background: var(--blue-soft);
}

.testi-section .section-tag {
    background: var(--blue-deep);
    color: var(--cream);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border: var(--border);
    background: var(--cream);
}

.testi {
    padding: 2rem;
    border-right: var(--border);
    background: var(--cream);
    transition: background 0.2s ease;
    position: relative;
}

.testi:nth-child(2) {
    background: var(--cream-deep);
}

.testi:last-child {
    border-right: none;
}

.testi:hover {
    background: var(--blue-soft-deep);
}

.testi-quote {
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--orange);
    opacity: 0.4;
    line-height: 0.7;
    margin-bottom: 0.5rem;
}

.testi p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--grey);
}

.testi-stars {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: var(--orange);
    letter-spacing: 0.1em;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--border);
}

@media (max-width:600px){
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    padding: 2rem;
    border-right: var(--border);
    border-bottom: var(--border);
    transition: background 0.2s ease;
    background: var(--cream);
}

.faq-item:nth-child(odd) {
    background: var(--cream);
}

.faq-item:nth-child(even) {
    background: var(--cream-deep);
}

.faq-item:hover {
    background: var(--blue-soft);
}

.faq-q {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.faq-q::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: var(--cream);
    border: 2px solid var(--blue-deep);
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-a {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.65;
    padding-left: 38px;
}

/* ============================================
   CTA — orange Sektion
   ============================================ */
.cta-section {
    background: var(--orange);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 25%, rgba(253,243,238,0.25), transparent 50%),
                    radial-gradient(circle at 85% 75%, rgba(61,90,122,0.2), transparent 50%);
    pointer-events: none;
}

.cta-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section .section-tag {
    background: var(--blue-deep);
    color: var(--cream);
    border-color: var(--blue-deep);
}

.cta-section h2 {
    color: var(--cream);
}

.cta-section p {
    color: rgba(253, 243, 238, 0.9);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.65;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--cream);
    background: var(--blue-deep);
    border: 2px solid var(--blue-deep);
    padding: 0.5rem 1rem;
    transition: transform 0.15s ease;
    cursor: pointer;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--blue-deep);
    border-top: 2.5px solid var(--blue-deep);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
    var(--orange) 0%,
    var(--blue-soft) 30%,
    var(--orange-soft) 60%,
    var(--blue-soft-deep) 100%);
    opacity: 0.85;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

footer p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: rgba(253, 243, 238, 0.6);
    letter-spacing: 0.06em;
}

footer a {
    color: var(--blue-soft);
    text-decoration: none;
    transition: color 0.15s ease;
}

footer a:hover {
    color: var(--orange-soft);
}

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

.btnrequest {
}

.buttonrequest {
    background: var(--orange) ;
    color: var(--cream) ;
    border: 2px solid var(--blue-deep);

    /* padding: 0.4rem 1rem */
    /* margin-left: 0.4rem */
    transition: transform 0.15s ease, background 0.15s ease ;
}

.whatsapplogo {
    width: 21px;
    color: #34ff0e;
}

.SpixLogo {
    width: 75px;
    margin-bottom: -15px;
}

.SpixLogoHeader {
    width: 82px;
    margin-left: 5px;
    margin-top: 5x;
    display: flex;
    align-items: center;
    padding-left: 2px;
    margin-right: 2px;
}

.HeroBanner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1 / 1 / 6 / 6;
}

@media (min-width: 750px) {
}

.presentation {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: auto;
}

@media (min-width:760px) {
    .presentation {
        display: none;
    }
}

.Hero-Section-Pictures {
    display: none;
    width: 100%;
}

@media (min-width: 760px) {
    .Hero-Section-Pictures {
        display: flex;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.heroimages {
    width: 33.33%;
}

.herimages {
    width: 100%;
}

.btnmail {
    background: var(--blue-deep);
    color: var(--blue-deep);
    box-shadow: var(--shadow);
    text-decoration: none;
    cursor: pointer;
}

button,
select {
    width: 50%;
    height: 50%;
    padding-bottom: 5px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    background: var(--blue-soft);
    color: var(--blue-deep);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.headerinner {
    width: min(100% - 40px, 1280px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2vw, 40px);
    min-height: 72px;
}

.btnonlineshop {
    width: 85px;
    height: 80px;
    text-align: left;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 25px;
    background-color: #ff6d0e !important;
    color: var(--cream);
    grid-area: 1 / 2 / 2 / 3;
    justify-content: center;
    display: flex;
    align-items: center;
    align-self: center;
}

@media @media (min-width: 380px) {
}

.btnonlineshop {
}

.pgia-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    display: grid;
    grid-template-rows: 200px 200px;
}

@media (min-width: 750px) {
    .pgia-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
        gap: 7px;
        grid-template-rows: 400px 400px;
    }
}

@media (min-width: 750px) {
}

.GalerieÜberschriften {
    display: flex;
    width: 100%;
}

/* @media (min-width:750px) {
    .gallerygridscale {
        grid-template-columns: repeat(3, 2fr);
    }
} */
.galerieslider {
    background-color: rgba(0, 0, 0, 0.56);
    position: fixed;
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    width: auto;
    height: auto;
    justify-content: flex-end;
    flex-direction: column;
}

.pgia-gallery-lightbox-slide {
    align-items: center;
    justify-content: center;
    display: flex;
}



</style>

