/* =========================================================
   musiknachwunsch.de – Hauptstylesheet
   Die Datei ist bewusst lesbar gegliedert und ohne CSS-Framework.
   ========================================================= */

:root {
    --ink:#0b0b0d;
    --paper:#f4f1eb;
    --muted:#a5a1a0;
    --gold:#c8a96b;
    --wine:#4b2032;
    --line:rgba(255,255,255,.12);
    --max:1240px;
    --serif:'Iowan Old Style','Baskerville','Times New Roman',serif;
    --sans:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    background:var(--ink);
    color:var(--paper);
    font-family:var(--sans);
    font-size:16px;
    line-height:1.6
}

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

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

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

.shell {
    width:min(calc(100% - 40px),var(--max));
    margin-inline:auto
}

.sr-only {
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0
}

.skip-link {
    position:fixed;
    left:16px;
    top:-100px;
    background:var(--paper);
    color:var(--ink);
    padding:10px 14px;
    z-index:999
}

.skip-link:focus {
    top:16px
}

.site-header {
    position:fixed;
    inset:0 0 auto;
    z-index:50;
    border-bottom:1px solid transparent;
    transition:.3s
}

.site-header.scrolled {
    background:rgba(11,11,13,.88);
    backdrop-filter:blur(18px);
    border-color:var(--line)
}

.nav-wrap {
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between
}

.brand {
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    letter-spacing:-.03em
}

.brand>span:last-child>span {
    color:var(--gold)
}

.brand-mark {
    height:20px;
    width:24px;
    display:flex;
    align-items:center;
    gap:2px
}

.brand-mark i {
    display:block;
    width:3px;
    background:var(--gold);
    border-radius:2px
}

.brand-mark i:nth-child(1) {
    height:8px
}

.brand-mark i:nth-child(2) {
    height:18px
}

.brand-mark i:nth-child(3) {
    height:12px
}

.brand-mark i:nth-child(4) {
    height:16px
}

.main-nav {
    display:flex;
    align-items:center;
    gap:28px;
    font-size:14px
}

.main-nav>a:not(.btn) {
    color:#d7d3ce;
    transition:.2s
}

.main-nav>a:not(.btn):hover {
    color:#fff
}

.nav-toggle {
    display:none;
    background:none;
    border:0;
    color:#fff
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    background:var(--gold);
    color:#111;
    padding:15px 20px;
    border:1px solid var(--gold);
    border-radius:8px;
    font-weight:600;
    transition:transform .2s,background .2s
}

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

.btn span {
    /*
     * CTA-Icon als direkt eingebettetes SVG.
     * Die CSS-Maske übernimmt automatisch die aktuelle Textfarbe des Buttons:
     * dunkel auf goldenen Buttons, hell auf Ghost-Buttons.
     */
    display: inline-block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 0;
    line-height: 0;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='none' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M11.5 20.5 20.5 11.5M14 11.5h6.5V18' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='none' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M11.5 20.5 20.5 11.5M14 11.5h6.5V18' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: transform .2s;
}

.btn:hover span {
    transform: translate(2px, -2px);
}

.btn-small {
    padding:10px 15px
}

.btn-ghost {
    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,.25)
}

.btn-ghost:hover {
    background:rgba(255,255,255,.06)
}

.btn-light {
    background:var(--paper);
    border-color:var(--paper)
}

.hero {
    min-height:100svh;
    display:flex;
    align-items:flex-end;
    position:relative;
    overflow:hidden;
    padding:150px 0 78px;
    background:radial-gradient(circle at 75% 25%,rgba(75,32,50,.55),transparent 32%),radial-gradient(circle at 20% 80%,rgba(200,169,107,.12),transparent 28%)
}

.hero:before {
    content:'';
    position:absolute;
    width:45vw;
    height:45vw;
    min-width:500px;
    min-height:500px;
    border:1px solid rgba(200,169,107,.15);
    border-radius:50%;
    right:-8vw;
    top:8vh;
    box-shadow:0 0 120px rgba(200,169,107,.05) inset
}

.hero-grid {
    display:grid;
    grid-template-columns:1.35fr .65fr;
    gap:80px;
    align-items:end;
    position:relative
}

.eyebrow {
    text-transform:uppercase;
    letter-spacing:.17em;
    font-size:12px;
    color:var(--gold);
    font-weight:600
}

.hero h1,.page-hero h1 {
    font-family:var(--serif);
    font-size:clamp(58px,8vw,118px);
    line-height:.88;
    letter-spacing:-.055em;
    font-weight:400;
    margin:20px 0 30px;
    max-width:980px
}

.hero h1 em {
    font-style:italic;
    color:var(--gold)
}

.hero-copy {
    font-size:20px;
    color:#c7c2bd;
    max-width:660px
}

.actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:34px
}

.sound-card {
    border:1px solid var(--line);
    background:rgba(255,255,255,.035);
    backdrop-filter:blur(12px);
    border-radius:16px;
    padding:24px;
    transform:translateY(-20px)
}

.sound-art {
    aspect-ratio:1;
    border-radius:10px;
    background:linear-gradient(145deg,#351a26,#c8a96b);
    position:relative;
    overflow:hidden
}

.sound-art:after {
    content:'';
    position:absolute;
    inset:18%;
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    box-shadow:0 0 0 28px rgba(255,255,255,.04),0 0 0 58px rgba(255,255,255,.03)
}

.sound-meta {
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-top:18px
}

.sound-meta strong {
    display:block
}

.sound-meta small {
    color:var(--muted)
}

.play-btn {
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.3);
    background:transparent;
    color:#fff;
    cursor:pointer
}

.wave {
    display:flex;
    gap:3px;
    align-items:center;
    height:40px;
    margin-top:12px
}

.wave i {
    display:block;
    flex:1;
    background:rgba(255,255,255,.24);
    height:var(--h);
    border-radius:2px
}

.section {
    padding:120px 0
}

.section-light {
    background:var(--paper);
    color:var(--ink)
}

.section-wine {
    background:var(--wine)
}

.section-head {
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    gap:60px;
    margin-bottom:60px
}

.section h2,.cta-band h2 {
    font-family:var(--serif);
    font-size:clamp(42px,5.5vw,76px);
    line-height:1;
    letter-spacing:-.045em;
    font-weight:400;
    margin:0
}

.section-head p:last-child {
    max-width:580px;
    color:#68635f;
    font-size:18px
}

.cards-3 {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}

.feature-card {
    min-height:330px;
    padding:30px;
    border:1px solid rgba(11,11,13,.12);
    border-radius:14px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.3s
}

.feature-card:hover {
    transform:translateY(-6px);
    border-color:rgba(11,11,13,.3)
}

.feature-card .num {
    font-family:var(--serif);
    font-size:36px;
    color:var(--gold)
}

.feature-card h3 {
    font-size:24px;
    letter-spacing:-.03em;
    margin:0 0 10px
}

.feature-card p {
    color:#69635f
}

.link-arrow {
    font-weight:600
}

.genre-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line)
}

.genre-item {
    background:var(--ink);
    min-height:170px;
    padding:24px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.25s
}

.genre-item:hover {
    background:#151519
}

.genre-item strong {
    font-family:var(--serif);
    font-size:28px;
    font-weight:400
}

.genre-item span {
    color:var(--gold);
    font-size:13px
}

.process {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px
}

.step {
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:18px
}

.step b {
    color:var(--gold);
    font-size:12px
}

.step h3 {
    font-size:18px
}

.step p {
    color:#b8b2ae;
    font-size:14px
}

.quote {
    font-family:var(--serif);
    font-size:clamp(38px,5vw,70px);
    line-height:1.08;
    max-width:1000px
}

.cta-band {
    background:var(--gold);
    color:var(--ink);
    padding:72px 0
}

.cta-inner {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:50px
}

.cta-inner p {
    max-width:650px;
    margin-bottom:0
}

.cta-band .eyebrow {
    color:#4b3a1d
}

.site-footer {
    padding:70px 0 25px;
    background:#08080a
}

.footer-grid {
    display:grid;
    grid-template-columns:2fr repeat(3,1fr);
    gap:50px
}

.footer-grid>div:first-child p {
    color:#898481;
    max-width:320px
}

.footer-grid h2 {
    font:600 12px var(--sans);
    text-transform:uppercase;
    letter-spacing:.14em;
    color:var(--gold);
    margin:0 0 16px
}

.footer-grid a:not(.brand) {
    display:block;
    color:#b2adaa;
    margin:7px 0
}

.footer-bottom {
    border-top:1px solid var(--line);
    margin-top:60px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    color:#77716e;
    font-size:13px
}

.page-hero {
    padding:190px 0 100px;
    background:radial-gradient(circle at 78% 25%,rgba(75,32,50,.42),transparent 30%)
}

.page-hero h1 {
    font-size:clamp(52px,7vw,98px);
    max-width:1050px
}

.page-hero .lead {
    font-size:20px;
    color:#bfb9b5;
    max-width:760px
}

.content-grid {
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:80px
}

.prose {
    font-size:18px
}

.prose h2 {
    font-family:var(--serif);
    font-size:42px;
    font-weight:400
}

.prose h3 {
    font-size:22px
}

.prose p,.prose li {
    color:#c4bfba !important;
}

.tag-list {
    display:flex;
    flex-wrap:wrap;
    gap:8px
}

.tag {
    border:1px solid var(--line);
    border-radius:999px;
    padding:7px 12px;
    font-size:13px;
    color:#d1cbc6
}

.project-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px
}

.project-card {
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    background:#111114;
    transition:.25s
}

.project-card:hover {
    transform:translateY(-5px)
}

.project-art {
    aspect-ratio:16/10;
    background:linear-gradient(135deg,var(--wine),#1b1b24);
    position:relative
}

.project-art:after {
    content:'♫';
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    font-family:var(--serif);
    font-size:80px;
    color:rgba(255,255,255,.35)
}

.project-info {
    padding:22px
}

.project-info h2,.project-info h3 {
    margin:2px 0 8px;
    font-size:24px
}

.project-info p {
    color:#aaa3a0
}

.filters {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:30px
}

.filter-btn {
    background:transparent;
    border:1px solid var(--line);
    color:#d4cfca;
    border-radius:999px;
    padding:9px 14px;
    cursor:pointer
}

.filter-btn.active {
    background:var(--paper);
    color:var(--ink)
}

.audio-inline {
    width:100%;
    margin-top:12px;
    accent-color:var(--gold)
}

.form-wrap {
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    gap:70px
}

.form-card {
    background:var(--paper);
    color:var(--ink);
    border-radius:16px;
    padding:34px
}

.field-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px
}

.field {
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-bottom:18px
}

.field.full {
    grid-column:1/-1
}

.field label {
    font-weight:600;
    font-size:14px
}

.field input,.field textarea,.field select {
    width:100%;
    border:1px solid #cbc5bc;
    background:#fff;
    border-radius:8px;
    padding:13px 14px;
    color:#111
}

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

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

.help {
    font-size:12px;
    color:#6d6861
}

.status {
    padding:12px 14px;
    border-radius:8px;
    margin-bottom:18px
}

.status.success {
    background:#e3f4e8;
    color:#1f5b2f
}

.status.error {
    background:#f8e4e4;
    color:#742b2b
}

.honeypot {
    position:absolute;
    left:-9999px
}

.check {
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-size:13px
}

.faq-list {
    border-top:1px solid var(--line)
}

details {
    border-bottom:1px solid var(--line);
    padding:18px 0
}

summary {
    cursor:pointer;
    font-size:20px;
    font-weight:500
}

details p {
    color:#b6afab;
    max-width:850px
}

.legal {
    max-width:850px
}

.legal h2 {
    font-family:var(--serif);
    font-size:32px;
    font-weight:400
}

.legal p,.legal li {
    color:#c0bbb6
}

.reveal {
    opacity:1;
    transform:none
}

.js .reveal {
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s ease,transform .7s ease
}

.js .reveal.visible {
    opacity:1;
    transform:none
}

@media(max-width:900px) {
    .main-nav {
        position:fixed;
        inset:82px 0 auto;
        background:#0b0b0d;
        padding:30px 20px;
        display:none;
        flex-direction:column;
        align-items:stretch
    }

    .main-nav.open {
        display:flex
    }

    .nav-toggle {
        display:grid;
        gap:5px
    }

    .nav-toggle span:not(.sr-only) {
        display:block;
        width:24px;
        height:1px;
        background:#fff
    }

    .hero-grid,.section-head,.content-grid,.form-wrap {
        grid-template-columns:1fr
    }

    .hero-grid {
        gap:50px
    }

    .sound-card {
        max-width:500px
    }

    .cards-3 {
        grid-template-columns:1fr
    }

    .genre-grid {
        grid-template-columns:1fr 1fr
    }

    .process {
        grid-template-columns:1fr 1fr
    }

    .project-grid {
        grid-template-columns:1fr
    }

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

    .cta-inner {
        align-items:flex-start;
        flex-direction:column
    }

    .field-grid {
        grid-template-columns:1fr
    }

    .field.full {
        grid-column:auto
    }

}

@media(max-width:560px) {
    .shell {
        width:min(calc(100% - 26px),var(--max))
    }

    .hero {
        padding-top:130px
    }

    .hero h1 {
        font-size:54px
    }

    .section {
        padding:86px 0
    }

    .genre-grid,.process,.footer-grid {
        grid-template-columns:1fr
    }

    .footer-bottom {
        gap:12px;
        flex-direction:column
    }

    .page-hero {
        padding:150px 0 75px
    }

    .form-card {
        padding:22px
    }

}

@media(prefers-reduced-motion:reduce) {
    .audio-visualizer span {
        animation: none;
        transform: scaleY(0.55);
    }

    html {
        scroll-behavior:auto
    }

    *,*:before,*:after {
        animation:none!important;
        transition:none!important
    }

    .js .reveal {
        opacity:1;
        transform:none
    }

}


/* =========================================================
   Ergänzende Inhalts- und Hörbeispiel-Komponenten
   ========================================================= */

.prose-dark {
    color: var(--ink);
}

.prose-dark p,
.prose-dark li {
    color: #625d58 !important;
}

.quote-dark {
    color: var(--ink);
}

.price-highlight {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.price-highlight > div:last-child {
    font-size: 18px;
    color: #625d58;
}

.process-row {
    padding: 35px 0;
    border-top: 1px solid var(--line);
}

.process-row h2 {
    font: 400 38px var(--serif);
}

.process-row > p {
    color: #b8b2ae;
    font-size: 18px;
}

.form-wrap aside h2 {
    font: 400 46px var(--serif);
}

.form-wrap aside > p:not(.eyebrow) {
    color: #b7b0ac;
}

.check a {
    text-decoration: underline;
}

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

.audio-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #111114;
}

.audio-card-visual {
    position: relative;
    display: grid;
    min-height: 250px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(200, 169, 107, 0.28), transparent 34%),
        linear-gradient(135deg, var(--wine), #1b1b24);
}

/* Eigenes Coverbild eines Hörbeispiels. */
.audio-card-visual--image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

/* Musikalischer Platzhalter, falls kein eigenes Cover hinterlegt ist. */
.audio-placeholder-note {
    font-family: var(--serif);
    font-size: 84px;
    color: rgba(255, 255, 255, 0.42);
}

/*
 * Dezente Aussteuerungsanzeige im Coverbereich.
 * Die Animation ist standardmäßig pausiert und läuft nur bei Wiedergabe.
 */
.audio-visualizer {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: max-content;
    height: 46px;
    padding: 8px 12px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(11, 11, 13, 0.38);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.audio-visualizer span {
    display: block;
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: var(--gold);
    transform: scaleY(0.35);
    transform-origin: center;
    animation: audio-level 0.8s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.audio-card.is-playing .audio-visualizer span {
    animation-play-state: running;
}

/* Unterschiedliche Phasen sorgen für eine natürlichere Bewegung. */
.audio-visualizer span:nth-child(1) { animation-delay: -0.12s; }
.audio-visualizer span:nth-child(2) { animation-delay: -0.42s; }
.audio-visualizer span:nth-child(3) { animation-delay: -0.68s; }
.audio-visualizer span:nth-child(4) { animation-delay: -0.25s; }
.audio-visualizer span:nth-child(5) { animation-delay: -0.55s; }
.audio-visualizer span:nth-child(6) { animation-delay: -0.18s; }
.audio-visualizer span:nth-child(7) { animation-delay: -0.74s; }
.audio-visualizer span:nth-child(8) { animation-delay: -0.36s; }

@keyframes audio-level {
    0% {
        transform: scaleY(0.25);
    }

    45% {
        transform: scaleY(0.85);
    }

    100% {
        transform: scaleY(1.7);
    }
}

.audio-card-content {
    padding: 24px;
}

.audio-card-content h2 {
    margin: 4px 0 8px;
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
    line-height: 1.1;
}

.audio-card-content p {
    color: #aaa3a0;
}

@media (max-width: 900px) {
    .price-highlight,
    .audio-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Musikalische Gestaltung
   Dezente Liniengrafiken greifen Instrumente, Noten und Klangwellen auf,
   ohne die Inhalte oder die hochwertige, reduzierte Optik zu überlagern.
   ========================================================= */

.hero,
.page-hero,
.section-light {
    isolation: isolate;
}

.hero::after,
.page-hero::after,
.section-light::before {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-image: url('../images/music-motif.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.hero::after {
    /*
     * Auf der Startseite läuft das Musikmotiv bewusst über die gesamte
     * Viewport-Breite. Die anderen Seiten behalten die kompaktere,
     * rechts platzierte Darstellung weiter unten in diesem Abschnitt.
     */
    width: 100vw;
    height: 100%;
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(-50%);
    background-position: center center;
    background-size: min(1500px, 100vw) auto;
    opacity: 0.72;
}

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

.page-hero::after {
    width: min(58vw, 820px);
    aspect-ratio: 12 / 7;
    right: -6vw;
    top: 72px;
    opacity: 0.55;
}

.section-light {
    position: relative;
    overflow: hidden;
}

.section-light::before {
    width: min(52vw, 760px);
    aspect-ratio: 12 / 7;
    right: -13vw;
    bottom: -180px;
    opacity: 0.14;
    filter: saturate(0.7) contrast(1.1);
}

/* =========================================================
   Vollflächig klickbare Cards
   Cards, die zu einer Unterseite führen, sind echte Links. Dadurch sind
   sie mit Maus, Touch und Tastatur vollständig bedienbar.
   ========================================================= */

.feature-card-link,
.sound-card-link {
    cursor: pointer;
}

.feature-card-link:focus-visible,
.sound-card-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.feature-card-link .link-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.feature-card-link:hover .link-arrow,
.feature-card-link:focus-visible .link-arrow {
    transform: translateX(4px);
}

.sound-card-link {
    color: var(--paper);
}

.sound-card-link .play-btn {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sound-card-link:hover .play-btn,
.sound-card-link:focus-visible .play-btn {
    transform: scale(1.06);
    background: rgba(200, 169, 107, 0.12);
    border-color: var(--gold);
}

@media (max-width: 760px) {
    .hero::after {
        width: 120vw;
        right: -48vw;
        top: 90px;
        opacity: 0.48;
    }

    .page-hero::after {
        width: 105vw;
        right: -44vw;
        top: 95px;
        opacity: 0.38;
    }

    .section-light::before {
        width: 100vw;
        right: -45vw;
        bottom: -80px;
        opacity: 0.1;
    }
}

.hero > .shell,
.page-hero > .shell,
.section-light > .shell {
    position: relative;
    z-index: 1;
}

/* =========================================================
   Hintergrundmotiv: Menschliche Kreativität + Technologie
   ========================================================= */

.human-ai-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.human-ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background-image: url('../images/human-ai-soundwave.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(1500px, 100%) auto;

    opacity: 0.85;
}

/*
 * Der eigentliche Inhalt liegt über der Hintergrundgrafik.
 */
.human-ai-section > .shell {
    position: relative;
    z-index: 1;
}

@media (max-width: 760px) {
    .human-ai-section::before {
        background-size: 1200px auto;
        background-position: 42% center;
        opacity: 0.65;
    }
}

.dns {display:none;}