/* ============ Tokens ============ */
:root {
    --bg-light: #E6FAFF;
    --teal: #00a1c0;
    --navy: #12384A;
    --navy-2: #0C2338;
    --orange: #F5811F;
    --orange-dark: #DD6C0F;
    --yellow: #FDB927;
    --purple: #8E4F98;
    --mint: #7BF3C9;
    --cream: #FFF6E9;
    --tan: #E9D8B9;
    --white: #FFFFFF;
    --text-body: #2E4457;
    --text-muted: #5B7386;

    --font-display: 'Anton', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-logo: 'Fredoka', sans-serif;
    --font-script: 'Pacifico', cursive;

    --container-w: 1440px;
    --container-header-w: 820px;
    --radius-lg: 28px;
    --radius-md: 18px;
}


/* Plus Jakarta Sans – Variable Font, deckt weight 200–800 ab */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plusjakartasans-var.woff2') format('woff2-variations');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/fonts/plusjakartasans-italic-var.woff2') format('woff2-variations');
    font-weight: 200 800;
    font-style: italic;
    font-display: swap;
}

/* Pacifico – Script-Font, nur Regular (400) */
@font-face {
    font-family: 'Pacifico';
    src: url('/fonts/pacifico-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Anton – Display-Font, nur Regular (400) */
@font-face {
    font-family: 'Anton';
    src: url('/fonts/anton-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goodlife Sans Condensed';
    src: url('/fonts/goodlife-sans-condensed.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ============ Reset ============ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--navy);
}

h1 {
    margin-top: 24px;
    font-size: 5.375rem;
    margin-bottom: 96px;
}

h2 {
    font-size: 4.25rem;
}

p {
    margin: 0;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--white);
    color: var(--navy);
    padding: 10px 16px;
    z-index: 999;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(245, 129, 31, 0.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

.btn-block {
    width: 100%;
}

.eyebrow {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 25px;
    text-align: center;

}

.hero .eyebrow {
    transform: rotate(-6deg);
    color: #F5811F;
}

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 16px rgba(16, 40, 61, 0.06);
    max-width: var(--container-header-w);
    margin: 20px auto 0;
    border-radius: 16px;
}

.site-header .container {
    max-width: var(--container-header-w);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}


@media (min-width: 1081px) {
    .header-inner .logo {
        position: absolute;
        left: -8rem;
        top: 1rem;
    }

    .header-inner .logo .logo-img {
        height: 150px;
    }

    /* Override sobald gescrollt wurde */
    body.is-scrolled .header-inner .logo {
        position: static;
        left: auto;
        top: auto;
        width: 50px;
        display: none;
    }

    body.is-scrolled .header-inner .logo .logo-img {
        height: auto; /* oder eine kleinere Höhe, z.B. 60px */
    }

    @media (min-width: 768px) {
        body.is-scrolled .header-inner .logo {
            display: none;
        }
    }
}

@media (min-width: 1200px) {
    .header-inner .logo {
        left: -10rem;
    }

    body.is-scrolled .header-inner .logo {
        left: auto;
    }
}

@media (min-width: 1500px) {
    .header-inner .logo {
        left: -35%;
    }

    body.is-scrolled .header-inner .logo {
        left: auto;
    }
}

.logo {
    line-height: 1;
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 22px;
    font-size: 0.88rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============ Hero ============ */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-bowls {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bowl {
    position: absolute;
    width: auto;
    height: 466px;
}

.hero-bowl img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
}

.hero-bowl::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 65%;
    transform: translateX(-50%);
    background: radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.12) 40%,
            rgba(0, 0, 0, 0) 70%
    );
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}

.hb-1 {
    bottom: 0;
    left: 0;
}

.hb-2 {
    top: 5%;
    left: 18%;
}

.hb-3 {
    bottom: 3%;
    right: 18%;
}

.hb-4 {
    top: 2%;
    right: 1%;
}

.hb-5 {
    bottom: 0;
    right: -12%;
}

@media  (max-width: 1499px) {
    .hb-3 {
        display: none;
    }
    .hb-4 {
        top: 15%;
        right: 13%;
    }
}

@media  (max-width: 1199px) {
    .hb-2 {
        top: 15%;
        left: 36%;
    }
    .hb-4 {
        display: none;
    }
}

.hero-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 44px 46px;
    max-width: 480px;
    text-align: left;
    box-shadow: 0 0 60px rgba(16, 40, 61, 0.18);
}

.hero-card h1 {
    font-size: 5.6rem;
    margin-bottom: 26px;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

/* ============ Marquee ============ */
.marquee-bar {
    background: var(--mint);
    padding: 14px 0;
    white-space: nowrap;
    transform: rotate(-0.8deg);
    z-index: 11;
    position: relative;
    top: 20px;
    overflow: hidden;
}

.marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.marquee-set {
    display: inline-flex;
    align-items: center;
}

.marquee-set span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    padding: 0 18px;
    letter-spacing: 0.03em;
}

.marquee-set i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20%);
    }
}


/* ============ Reference ============ */
.reference-bar {
    background: transparent;
    padding: 14px 0;
    white-space: nowrap;
    z-index: 11;
    position: relative;
    top: 20px;
    overflow: hidden;
}

.reference-track {
    display: inline-flex;
    width: max-content;
    animation: reference 60s linear infinite;
}

.reference-set {
    display: inline-flex;
    align-items: center;
}

.reference-set span {
    font-family: var(--font-display);
    font-size: 1rem;
    padding: 0 18px;
    letter-spacing: 0.03em;
}

.reference-image {
    height: auto;
    width: 150px;
    max-width: 100%;
}

.reference-set i {
    width: 0;
    height: 0;
    flex-shrink: 0;
    margin: 0 30px;
}

@keyframes reference {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============ Bowls section ============ */
.bowls-section {
    position: relative;
    background: var(--teal);
    padding: 110px 0 60px;
    overflow: hidden;
    z-index: 10;
}

.leaf-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 440px;
    opacity: 1;
    pointer-events: none;
}

.section-head {
    text-align: center;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.section-head h2 {
  font-size: 4.25rem;
  color: var(--navy);
}

.section-head.light h2 {
    color: var(--white);
    font-size: 4.25rem;
}

.section-sub {
    margin-top: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-head:not(.light) .section-sub {
    color: var(--text-muted);
}

.bowl-slider {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.bowl-track {
    display: flex;
    gap: 26px;
    transition: transform 0.45s cubic-bezier(.65, 0, .35, 1);
}

.bowl-card {
    position: relative;
    flex: 0 0 430px;
    border-radius: var(--radius-md);
    padding: 26px 24px 28px;
    color: var(--white);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 40px rgba(16, 40, 61, 0.18);
}

.card-yellow {
    background: var(--yellow);
}

.card-orange {
    background: #F4762B;
}

.card-purple {
    background: var(--purple);
}

.card-navy {
    background: var(--navy);
}

.card-yellow .ingredients-line::before {
    color: var(--yellow);
}

.card-orange .ingredients-line::before {
    color: #F4762B;
}

.card-purple .ingredients-line::before {
    color: var(--purple);
}

.card-navy .ingredients-line::before {
    color: var(--navy);
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
}

.bowl-photo-img {
    width: auto;
    height: 304px;
    margin: 6px auto 20px;
}

.bowl-card h3 {
    color: inherit;
    font-size: 2rem;
    margin-bottom: 6px;
}

.ingredients-line {
    position: relative;
    padding-left: 26px;
    font-weight: 600;
    font-size: 0.92rem;
    opacity: 1;
    margin-bottom: 10px;
}

.ingredients-line::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: auto;
}

.ingredients-tags li {
    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.ingredients-text {
    font-size: 0.656rem;
    margin-top: 2rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
    background: var(--orange);
    transform: scale(1.06);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
}

.slider-dots button.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 6px;
}

.wave-divider {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin: -2px 0;
    z-index: 2;
}

/* ============ Mission section ============ */
.mission-section {
    padding: 40px 0 100px;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: start;
}

.mission-text {
    position: relative;
    height: 100%;
}

.mission-text h2 {
    position: sticky;
    top: 110px;
    z-index: 1;
}

.mission-text h2 {
    font-size: 5.375rem;
  padding-left: 30px;
}

.hibiscus {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: auto;
  height: 886px;
    z-index: -1;
}

.hibiscus-dark {
    position: absolute;
    width: 73%;
    height: 100%;
    z-index: 1;
}

.media-stack {
    position: relative;
    margin-bottom: 34px;
    padding-bottom: 60px;
}

.media-large {
  width: auto;
  height: 820px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.media-small {
    position: absolute;
    left: -30px;
    bottom: -20px;
  width: auto;
  height: 330px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 30px rgba(16, 40, 61, 0.2);
}

.mission-media h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  margin-top: 5rem;
}

.mission-media p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 20px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.ig-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============ Team section ============ */
.team-section {
    position: relative;
    padding: 40px 0 290px;
    background-color: #fff;
}

.team-section .section-head h2 {
    text-align: left;
}

.bird-of-paradise {
    position: absolute;
    right: 0;
    bottom: -220px;
    width: auto;
    height: 663px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    z-index: 10;
    position: relative;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-top: 16px;
  text-transform: uppercase;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

.team-photo {
    height: 312px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.photo-yellow {
    background: var(--yellow);
}

.photo-coral {
    background: #F2775B;
}

.photo-blue {
    background: #6FC3E4;
}

.photo-green {
    background: #2F6F4E;
}

/* ============ Catering section ============ */
.catering-section {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 20px 0 150px;
    overflow: hidden;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-top: 50px;
}

.catering-text {
    padding-right: 45%;
    z-index: 10;
}

.catering-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 8px 0 20px;
}

.catering-text > p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 26px;
}

.catering-text .eyebrow {
    text-align: left;
    color: var(--yellow);
    margin-bottom: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catering-form {
    background: var(--cream);
    color: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.catering-form h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.field-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.field input, .field textarea {
    font-family: var(--font-body);
    border: 1.5px solid var(--tan);
    background: var(--white);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.92rem;
    color: var(--navy);
    resize: vertical;
}

.field input:focus, .field textarea:focus {
    outline: 2px solid var(--orange);
    outline-offset: 1px;
}

.field-row {
    display: flex;
    gap: 14px;
}

/* ============ Footer ============ */
.site-footer {
    background: var(--navy-2);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 52px;
}

.footer-brand p {
    margin: 16px 0 18px;
    font-size: 0.88rem;
    max-width: 30ch;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.social-icons a:hover {
    background: var(--orange);
}

.footer-col h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 22px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-text {
        padding-bottom: 60px;
    }

    .catering-text {
        padding-right: 0;
    }

    .hibiscus {
        display: none;
        position: static;
        margin-top: 30px;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bird-of-paradise {
        opacity: 0.25;
    }

    .bowl-photo-img {
        height: auto;
        margin-top: 1rem;
    }

    .ingredients-tags {
        margin-top: 1rem;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-inner .logo .logo-img {
        height: 58px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        inset: 70px 0 0 0;
        background: var(--white);
        flex: none;
        transform: translateY(-110%);
        transition: transform 0.25s ease;
        padding: 20px;
        z-index: 90;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 20px 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero-bowl {
        display: none;
    }

    .hb-1, .hb-5 {
        display: block;
        opacity: 0.5;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-card h1 {
        font-size: 2.1rem;
    }

    .media-small {
        left: 50%;
        transform: translate(-50%, 10px);
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo span {
        font-size: 1.05rem;
    }

    .hero {
        min-height: auto;
        padding: 40px 16px;
    }

    .hero-card {
        padding: 30px 26px;
    }

    .hero-card h1 {
        font-size: 1.7rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-head h2, .mission-text h2, .catering-text h2 {
        font-size: 1.9rem;
    }

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

    .field-row {
        flex-direction: column;
    }

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

    .bowl-card {
        flex-basis: 100%;
    }

    .hb-1, .hb-5 {
        display: none;
    }

    .hb-2 {
        display: block;
        opacity: 0.5;
        top: -10%;
        left: 0%;
    }
}

.datenschutz p,
.imprint p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.datenschutz h2,
.imprint h2 {
    margin-top: 24px;
    margin-bottom: 32px;
    word-break: break-word;
}

.datenschutz h1,
.imprint h1 {
    word-break: break-word;
}

@media (min-width: 768px) {
    body.datenschutz.is-scrolled .header-inner .logo,
    body.imprint.is-scrolled .header-inner .logo {
        display: block;
    }
}