/* =======================================================
   WENN DIE LAUTSPRECHER VERSCHWINDEN
   STYLE 02 — überarbeitet
   Breakpoints: 1024px (Tablet) · 768px (Mobil) · 480px (Klein)
======================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fbff;
    color:#17395c;
    font-family:'Inter',sans-serif;
    font-weight:300;
    line-height:1.7;
    overflow-x:hidden;
}

body.nav-open{
    overflow:hidden;
}

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

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =======================================
   HEADER
======================================= */

.header{
    position:sticky;
    top:0;
    background:rgba(248,251,255,.95);
    backdrop-filter:blur(12px);
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 0;
}

.logo{
    font-size:18px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;
}

nav{
    display:flex;
    gap:42px;
}

nav a{
    color:#17395c;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

nav a:hover{
    color:#b48a44;
}

/* Hamburger-Button (nur mobil sichtbar, siehe Responsive) */
.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:32px;
    height:32px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.hamburger span{
    display:block;
    height:2px;
    width:100%;
    background:#17395c;
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
}

.hamburger.open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.nav-overlay{
    display:none;
}

/* =======================================
   HERO
======================================= */

.hero{
    padding:80px 0 120px;
}

.hero-grid{
    display:grid;
    grid-template-columns:.88fr 1.12fr;
    gap:48px;
    align-items:center;
}

.eyebrow{
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#9aaaba;
    margin-bottom:24px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:88px;
    line-height:.95;
    font-weight:300;
    margin-bottom:36px;
}

.hero p{
    font-size:22px;
    color:#66788d;
    margin-bottom:46px;
    white-space:pre-line;
}

.button{
    display:inline-block;
    padding:18px 34px;
    border:1px solid #b48a44;
    color:#b48a44;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.35s;
}

.button:hover{
    background:#b48a44;
    color:#fff;
}

/* Bild-Rahmen sorgt dafür, dass das komplette Motiv (inkl. Sessel)
   immer sichtbar bleibt, unabhängig vom Seitenverhältnis des Fotos */

.hero-image{
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    box-shadow:none;
    padding:0;
    overflow:visible;
}

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

/* =======================================
   BLOG
======================================= */

.blog{
    padding:140px 0;
}

.section-head{
    max-width:700px;
    margin-bottom:70px;
}

.section-head h2{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:300;
    margin-bottom:20px;
}

.section-head p{
    font-size:22px;
    color:#6c7d8f;
    white-space:pre-line;
}

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

.card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:38px;
    font-weight:400;
    padding:30px 30px 10px;
    white-space:pre-line;
}

.card p{
    padding:0 30px;
    font-size:18px;
    color:#6d7f91;
    white-space:pre-line;
}

.card a{
    display:inline-block;
    margin:30px;
    color:#b48a44;
    font-weight:500;
}

/* =======================================
   BUCH
======================================= */

.book{
    padding:160px 0;
}

.book-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:90px;
    align-items:center;
}

.book-image img{
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.book-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:300;
    line-height:1;
    margin-bottom:35px;
}

.book-text p{
    font-size:22px;
    color:#6b7d8f;
    margin-bottom:45px;
    white-space:pre-line;
}

/* =======================================
   VINYL
======================================= */

.records{
    padding:150px 0;
}

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

.record{
    display:flex;
    flex-direction:column;
    position:relative;
    transition:.3s;
}

.record:hover{
    transform:translateY(-6px);
}

.record img{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:14px;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.record .ad-tag{
    position:absolute;
    top:8px;
    right:8px;
    background:rgba(23,57,92,.88);
    color:#fff;
    font-family:'Inter',sans-serif;
    font-size:10px;
    font-weight:500;
    letter-spacing:.5px;
    padding:4px 8px;
    border-radius:6px;
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
    z-index:2;
}

.record:hover .ad-tag,
.record a:focus-visible ~ .ad-tag{
    opacity:1;
}

.record h3{
    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:500;
    line-height:1.3;
    text-align:center;
    margin:10px 0 0;
}

.record p{
    display:none;
}

.record .record-artist{
    display:block;
    font-family:'Inter',sans-serif;
    font-size:11px;
    font-weight:400;
    color:#8ea0b3;
    text-align:center;
    letter-spacing:.5px;
    margin:2px 0 0;
}

.record a{
    display:block;
}

/* =======================================
   ABOUT
======================================= */

.about{
    padding:140px 0;
}

.about p{
    white-space:pre-line;
}

/* =======================================
   PLAYLIST
======================================= */

.playlist{
    padding:140px 0;
    text-align:center;
}

.playlist .section-head{
    margin:0 auto 40px;
}

/* =======================================
   NEWSLETTER
======================================= */

.newsletter{
    padding:140px 0;
    text-align:center;
}

.newsletter h2{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:300;
    margin-bottom:20px;
}

.newsletter p{
    font-size:22px;
    color:#6c7d8f;
    margin-bottom:40px;
    white-space:pre-line;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.newsletter input{
    width:420px;
    padding:18px 22px;
    border:1px solid #d8e2ea;
    font-size:16px;
    background:#fff;
}

.newsletter button{
    padding:18px 34px;
    border:none;
    background:#b48a44;
    color:#fff;
    cursor:pointer;
}

/* =======================================
   FOOTER
======================================= */

footer{
    padding:100px 0;
    background:#eef4f8;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

footer h3{
    font-family:'Cormorant Garamond',serif;
    font-size:44px;
    font-weight:300;
    margin-bottom:20px;
}

footer p,
footer a{
    color:#6c7d8f;
    line-height:1.8;
}

/* =======================================
   LOAD MORE
======================================= */

.more-records{
    display:none;
}

.load-more{
    text-align:center;
    margin-top:60px;
}

.load-more button{
    background:none;
    border:1px solid #b48a44;
    color:#b48a44;
    padding:14px 32px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    cursor:pointer;
    transition:.3s;
}

.load-more button:hover{
    background:#b48a44;
    color:#fff;
}

/* =======================================================
   RESPONSIVE
   Ein Breakpoint pro Größe, keine Überschneidungen.
======================================================= */

/* ---------- TABLET ≤ 1024px ---------- */
@media (max-width:1024px){

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

    .hero-text{
        max-width:none;
    }

    .hero-image{
        aspect-ratio:16/10;
    }

    .hero h1{
        font-size:64px;
    }

    .hero p{
        font-size:20px;
    }

    .book-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .book-image{
        max-width:420px;
        margin:0 auto;
        width:100%;
    }

    .record-grid{
        grid-template-columns:repeat(4,1fr);
        gap:18px;
    }

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

    .section-head h2,
    .book-text h2,
    .newsletter h2{
        font-size:56px;
    }
}

/* ---------- MOBIL ≤ 768px ---------- */
@media (max-width:768px){

    .container{
        width:88%;
    }

    /* Header / Hamburger */
    .header .container{
        padding:22px 0;
    }

    .hamburger{
        display:flex;
        flex-shrink:0;
    }

    .header .container{
        gap:16px;
        flex-wrap:nowrap;
    }

    .logo{
        font-size:13px;
        letter-spacing:1.5px;
        line-height:1.3;
    }

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:min(320px,78%);
        height:100vh;
        background:#f8fbff;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;
        gap:8px;
        padding:120px 40px 40px;
        box-shadow:-20px 0 50px rgba(23,57,92,.12);
        transition:right .35s ease;
        z-index:1000;
    }

    nav.open{
        right:0;
    }

    nav a{
        width:100%;
        padding:14px 0;
        font-size:14px;
        border-bottom:1px solid #e4ecf3;
    }

    .nav-overlay{
        display:none;
        position:fixed;
        inset:0;
        background:rgba(23,57,92,.25);
        z-index:998;
    }

    body.nav-open .nav-overlay{
        display:block;
    }

    /* Hero */
    .hero{
        padding:56px 0 80px;
    }

  .hero h1{
    font-size: clamp(3.4rem,5vw,4.8rem);
    line-height:.95;
    letter-spacing:-.02em;
    }

    .hero p{
        font-size:18px;
        margin-bottom:34px;
    }

    .hero-image{
        aspect-ratio:4/3;
        min-height:0;
        padding:0;
        border-radius:20px;
        overflow:hidden;
    }

    .hero-image img{
        height:100%;
        max-height:none;
        border-radius:20px;
    }

    /* Sektionen allgemein */
    .blog,
    .book,
    .records,
    .about,
    .playlist,
    .newsletter{
        padding:80px 0;
    }

    .section-head{
        margin-bottom:44px;
    }

    .section-head h2,
    .book-text h2,
    .newsletter h2{
        font-size:42px;
    }

    .section-head p,
    .book-text p,
    .newsletter p{
        font-size:18px;
    }

    .cards{
        grid-template-columns:1fr;
        gap:28px;
    }

    .card img{
        height:280px;
    }

    .card h3{
        font-size:30px;
    }

    /* Buch */
    .book-grid{
        gap:36px;
    }

    .book-image{
        max-width:320px;
    }

    .book-text{
        text-align:center;
    }

    .book-text .button{
        margin:0 auto;
    }

    /* Platten */
    .record-grid{
        grid-template-columns:repeat(3,1fr);
        gap:14px;
    }

    .record h3{
        font-size:12px;
    }

    /* Newsletter */
    .newsletter input{
        width:100%;
    }

    .newsletter form{
        flex-direction:column;
    }

    /* Bessere Lesbarkeit auf kleinen Bildschirmen: dunklerer Grauton
       für mehr Kontrast bei Fließtexten und Eyebrow-Labels */
    .eyebrow{
        color:#7c93a8;
    }

    .hero p,
    .section-head p,
    .card p,
    .book-text p,
    .newsletter p,
    .about p,
    footer p,
    footer a{
        color:#55697d;
    }

    /* Footer */
    footer{
        padding:64px 0;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:36px;
        text-align:center;
    }

    footer h3{
        font-size:32px;
    }
}

/* ---------- KLEIN ≤ 480px ---------- */
@media (max-width:480px){

    .container{
        width:90%;
    }

    .logo{
        font-size:14px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-image{
        aspect-ratio:1/1;
    }

    .section-head h2,
    .book-text h2,
    .newsletter h2{
        font-size:32px;
    }

    .record-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    footer h3{
        font-size:28px;
    }
}
