:root {
    --bg: #050505;
    --bg-elevated: #0f0f0f;
    --bg-soft: #171717;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(158, 218, 255, 0.45);
    --text: #f5f5f5;
    --muted: #b8b8b8;
    --soft: #8e8e8e;
    --accent: #9edaff;
    --accent-strong: #d2f0ff;
    --accent-ink: #04131d;
    --success: #8fe6a2;
    --danger: #ff8a8a;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    --radius: 8px;
    --radius-lg: 8px;
    --content-width: 1180px;
    --header-height: 82px;
    --notification-offset: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #080808 0%, #050505 100%);
    color: var(--text);
    line-height: 1.6;
}

body.public-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

.login-screen {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: none;
    place-items: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.84)), #050505;
}

.login-screen.is-visible {
    display: grid;
}

.login-box {
    width: min(460px, 100%);
    padding: 28px;
    text-align: center;
}

.login-input {
    width: 100%;
    padding: 1rem 1.05rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    text-align: center;
    letter-spacing: 0.06em;
}

.main-website {
    display: none;
}

.main-website.show {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.public-header {
    position: fixed;
    top: var(--notification-offset, 0px);
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-header-inner {
    width: min(var(--content-width), calc(100% - 32px));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    color: var(--accent-ink);
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    flex-shrink: 0;
}

.brand-mark img {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: contain;
    display: block;
}

.brand-mark-fallback {
    display: none;
}

.brand-mark.is-fallback {
    display: inline-flex;
    background: linear-gradient(135deg, var(--accent), #e7f7ff);
    border-color: rgba(158, 218, 255, 0.35);
    box-shadow: 0 10px 24px rgba(158, 218, 255, 0.18);
}

.brand-mark.is-fallback .brand-mark-fallback {
    display: inline;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
}

.brand-subtitle {
    font-size: 0.78rem;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-nav a,
.public-nav button {
    border: 0;
    background: transparent;
    color: var(--muted);
    text-decoration: none;
    padding: 0.72rem 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.public-nav a:hover,
.public-nav button:hover,
.public-nav .is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.public-nav .nav-cta,
.button,
.button-secondary,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.95rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.public-nav .nav-cta,
.button {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: var(--accent-ink);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(158, 218, 255, 0.16);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.public-nav .nav-cta:hover {
    transform: translateY(-1px);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--border);
}

.button-secondary.is-unavailable {
    border-color: rgba(158, 218, 255, 0.3);
    color: var(--accent-strong);
}

.button-ghost {
    background: transparent;
    color: var(--muted);
    border-color: rgba(255, 255, 255, 0.06);
}

.site-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    display: none;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #15120a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.site-notification.is-visible {
    display: block;
}

.site-notification[hidden] {
    display: none !important;
}

.site-notification-inner {
    width: min(var(--content-width), calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.site-notification-label {
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-notification-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-notification--info,
.site-notification--success,
.site-notification--warning,
.site-notification--danger {
    background: linear-gradient(90deg, #f4d66a 0%, #fff4ca 100%);
}

.page-shell,
.site-main {
    padding-top: calc(var(--header-height) + 36px + var(--notification-offset, 0px));
}

.site-main,
body.public-page > main {
    flex: 1 0 auto;
}

.page-shell {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 56px;
}

.page {
    display: none;
}

.page.is-active {
    display: block;
}

.hero {
    width: min(1520px, calc(100% - 32px));
    min-height: calc(100vh - var(--header-height) - var(--notification-offset, 0px) - 84px);
    margin: 0 auto 28px;
    display: block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(158, 218, 255, 0.32);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title,
.page-title {
    margin: 18px 0 16px;
    font-size: 3.8rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.hero-text,
.page-subtitle,
.section-copy p,
.text-block,
.imprint-copy,
.article-content,
.news-content,
.section-lead {
    color: var(--muted);
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-aside,
.surface,
.news-card,
.article-surface,
.form-surface,
.info-band,
.catalog-card,
.feedback-card,
.error-surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(158, 218, 255, 0.08), rgba(255, 255, 255, 0.03)),
        #111;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

#heroSlides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
    opacity: 0;
    transition: opacity 0.55s ease, transform 6.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.04);
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62)),
        linear-gradient(135deg, rgba(158, 218, 255, 0.16), transparent 52%);
}

.hero-panel {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 32px 32px 92px;
    display: grid;
    place-items: center;
}

.hero-copy {
    width: min(460px, 100%);
    text-align: center;
    padding: 28px 26px;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-logo-placeholder {
    width: 320px;
    aspect-ratio: 1;
    margin: 0 auto 18px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
}

.hero-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-logo-fallback {
    display: none;
}

.hero-logo-placeholder.is-fallback {
    display: grid;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-logo-placeholder.is-fallback .hero-logo-fallback {
    display: inline;
}

.hero-copy .hero-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.hero-copy .hero-text {
    max-width: 320px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.hero-copy .hero-actions {
    justify-content: center;
    margin-top: 18px;
}

.hero-slider-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-nav-button {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 6, 6, 0.52);
    color: var(--text);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-nav-button:hover {
    transform: translateY(-1px);
    border-color: rgba(158, 218, 255, 0.32);
    background: rgba(12, 12, 12, 0.68);
}

.hero-dots {
    position: absolute;
    left: 24px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--accent);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.stat {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat strong {
    display: block;
    font-size: 1.55rem;
    color: var(--text);
}

.stat span {
    color: var(--soft);
    font-size: 0.92rem;
}

.section-band {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.section-grid,
.service-band,
.catalog-grid,
.news-grid,
.imprint-grid,
.article-layout,
.two-column {
    display: grid;
    gap: 22px;
}

.service-band {
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    margin-bottom: 22px;
}

.service-band.reverse .service-media {
    order: 2;
}

.service-band.reverse .service-copy {
    order: 1;
}

.service-media {
    min-height: 360px;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(158, 218, 255, 0.24), rgba(255, 255, 255, 0.04)),
        #151515;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}

.service-copy,
.catalog-card,
.news-card,
.article-surface,
.form-surface,
.feedback-card,
.info-band,
.error-surface {
    padding: 24px;
}

.section-kicker,
.card-kicker {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title,
.card-title,
.service-copy h2,
.service-copy h3 {
    margin: 10px 0 12px;
    font-size: 2rem;
    line-height: 1.1;
}

.mini-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.mini-list li {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.catalog-grid,
.news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card .icon-tile,
.news-card .icon-tile {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(158, 218, 255, 0.12);
    border: 1px solid rgba(158, 218, 255, 0.22);
    font-size: 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(158, 218, 255, 0.13);
    border: 1px solid rgba(158, 218, 255, 0.24);
    color: var(--accent);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer {
    width: 100%;
    margin: 0;
    padding: 22px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--soft);
}

.footer-inner {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
}

.footer .imprint-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer .imprint-copy strong {
    color: var(--text);
}

.footer .imprint-copy a {
    color: var(--text);
    text-underline-offset: 3px;
}

.form-shell,
.article-shell,
.news-shell,
.feedback-shell,
.error-shell {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 28px + var(--notification-offset, 0px));
    padding-bottom: 56px;
}

.news-shell {
    width: min(var(--content-width), calc(100% - 32px));
}

.stack {
    display: grid;
    gap: 18px;
}

.message {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.message.success {
    background: rgba(143, 230, 162, 0.1);
    color: var(--success);
    border-color: rgba(143, 230, 162, 0.22);
}

.message.error {
    background: rgba(255, 138, 138, 0.1);
    color: var(--danger);
    border-color: rgba(255, 138, 138, 0.22);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid.single {
    grid-template-columns: 1fr;
}

.field,
.form-group {
    display: grid;
    gap: 8px;
}

.field label,
.form-group label {
    color: var(--text);
    font-weight: 600;
}

.field small,
.helper-text,
.form-section-text,
.section-description,
.meta-text {
    color: var(--soft);
}

.field input,
.field textarea,
.field select,
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(158, 218, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(158, 218, 255, 0.11);
}

.field textarea,
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.check-grid,
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.check-card,
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.availability-warning {
    display: none;
    margin: 0 0 18px;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(255, 138, 138, 0.09);
    border: 1px solid rgba(255, 138, 138, 0.24);
    color: var(--danger);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.availability-warning.show {
    display: block;
}

.availability-warning.is-warning {
    background: rgba(255, 205, 86, 0.08);
    border-color: rgba(255, 205, 86, 0.28);
    color: #f3d77a;
}

.availability-warning.is-danger {
    background: rgba(255, 138, 138, 0.09);
    border-color: rgba(255, 138, 138, 0.24);
    color: var(--danger);
}

.submit-area {
    margin-top: 6px;
}

.news-card a,
.article-link {
    color: inherit;
    text-decoration: none;
}

.article-meta,
.news-meta {
    color: var(--soft);
    font-size: 0.92rem;
}

.empty-state {
    padding: 28px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    color: var(--soft);
    text-align: center;
}

.error-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

body.public-page .error-shell {
    min-height: auto;
}

.rating-picker {
    display: grid;
    gap: 12px;
}

.rating-stars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-star {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.38);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.rating-star:hover,
.rating-star:focus-visible {
    color: #f6d365;
    border-color: rgba(246, 211, 101, 0.42);
    outline: none;
}

.rating-star.is-active {
    color: #f6d365;
    background: rgba(246, 211, 101, 0.1);
    border-color: rgba(246, 211, 101, 0.42);
}

.rating-clear {
    justify-self: start;
    padding: 0.72rem 1rem;
}

.rating-label {
    color: var(--soft);
    font-size: 0.92rem;
}

.error-code {
    font-size: 5.5rem;
    line-height: 1;
    margin: 0 0 10px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(16px);
    animation: revealUp 0.7s ease forwards;
}

.reveal-up.delay-1 { animation-delay: 0.08s; }
.reveal-up.delay-2 { animation-delay: 0.16s; }
.reveal-up.delay-3 { animation-delay: 0.24s; }

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

@media (max-width: 1024px) {
    .hero,
    .service-band,
    .catalog-grid,
    .news-grid,
    .form-grid,
    .check-grid,
    .checkbox-group,
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 72px;
    }

    .public-header-inner,
    .hero,
    .section-band,
    .page-shell,
    .footer,
    .news-shell,
    .article-shell,
    .form-shell,
    .feedback-shell,
    .error-shell {
        width: min(100% - 20px, calc(100% - 20px));
    }

    .footer {
        width: 100%;
    }

    .footer-inner {
        width: min(100% - 20px, calc(100% - 20px));
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .public-nav {
        position: fixed;
        top: calc(var(--header-height) + var(--notification-offset, 0px));
        left: 10px;
        right: 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: rgba(8, 8, 8, 0.96);
        border: 1px solid var(--border);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .public-nav.is-open {
        display: flex;
    }

    .public-nav a,
    .public-nav button,
    .public-nav .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-title,
    .page-title {
        font-size: 2.4rem;
    }

    #about .two-column {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    #about .surface {
        padding: 20px !important;
    }

    #about .service-media {
        min-height: 240px;
    }

    #about .section-title {
        font-size: 1.6rem !important;
        line-height: 1.12;
    }

    #about .card-title {
        font-size: 1.2rem !important;
    }

    #about .catalog-card {
        padding: 20px;
    }

    #about .page-subtitle,
    #about .text-block {
        font-size: 1rem;
    }

    .hero-slider {
        aspect-ratio: auto;
        min-height: 72vh;
    }

    .hero-panel {
        padding: 18px 18px 72px;
    }

    .hero-copy {
        width: min(100%, 360px);
        padding: 22px 18px;
    }

    .hero-logo-placeholder {
        width: 220px;
    }

    .hero-dots {
        left: 16px;
        bottom: 16px;
    }

    .hero-slider-controls {
        right: 16px;
        bottom: 16px;
    }

    .service-band,
    .catalog-grid,
    .news-grid,
    .form-grid,
    .check-grid,
    .checkbox-group,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .service-band.reverse .service-media,
    .service-band.reverse .service-copy {
        order: initial;
    }

    .site-notification-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer .imprint-grid {
        grid-template-columns: 1fr;
    }

    .rating-stars {
        gap: 8px;
    }

    .rating-star {
        width: 42px;
        height: 42px;
    }
}
