.vb-wrap {
    position: relative;
    width: 100%;
    color: #fff;
    background: #000;
}

.vb-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.vb-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.vb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vb-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    pointer-events: none;
    text-align: left;
    padding: 60px;
}

.vb-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(72px, 9vw, 168px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 24px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    line-height: 0.95;
    max-width: none;
    white-space: nowrap;
    text-align: left;
    transform: translateY(0);
    will-change: opacity, transform;
}
.vb-title .italic { font-style: italic; font-weight: 300; }

.vb-subtitle {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 85%;
    letter-spacing: 0.01em;
    text-align: left;
    transform: translateY(0);
    will-change: opacity, transform;
}
