/* ===================================================================
   REELS-SEKTION (von Lippen-LP für Home portiert, 1:1 visuell identisch)
   CSS-Variablen sind lokal im .reels-Container gescoped, damit sie nicht
   mit der Home-DNA (--black, --white, --gold etc.) kollidieren.
   =================================================================== */

.reels {
    --gold:        #b89a72;
    --gold-deep:   #8f7650;
    --gold-light:  #d4b88f;
    --gold-soft:   #ede3d2;
    --ink:         #111111;
    --ink-70:      #444444;
    --ink-40:      #8a8a8a;
    --line:        #d9d2c6;
    --cream-warm:  #ebe2d4;
    --paper:       #fbf8f2;
    --white:       #ffffff;
    --serif:       'Cormorant Garamond', 'Times New Roman', serif;
    --sans:        'Montserrat', -apple-system, sans-serif;

    padding: 120px 0 130px;
    background: var(--paper);
    overflow: hidden;
    position: relative;
    color: var(--ink);
    font-family: var(--sans);
}

.reels .intro-section-no {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--gold-deep);
}

.reels-head {
    max-width: 1280px; margin: 0 auto 60px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.reels-head h2 {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 0.95; letter-spacing: -0.015em;
    margin-top: 16px;
    color: var(--ink);
}
.reels-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.reels-head p {
    font-family: var(--serif); font-style: italic; font-size: 20px;
    color: var(--ink-70); line-height: 1.55;
    max-width: 440px; justify-self: end;
}

.reels-insta {
    max-width: 1280px; margin: 60px auto 0;
    padding: 0 40px;
    display: flex; align-items: center; gap: 20px;
    justify-content: center;
}
.reels .insta-card {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 14px 28px 14px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(17,17,17,0.04);
    text-decoration: none;
}
.reels .insta-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(184,154,114,0.12);
}
.reels .insta-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background:
        radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    padding: 3px;
    flex-shrink: 0;
    position: relative;
}
.reels .insta-avatar-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.reels .insta-avatar-inner img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.reels .insta-avatar-fallback {
    font-family: var(--serif); font-size: 22px; font-weight: 500;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-soft), var(--cream-warm));
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.reels .insta-info { display: flex; flex-direction: column; gap: 3px; }
.reels .insta-handle {
    font-family: var(--sans); font-size: 15px; font-weight: 600;
    color: var(--ink); letter-spacing: 0.01em;
    display: flex; align-items: center; gap: 6px;
}
.reels .insta-handle .insta-icon {
    width: 14px; height: 14px;
    display: inline-block;
}
.reels .insta-meta {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-40); font-weight: 500;
}
.reels .insta-meta b { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.06em; }

.reels-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
}
.reels-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reels-marquee-scroll 60s linear infinite;
}
.reels-marquee:hover { animation-play-state: paused; }
@keyframes reels-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.reels .reel-card {
    flex: 0 0 260px;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-soft) 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
}
.reels .reel-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reels .reel-card-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic; font-size: 14px;
    color: var(--gold-deep);
    text-align: center; padding: 16px;
}
.reels .reel-card-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.reels .reel-card:hover .reel-card-play { opacity: 1; }
.reels .reel-card-play svg {
    width: 40px; height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.reels .reel-card-caption {
    position: absolute; bottom: 14px; left: 14px; right: 14px;
    color: var(--white);
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .reels { padding: 70px 0 80px; }
    .reels-head {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
        margin-bottom: 40px;
    }
    .reels-head p { justify-self: start; }
    .reels .reel-card { flex: 0 0 200px; }
}
