/* ============================================================
   Studio B06 Hero-Slider — Cinematic Fullscreen
   ============================================================ */

:root {
    --sb06hs-gold: #d4a843;
    --sb06hs-gold-light: #e8c676;
    --sb06hs-gold-dark: #b08930;
    --sb06hs-white: #ffffff;
    --sb06hs-white-muted: rgba(255,255,255,0.7);
    --sb06hs-white-dim: rgba(255,255,255,0.3);
    --sb06hs-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sb06hs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Container ─── */
.sb06hs {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    user-select: none;
}

/* ─── Particle Canvas ─── */
.sb06hs-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ─── Slide Track ─── */
.sb06hs-track {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ─── Slide ─── */
.sb06hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: none;
}
.sb06hs-slide.sb06hs-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* ─── Background Layers ─── */
.sb06hs-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sb06hs-gradient {
    position: absolute;
    inset: -20%;
    transition: transform 12s linear;
    animation: sb06hs-bg-drift 20s ease-in-out infinite alternate;
}
@keyframes sb06hs-bg-drift {
    0%   { transform: scale(1.0) rotate(0deg); }
    100% { transform: scale(1.15) rotate(3deg); }
}

/* ─── Background Image + Overlay ─── */
.sb06hs-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    animation: sb06hs-ken-burns 20s ease-in-out infinite alternate;
    will-change: transform;
}
.sb06hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
@keyframes sb06hs-ken-burns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

/* ─── Geometric Decorations ─── */
.sb06hs-geo {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease 0.3s;
}
.sb06hs-active .sb06hs-geo {
    opacity: 1;
}

/* Diamond */
.sb06hs-geo-diamond {
    width: 200px; height: 200px;
    right: 12%; top: 15%;
    border: 1px solid rgba(212,168,67,0.2);
    transform: rotate(45deg);
    animation: sb06hs-float 8s ease-in-out infinite;
}
.sb06hs-geo-diamond::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212,168,67,0.15);
}
@keyframes sb06hs-float {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%      { transform: rotate(45deg) translateY(-20px); }
}

/* Circle */
.sb06hs-geo-circle {
    width: 300px; height: 300px;
    left: -80px; bottom: 10%;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    animation: sb06hs-rotate-slow 30s linear infinite;
}
.sb06hs-geo-circle::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(212,168,67,0.1);
    border-radius: 50%;
}
@keyframes sb06hs-rotate-slow {
    to { transform: rotate(360deg); }
}

/* Line */
.sb06hs-geo-line {
    width: 1px; height: 40%;
    right: 25%; top: 0;
    background: linear-gradient(180deg, transparent, rgba(212,168,67,0.15), transparent);
    animation: sb06hs-line-pulse 4s ease-in-out infinite;
}
@keyframes sb06hs-line-pulse {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 0.8; }
}

/* Heart (Dating) */
.sb06hs-geo-heart {
    right: 10%; top: 20%;
    width: 160px; height: 160px;
    opacity: 0.15;
    animation: sb06hs-heartbeat 2s ease-in-out infinite;
}
.sb06hs-geo-heart::before,
.sb06hs-geo-heart::after {
    content: '';
    position: absolute;
    width: 80px; height: 130px;
    border-radius: 80px 80px 0 0;
    background: rgba(212,168,67,0.15);
}
.sb06hs-geo-heart::before {
    left: 80px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}
.sb06hs-geo-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}
@keyframes sb06hs-heartbeat {
    0%, 100% { transform: scale(1); }
    15%      { transform: scale(1.1); }
    30%      { transform: scale(1); }
    45%      { transform: scale(1.08); }
}

/* Sparkles */
.sb06hs-geo-sparkles {
    left: 8%; bottom: 25%;
    width: 100px; height: 100px;
}
.sb06hs-geo-sparkles::before,
.sb06hs-geo-sparkles::after {
    content: '✦';
    position: absolute;
    color: rgba(212,168,67,0.3);
    font-size: 24px;
    animation: sb06hs-twinkle 3s ease-in-out infinite;
}
.sb06hs-geo-sparkles::before { top: 0; left: 20px; animation-delay: 0.5s; }
.sb06hs-geo-sparkles::after  { bottom: 10px; right: 0; font-size: 16px; animation-delay: 1.5s; }
@keyframes sb06hs-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50%      { opacity: 0.8; transform: scale(1.2); }
}

/* Scissors (Services) */
.sb06hs-geo-scissors {
    right: 8%; top: 20%;
    font-size: 80px;
    color: rgba(212,168,67,0.08);
    animation: sb06hs-scissors-snip 3s ease-in-out infinite;
}
.sb06hs-geo-scissors::before {
    content: '✂';
}
@keyframes sb06hs-scissors-snip {
    0%, 100% { transform: rotate(0deg); }
    25%      { transform: rotate(-15deg); }
    50%      { transform: rotate(0deg); }
}

/* Wave */
.sb06hs-geo-wave {
    left: 0; bottom: 0;
    width: 100%; height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(212,168,67,0.04)' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,30 1440,60 L1440,120 L0,120Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    animation: sb06hs-wave-drift 8s ease-in-out infinite alternate;
}
@keyframes sb06hs-wave-drift {
    0%   { transform: translateX(-30px); }
    100% { transform: translateX(30px); }
}

/* Rings (Bridal) */
.sb06hs-geo-rings {
    right: 15%; top: 25%;
    width: 100px; height: 60px;
    animation: sb06hs-float 6s ease-in-out infinite;
}
.sb06hs-geo-rings::before,
.sb06hs-geo-rings::after {
    content: '';
    position: absolute;
    width: 50px; height: 50px;
    border: 2px solid rgba(212,168,67,0.15);
    border-radius: 50%;
}
.sb06hs-geo-rings::before { left: 0; top: 5px; }
.sb06hs-geo-rings::after  { left: 30px; top: 5px; }

/* Petals */
.sb06hs-geo-petals {
    left: 5%; bottom: 20%;
    width: 60px; height: 60px;
    animation: sb06hs-petal-fall 10s linear infinite;
}
.sb06hs-geo-petals::before {
    content: '✿';
    position: absolute;
    font-size: 40px;
    color: rgba(212,168,67,0.12);
}
@keyframes sb06hs-petal-fall {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    100% { transform: translateY(60px) rotate(90deg); opacity: 0; }
}

/* DNA (Tools) */
.sb06hs-geo-dna {
    right: 10%; top: 10%;
    width: 80px; height: 200px;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 18px,
        rgba(212,168,67,0.08) 18px,
        rgba(212,168,67,0.08) 20px
    );
    animation: sb06hs-dna-twist 6s linear infinite;
    border-radius: 40px;
}
@keyframes sb06hs-dna-twist {
    0%   { transform: perspective(200px) rotateY(0deg); }
    100% { transform: perspective(200px) rotateY(360deg); }
}

/* Dots Grid */
.sb06hs-geo-dots {
    left: 5%; bottom: 15%;
    width: 120px; height: 120px;
    background-image: radial-gradient(rgba(212,168,67,0.12) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    animation: sb06hs-float 10s ease-in-out infinite;
}

/* Pin (Contact) */
.sb06hs-geo-pin {
    right: 12%; top: 22%;
    font-size: 60px;
    color: rgba(212,168,67,0.1);
    animation: sb06hs-bounce-pin 2s ease-in-out infinite;
}
.sb06hs-geo-pin::before {
    content: '📍';
}
@keyframes sb06hs-bounce-pin {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

/* Clock */
.sb06hs-geo-clock {
    left: 8%; bottom: 25%;
    width: 70px; height: 70px;
    border: 2px solid rgba(212,168,67,0.1);
    border-radius: 50%;
}
.sb06hs-geo-clock::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 2px; height: 22px;
    background: rgba(212,168,67,0.2);
    transform-origin: bottom center;
    animation: sb06hs-clock-hand 8s linear infinite;
}
@keyframes sb06hs-clock-hand {
    to { transform: rotate(360deg); }
}

/* ─── Content ─── */
.sb06hs-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

/* Eyebrow */
.sb06hs-eyebrow {
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--sb06hs-gold);
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 16px;
}
.sb06hs-active .sb06hs-eyebrow {
    animation: sb06hs-fade-up 0.8s var(--sb06hs-ease-out) 0.2s forwards;
}

/* Title */
.sb06hs-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--sb06hs-white);
    margin: 0 0 4px;
}
.sb06hs-title-split {
    display: flex;
    gap: 0.3em;
    flex-wrap: wrap;
    justify-content: center;
}
.sb06hs-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-15deg);
}
.sb06hs-active .sb06hs-word:nth-child(1) {
    animation: sb06hs-word-in 0.9s var(--sb06hs-ease-out) 0.35s forwards;
}
.sb06hs-active .sb06hs-word:nth-child(2) {
    animation: sb06hs-word-in 0.9s var(--sb06hs-ease-out) 0.55s forwards;
}
.sb06hs-gold {
    color: var(--sb06hs-gold);
    font-style: italic;
}

/* Divider */
.sb06hs-divider {
    width: 80px;
    height: 1px;
    margin: 20px auto;
    overflow: hidden;
}
.sb06hs-divider span {
    display: block;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--sb06hs-gold), transparent);
    transform: translateX(-100%);
}
.sb06hs-active .sb06hs-divider span {
    animation: sb06hs-line-in 0.8s var(--sb06hs-ease-out) 0.7s forwards;
}

/* Subtitle */
.sb06hs-subtitle {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.7;
    color: var(--sb06hs-white-muted);
    margin: 0 0 32px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(20px);
}
.sb06hs-active .sb06hs-subtitle {
    animation: sb06hs-fade-up 0.8s var(--sb06hs-ease-out) 0.85s forwards;
}

/* CTA Button */
.sb06hs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1px solid var(--sb06hs-gold);
    border-radius: 50px;
    color: var(--sb06hs-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.4s, background 0.4s, box-shadow 0.4s, transform 0.3s;
}
.sb06hs-active .sb06hs-cta {
    animation: sb06hs-fade-up 0.8s var(--sb06hs-ease-out) 1.05s forwards;
}
.sb06hs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sb06hs-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--sb06hs-ease);
    z-index: -1;
}
.sb06hs-cta:hover {
    color: #1a1a1a;
    box-shadow: 0 8px 30px rgba(212,168,67,0.3);
    transform: translateY(-2px) !important;
    text-decoration: none;
}
.sb06hs-cta:hover::before {
    transform: scaleX(1);
}
.sb06hs-cta svg {
    transition: transform 0.3s ease;
}
.sb06hs-cta:hover svg {
    transform: translateX(4px);
}

/* ─── Animations ─── */
@keyframes sb06hs-fade-up {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes sb06hs-word-in {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}
@keyframes sb06hs-line-in {
    to { transform: translateX(0); }
}

/* ─── Slide Transitions ─── */
.sb06hs-slide.sb06hs-entering {
    animation: sb06hs-slide-enter 1s var(--sb06hs-ease-out) forwards;
}
.sb06hs-slide.sb06hs-leaving {
    animation: sb06hs-slide-leave 0.8s var(--sb06hs-ease) forwards;
    z-index: 0;
}
@keyframes sb06hs-slide-enter {
    from { opacity: 0; transform: scale(1.05); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes sb06hs-slide-leave {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.95); }
}

/* ─── Navigation ─── */
.sb06hs-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}
.sb06hs-arrow {
    width: 44px; height: 44px;
    border: 1px solid var(--sb06hs-white-dim);
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    color: var(--sb06hs-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.sb06hs-arrow:hover {
    border-color: var(--sb06hs-gold);
    color: var(--sb06hs-gold);
    background: rgba(212,168,67,0.1);
    transform: scale(1.1);
}

/* Dots */
.sb06hs-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.sb06hs-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 1px solid var(--sb06hs-white-dim);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--sb06hs-ease);
    position: relative;
}
.sb06hs-dot:hover {
    border-color: var(--sb06hs-gold);
}
.sb06hs-dot.sb06hs-dot-active {
    border-color: var(--sb06hs-gold);
    background: var(--sb06hs-gold);
    width: 32px;
    border-radius: 5px;
}

/* ─── Progress Bar ─── */
.sb06hs-progress {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 10;
}
.sb06hs-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--sb06hs-gold-dark), var(--sb06hs-gold-light));
    transition: none;
}
.sb06hs-progress-fill.sb06hs-animating {
    transition: width linear;
}

/* ─── Counter ─── */
.sb06hs-counter {
    position: absolute;
    top: 40px; right: 40px;
    z-index: 10;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
    color: var(--sb06hs-white-dim);
    letter-spacing: 2px;
}
.sb06hs-counter-current {
    color: var(--sb06hs-gold);
    font-weight: 700;
    font-size: 22px;
    vertical-align: -2px;
    transition: all 0.4s ease;
}
.sb06hs-counter-sep { margin: 0 4px; }

/* ─── Scroll Hint ─── */
.sb06hs-scroll-hint {
    position: absolute;
    bottom: 100px;
    left: 40px;
    z-index: 10;
    animation: sb06hs-scroll-fade 3s ease-in-out infinite;
}
.sb06hs-mouse {
    width: 22px; height: 36px;
    border: 2px solid var(--sb06hs-white-dim);
    border-radius: 11px;
    position: relative;
}
.sb06hs-mouse-wheel {
    width: 3px; height: 8px;
    background: var(--sb06hs-gold);
    border-radius: 3px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: sb06hs-wheel 2s ease-in-out infinite;
}
@keyframes sb06hs-wheel {
    0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}
@keyframes sb06hs-scroll-fade {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 0.8; }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .sb06hs-counter { top: 20px; right: 20px; }
    .sb06hs-scroll-hint { display: none; }
    .sb06hs-nav { bottom: 24px; gap: 12px; }
    .sb06hs-arrow { width: 36px; height: 36px; }
    .sb06hs-content { padding: 0 24px; }
    .sb06hs-eyebrow { font-size: 10px; letter-spacing: 4px; }
    .sb06hs-subtitle { font-size: 13px; }
    .sb06hs-cta { padding: 12px 28px; font-size: 12px; }
    .sb06hs-geo-diamond,
    .sb06hs-geo-circle,
    .sb06hs-geo-heart,
    .sb06hs-geo-scissors,
    .sb06hs-geo-dna { display: none; }
}
