@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; }
.vp { background: #f8f6f1; font-family: 'DM Sans', sans-serif; }

/* ================================================================
   HERO
   ================================================================ */
.vp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 108px;
}

.vp-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.vp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,8,6,.88) 0%, rgba(10,8,6,.65) 55%, rgba(10,8,6,.3) 100%),
        linear-gradient(to bottom, rgba(10,8,6,.2) 0%, transparent 40%, transparent 65%, rgba(10,8,6,.65) 100%);
    z-index: 1;
}

.vp-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.vp-eyebrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 2.5rem;
}

.vp-eyebrow-line {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: #e8a020;
    flex-shrink: 0;
}

.vp-hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: .9;
    letter-spacing: -.04em;
    color: #fff;
    margin: 0 0 2rem 0;
    animation: heroUp 1s cubic-bezier(.7,0,.3,1) .1s both;
}

.vp-hero-title em { font-style: italic; color: #e8a020; }

@keyframes heroUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vp-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    letter-spacing: .06em;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: heroUp 1s cubic-bezier(.7,0,.3,1) .25s both;
}

.vp-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #1a1714;
    border-radius: 999px;
    padding: .75rem 1.6rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: color .4s ease, transform .3s cubic-bezier(.7,0,.3,1);
    will-change: transform;
    animation: heroUp 1s cubic-bezier(.7,0,.3,1) .4s both;
}

.vp-pill-bg {
    position: absolute;
    inset: 0;
    background: #e8a020;
    transform: translateX(-101%);
    transition: transform .45s cubic-bezier(.7,0,.3,1);
    border-radius: 999px;
    z-index: 0;
}

.vp-pill:hover .vp-pill-bg { transform: translateX(0); }
.vp-pill:hover { color: #1a1714; }
.vp-pill-text { position: relative; z-index: 1; }

.vp-pill-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    animation: none;
}
.vp-pill-light .vp-pill-bg { background: #e8a020; }
.vp-pill-light:hover { color: #1a1714; border-color: #e8a020; }

.vp-hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 2rem 5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(10,8,6,.45);
    backdrop-filter: blur(12px);
}

.vp-hstat { flex: 1; text-align: center; }

.vp-hstat-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
}

.vp-hstat-lbl {
    display: block;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: .3rem;
}

.vp-hstat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ================================================================
   BRAND LOGO MARQUEE
   ================================================================ */
.vp-marquee {
    background: #fff;
    overflow: hidden;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
    position: relative;
}

.vp-marquee::before,
.vp-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.vp-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.vp-marquee::after  { right: 0; background: linear-gradient(270deg, #fff, transparent); }

.vp-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    animation: marqRun 38s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.vp-brand-chip {
    min-width: 126px;
    height: 82px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: .75rem 1rem;
    border: 1px solid rgba(26,23,20,.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26,23,20,.04);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.vp-brand-chip:hover {
    border-color: rgba(232,160,32,.32);
    background: #fff;
    transform: translateY(-2px);
}

.vp-brand-logo {
    max-height: 48px;
    max-width: 96px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: opacity .4s ease, transform .3s ease;
    opacity: 1;
}

.vp-brand-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

.vp-brand-fallback {
    display: none;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: rgba(26,23,20,.5);
}

.vp-brand-chip.is-fallback .vp-brand-logo {
    display: none;
}

.vp-brand-chip.is-fallback .vp-brand-fallback {
    display: block;
    font-size: 12px;
    color: #1a1714;
}

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

/* ================================================================
   SHARED
   ================================================================ */
.vp-section { padding: 5rem 0; }
.vp-bg-warm { background: #fff; }
.vp-container { max-width: 1200px; margin: 0 auto; padding: 0 5rem; }
.vp-section-header { margin-bottom: 4rem; }

.vp-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: #b0a898;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.vp-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: #e8a020;
}

.vp-label-light { color: rgba(255,255,255,.4); }

.vp-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: .97;
    letter-spacing: -.04em;
    color: #1a1714;
    margin: 0;
}

.vp-title em { font-style: italic; color: #e8a020; }
.vp-title-light { color: #fff; }
.vp-title-light em { color: #e8a020; }

.vp-body { font-size: 15px; line-height: 1.78; color: #6a6058; font-weight: 300; margin-bottom: 1.5rem; }
.vp-body strong { color: #1a1714; font-weight: 500; }
.vp-body-light { color: rgba(255,255,255,.65); }
.vp-body-light strong { color: #fff; }

.lm { display: block; overflow: hidden; padding-bottom: .05em; }
.li { display: inline-block; transform: translateY(110%); }

.reveal-line {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s cubic-bezier(.7,0,.3,1);
}
.reveal-line.is-visible { transform: translateY(0); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s ease, transform .85s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   INTRO
   ================================================================ */
.vp-intro { background: #f8f6f1; }

.vp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vp-features {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,.07);
    padding-top: 1.25rem;
}

.vp-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #3a3530;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-weight: 300;
}
.vp-features li:last-child { border-bottom: none; }

.vp-features-light li { color: rgba(255,255,255,.75); border-bottom-color: rgba(255,255,255,.1); }

.vp-ft-dot { width: 5px; height: 5px; border-radius: 50%; background: #e8a020; flex-shrink: 0; }

.vp-photo-stack { position: relative; height: 520px; }

.vp-photo {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.vp-photo-1 { top: 0; left: 0; width: 75%; height: 65%; }
.vp-photo-2 { bottom: 0; right: 0; width: 65%; height: 55%; border: 4px solid #f8f6f1; }

.vp-photo-badge {
    position: absolute;
    bottom: 30%;
    left: 5%;
    background: #1a1714;
    color: #e8a020;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    z-index: 2;
}

/* ================================================================
   PRODUITS
   ================================================================ */
.vp-produits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vp-pcard {
    background: #f8f6f1;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease, border-color .3s, box-shadow .3s;
    transition-delay: calc(var(--idx, 0) * 80ms);
}

.vp-pcard.is-visible { opacity: 1; transform: translateY(0); }
.vp-pcard:hover { border-color: rgba(232,160,32,.3); box-shadow: 0 12px 40px rgba(232,160,32,.08); }

.vp-pcard-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.vp-pcard:hover .vp-pcard-img { transform: scale(1.03); }

.vp-pcard-body { padding: 1.5rem; flex: 1; }

.vp-pcard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.vp-pcard-tag { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: #b0a898; font-weight: 500; }
.vp-pcard-tag-gold { color: #e8a020; }

.vp-pcard-duration {
    font-family: 'Fraunces', serif;
    font-size: .9rem;
    font-weight: 300;
    color: #e8a020;
    border: 1px solid rgba(232,160,32,.3);
    padding: .15rem .6rem;
    border-radius: 999px;
    font-style: italic;
}

.vp-pcard-title { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 300; color: #1a1714; margin: 0 0 .6rem 0; }
.vp-pcard-desc { font-size: 13px; color: #7a7268; line-height: 1.7; margin-bottom: 1rem; font-weight: 300; }

.vp-pcard-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(0,0,0,.06); padding-top: .75rem; }

.vp-pcard-list li {
    font-size: 12px;
    color: #5a5450;
    padding: .4rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid rgba(0,0,0,.04);
    font-weight: 300;
}
.vp-pcard-list li:last-child { border-bottom: none; }
.vp-pcard-list li::before { content: '✓'; color: #e8a020; font-size: 11px; flex-shrink: 0; }

.vp-pcard-premium { border-color: rgba(232,160,32,.2); background: #fff; }

/* ================================================================
   ACTION SECTION
   ================================================================ */
.vp-action-section {
    background: #1a1714;
    padding: 5rem 0;
}

.vp-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vp-action-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 480px;
}

.vp-action-photo {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vp-action-photo-main {
    grid-column: 1 / -1;
    grid-row: 1;
}

.vp-action-photo-sub {
    grid-column: 1;
    grid-row: 2;
}

.vp-action-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(248,246,241,.9);
    color: #6a6058;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 11px;
    backdrop-filter: blur(8px);
}

/* ================================================================
   AVANTAGES
   ================================================================ */
.vp-avantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}

.vp-av {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0,0,0,.07);
    transition: background .3s, opacity .7s ease, transform .7s ease;
    opacity: 0;
    transform: translateY(20px);
}

.vp-av:last-child { border-right: none; }
.vp-av.is-visible { opacity: 1; transform: translateY(0); }
.vp-av:hover { background: #f8f6f1; }

.vp-av-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(232,160,32,.2);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -.03em;
}

.vp-av-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 300; color: #1a1714; margin: 0 0 .6rem 0; }
.vp-av-desc { font-size: 13px; color: #7a7268; line-height: 1.7; margin: 0; font-weight: 300; }

/* ================================================================
   FAQ
   ================================================================ */
.vp-faq { max-width: 760px; }

.vp-faq-item { border-bottom: 1px solid rgba(0,0,0,.07); }

.vp-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #1a1714;
    text-align: left;
    transition: color .3s;
    letter-spacing: -.01em;
}

.vp-faq-q:hover { color: #e8a020; }

.vp-faq-arr {
    font-size: 1rem;
    color: #e8a020;
    transition: transform .35s cubic-bezier(.7,0,.3,1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.vp-faq-item.open .vp-faq-arr { transform: rotate(180deg); }

.vp-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.vp-faq-item.open .vp-faq-a { max-height: 200px; }

.vp-faq-a p { font-size: 14px; line-height: 1.78; color: #7a7268; padding-bottom: 1.5rem; margin: 0; font-weight: 300; }
.vp-faq-a strong { color: #1a1714; font-weight: 500; }

/* ================================================================
   CTA
   ================================================================ */
.vp-cta { background: #fff; border-top: 1px solid rgba(0,0,0,.06); }

.vp-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.vp-cta-right .vp-pill { animation: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .vp-container { padding: 0 2.5rem; }
    .vp-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vp-photo-stack { height: 340px; }
    .vp-produits { grid-template-columns: repeat(2, 1fr); }
    .vp-avantages { grid-template-columns: repeat(2, 1fr); }
    .vp-av { border-bottom: 1px solid rgba(0,0,0,.07); }
    .vp-action-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vp-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
    .vp-hero-content { padding: 0 2.5rem; }
    .vp-hero-stats { padding: 2rem 2.5rem; }
}

@media (max-width: 768px) {
    .vp-container { padding: 0 1.5rem; }
    .vp-section { padding: 4rem 0; }
    .vp-hero-content { padding: 0 1.5rem; }
    .vp-hero-stats { padding: 1.5rem; flex-wrap: wrap; gap: 1rem; }
    .vp-hstat-sep { display: none; }
    .vp-hstat { min-width: 45%; }
    .vp-produits { grid-template-columns: 1fr; }
    .vp-avantages { grid-template-columns: 1fr; border-radius: 0; }
    .vp-av { border-right: none; }
    .vp-action-photos { height: 300px; }
    .vp-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Fallback: Inhalt immer sichtbar nach kurzer Verzögerung ── */
@keyframes revealFallback     { to { opacity: 1; transform: translateY(0); } }
@keyframes revealLineFallback { to { transform: translateY(0); } }
.reveal       { animation: revealFallback     0.5s 0.4s both; }
.reveal-line  { animation: revealLineFallback 0.5s 0.4s both; }
.vp-pcard     { animation: revealFallback     0.5s 0.5s both; }
.vp-av        { animation: revealFallback     0.5s 0.6s both; }
.reveal.is-visible, .reveal-line.is-visible, .vp-pcard.is-visible, .vp-av.is-visible { animation: none; }
