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

:root {
    --red: #e9212b;
    --red-dark: #b8161f;
    --red-light: #fdeced;
    --black: #1e1e1e;
    --charcoal: #2c2c2c;
    --mid: #6b6b6b;
    --stone: #d8d8d8;
    --offwhite: #f7f7f7;
    --white: #ffffff;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stone);
    padding: 0 2rem
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none
}

.nav-logo-mark {
    height: 26px;
}

.nav-logo-mark>img {
    height: 26px;
}

.nav-logo-text {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--mid);
    transition: color .2s
}

.nav-links a:hover {
    color: var(--red)
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: .4rem 1.1rem;
    border-radius: 2px
}

.nav-cta:hover {
    background: var(--red-dark) !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 1px
}

@media(max-width:768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--stone);
        gap: 1.2rem
    }

    .nav-links.open {
        display: flex
    }

    .hamburger {
        display: flex
    }
}

.hero {
    padding-top: 64px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 6rem
}

.eyebrow {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 1.5rem
}

.hero-title em {
    font-style: italic;
    color: var(--red)
}

.hero-sub {
    font-size: .97rem;
    color: var(--mid);
    max-width: 420px;
    margin-bottom: 2.5rem;
    line-height: 1.8
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: .75rem 2rem;
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s;
    display: inline-block
}

.btn-red:hover {
    background: var(--red-dark)
}

.btn-outline {
    border: 1.5px solid var(--black);
    color: var(--black);
    padding: .75rem 2rem;
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all .2s;
    display: inline-block
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white)
}

.hero-image {
    position: relative;
    overflow: hidden
}

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

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: .9rem 1.2rem;
    border-left: 4px solid var(--red);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--black);
    max-width: 240px;
    line-height: 1.4
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero-text {
        padding: 4rem 1.5rem 3rem
    }

    .hero-image {
        height: 55vw;
        min-height: 280px
    }
}

.kuechen-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-top: 1px solid var(--stone)
}

.kuechen-row:last-child {
    border-bottom: 1px solid var(--stone)
}

.kuechen-row.reverse .kuechen-img {
    order: 2
}

.kuechen-row.reverse .kuechen-text {
    order: 1
}

.kuechen-img {
    overflow: hidden;
    min-height: 440px
}

.kuechen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s
}

.kuechen-img:hover img {
    transform: scale(1.04)
}

.kuechen-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--offwhite)
}

.klabel {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.klabel::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0
}

.kuechen-text h3 {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2
}

.kuechen-text p {
    color: var(--mid);
    line-height: 1.8;
    font-size: .95rem
}

@media(max-width:768px) {

    .kuechen-row,
    .kuechen-row.reverse {
        grid-template-columns: 1fr
    }

    .kuechen-row.reverse .kuechen-img,
    .kuechen-row.reverse .kuechen-text {
        order: unset
    }

    .kuechen-img {
        min-height: 240px
    }

    .kuechen-text {
        padding: 2.5rem 1.5rem
    }
}

.testimonials-section {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem
}

.tag-inv {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.tag-inv::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0
}

.title-inv {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem
}

.title-inv em {
    font-style: italic;
    color: var(--red)
}

.tcards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.tcard {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 2rem;
    border-radius: 2px;
    position: relative
}

.tcard::before {
    content: '\201C';
    font-family: var(--serif);
    font-size: 4.5rem;
    color: var(--red);
    position: absolute;
    top: -.5rem;
    left: 1.3rem;
    line-height: 1
}

.tcard-text {
    font-size: .88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    margin-top: 1.5rem
}

.tcard-author {
    margin-top: 1.2rem;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red)
}

.mat-section {
    background: var(--offwhite);
    padding: 5rem 2rem
}

.stag {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.stag::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0
}

.stitle {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: .5rem
}

.stitle em {
    font-style: italic;
    color: var(--red)
}

.mat-tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem 0 0;
    border-bottom: 2px solid var(--stone)
}

.mat-tab {
    border: none;
    background: none;
    font-family: var(--sans);
    font-size: .73rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    padding: .65rem 1.3rem .75rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    white-space: nowrap
}

.mat-tab:hover {
    color: var(--black)
}

.mat-tab.active {
    color: var(--red);
    border-bottom-color: var(--red)
}

.mat-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0
}

.mat-panel.active {
    display: grid;
    animation: fadeUp .3s ease
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mat-photo {
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 4/3
}

.mat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.mat-info h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: .9rem
}

.mat-info p {
    color: var(--mid);
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 1.6rem
}

.ratings {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.rrow {
    display: flex;
    align-items: center;
    gap: 1rem
}

.rrow label {
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mid);
    width: 100px;
    flex-shrink: 0
}

.rbar {
    flex: 1;
    height: 3px;
    background: var(--stone);
    border-radius: 2px;
    overflow: hidden
}

.rfill {
    height: 100%;
    background: var(--red);
    border-radius: 2px
}

@media(max-width:700px) {
    .mat-panel.active {
        grid-template-columns: 1fr
    }

    .mat-tabs {
        overflow-x: auto
    }
}

.partner-section {
    background: var(--white);
    padding: 5rem 2rem
}

.logos-wrap {
    overflow: hidden;
    margin-top: 2.5rem;
    position: relative
}

.logos-wrap::before,
.logos-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.logos-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent)
}

.logos-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent)
}

.logos-track {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    animation: marquee 28s linear infinite;
    width: max-content
}

.logos-track:hover {
    animation-play-state: paused
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.logos-track img {
    height: 34px;
    width: auto;
    opacity: .38;
    filter: grayscale(1);
    transition: opacity .3s, filter .3s;
    flex-shrink: 0
}

.logos-track img:hover {
    opacity: .85;
    filter: grayscale(0)
}

.spuelen-section {
    background: var(--offwhite);
    padding: 5rem 2rem
}

.spuelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.scard {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 2px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.scard:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08)
}

.scard img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block
}

.scard-body {
    padding: 1.5rem
}

.scard-body h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: .4rem
}

.scard-body p {
    font-size: .87rem;
    color: var(--mid);
    line-height: 1.75
}

@media(max-width:768px) {
    .spuelen-grid {
        grid-template-columns: 1fr
    }
}

.contact-section {
    background: var(--red);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center
}

.ctitle {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1
}

.ctitle em {
    font-style: italic;
    opacity: .85
}

.csub {
    opacity: .88;
    margin-bottom: 2.5rem;
    font-size: .97rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    padding: .8rem 2.2rem;
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 500;
    transition: background .2s
}

.btn-white:hover {
    background: var(--offwhite)
}

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

.clinks a {
    color: var(--white);
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
    transition: opacity .2s;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 2px
}

.clinks a:hover {
    opacity: 1;
    border-bottom-color: var(--white)
}

footer {
    background: var(--black);
    color: rgba(255, 255, 255, .38);
    padding: 2.5rem 2rem;
    font-size: .77rem
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

footer a {
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color .2s
}

footer a:hover {
    color: rgba(255, 255, 255, .8)
}

.flogo {
    display: flex;
    align-items: center;
    gap: .6rem
}

.flogo-mark {
    height: 30px;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    align-items: center;
    background-color: white;
}

.flogo-mark>img {
    height: 20px;
}


.container {
    max-width: 1200px;
    margin: 0 auto
}