/* ============================================================
   VICKAYOR SCHOOLS — MOTION & MODERN UI LAYER
   Loaded AFTER vickayor_theme.css. Self-contained: deleting this
   file (and vickayor_motion.js) returns the site to its old look.

   Brand brown is kept as the base; amber/gold is added as the
   energy accent so the palette stays warm and coherent.
   ============================================================ */

:root {
    --vk-brown:      #7B3F00;
    --vk-brown-deep: #3E1F00;
    --vk-sienna:     #A0522D;
    --vk-tan:        #D2905A;
    --vk-amber:      #FFB020;
    --vk-amber-hot:  #FF8A3D;
    --vk-cream:      #FFF8F0;
    --vk-ink:        #1A1208;

    --vk-grad:       linear-gradient(120deg, #7B3F00 0%, #A0522D 38%, #FF8A3D 72%, #FFB020 100%);
    --vk-grad-soft:  linear-gradient(120deg, #3E1F00 0%, #7B3F00 55%, #A0522D 100%);

    --vk-ease:       cubic-bezier(.22,1,.36,1);       /* smooth decel */
    --vk-spring:     cubic-bezier(.34,1.56,.64,1);     /* slight overshoot */

    --vk-shadow:     0 18px 40px -18px rgba(62,31,0,.45);
    --vk-shadow-lg:  0 30px 60px -22px rgba(62,31,0,.55);
}

/* ------------------------------------------------------------
   ACCESSIBILITY — one switch disables every animation here.
   Respects the OS "reduce motion" setting.
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    /* Every animated element must end up visible - never leave content
       stranded at opacity 0 for someone who opted out of motion. */
    .vk-reveal, .vk-reveal > *,
    .vk-stagger, .vk-stagger > * { opacity: 1 !important; transform: none !important; }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        transition-delay: 0ms !important;
        animation-delay: 0ms !important;
        scroll-behavior: auto !important;
    }
    .vk-marquee__track { animation: none !important; }
    .vk-blob { display: none !important; }
}

html { scroll-behavior: smooth; }

/* ============================================================
   1. SCROLL PROGRESS BAR
   ============================================================ */
.vk-progress {
    position: fixed;
    top: 0; left: 0;
    height: 4px;
    width: 100%;
    z-index: 100;
    background: transparent;
    pointer-events: none;
}
.vk-progress__fill {
    height: 100%;
    width: 0%;
    background: var(--vk-grad);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 14px rgba(255,138,61,.75);
    transition: width .08s linear;
}

/* ============================================================
   2. NAVBAR — glass, shrink-on-scroll, animated links
   Hooks onto .header.scrolled, which custom.js already toggles.
   ============================================================ */
.header { transition: top .45s var(--vk-ease), height .45s var(--vk-ease); }

.header_content::before {
    transition: background .45s var(--vk-ease),
                box-shadow .45s var(--vk-ease),
                backdrop-filter .45s var(--vk-ease);
}

/* Frosted glass once the page is scrolled */
.header.scrolled .header_content::before {
    background: rgba(255, 248, 240, .82);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 18px 40px -20px rgba(62,31,0,.45) !important;
}
.header.scrolled { height: 88px; }

/* Logo reacts to scroll + hover */
.logo img {
    transition: transform .5s var(--vk-spring), filter .4s var(--vk-ease);
    will-change: transform;
}
.header.scrolled .logo img { transform: scale(.88); }
.logo:hover img { transform: rotate(-6deg) scale(1.04); }

/* --- Animated nav links --- */
.main_nav_item > a {
    position: relative;
    display: inline-block;
    transition: color .3s var(--vk-ease), transform .35s var(--vk-spring);
}
.main_nav_item > a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    height: 3px; width: 100%;
    border-radius: 3px;
    background: var(--vk-grad);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .4s var(--vk-ease);
}
.main_nav_item > a:hover { transform: translateY(-2px); }
.main_nav_item > a:hover::after,
.main_nav_item.active > a::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* --- Keep all seven nav items on one line --- */
.main_nav_list { white-space: nowrap; }
.main_nav_item { margin-right: 26px !important; }
.main_nav_item:last-child { margin-right: 0 !important; }
.logo_container { padding-left: 34px !important; }

/* --- Portal Login as a gradient pill CTA --- */
.main_nav_item.vk-cta > a {
    background: var(--vk-grad);
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .2px;
    box-shadow: 0 10px 22px -10px rgba(255,138,61,.9);
    overflow: hidden;
}
.main_nav_item.vk-cta > a::after { display: none; }
.main_nav_item.vk-cta > a::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.55), transparent);
    transition: left .7s var(--vk-ease);
}
.main_nav_item.vk-cta > a:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 30px -10px rgba(255,138,61,1);
}
.main_nav_item.vk-cta > a:hover::before { left: 130%; }

/* Header phone side panel */
.header_side {
    background: var(--vk-grad-soft) !important;
    transition: transform .4s var(--vk-ease);
}
.header_side:hover { transform: translateY(-2px); }

/* --- Hamburger: bars morph into an X --- */
.hamburger_container i { transition: transform .4s var(--vk-spring), color .3s ease; }
.hamburger_container:hover i { transform: rotate(90deg) scale(1.12); }

/* Mobile menu items slide in one after another */
.menu_container.active .menu_item {
    animation: vkSlideIn .5s var(--vk-ease) both;
}
.menu_container.active .menu_item:nth-child(1) { animation-delay: .05s; }
.menu_container.active .menu_item:nth-child(2) { animation-delay: .10s; }
.menu_container.active .menu_item:nth-child(3) { animation-delay: .15s; }
.menu_container.active .menu_item:nth-child(4) { animation-delay: .20s; }
.menu_container.active .menu_item:nth-child(5) { animation-delay: .25s; }
.menu_container.active .menu_item:nth-child(6) { animation-delay: .30s; }
.menu_container.active .menu_item:nth-child(7) { animation-delay: .35s; }

@keyframes vkSlideIn {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   3. HERO — aurora blobs, gradient headline, scroll cue
   ============================================================ */
.hero_slide_background { transform: scale(1.06); animation: vkKenBurns 18s ease-in-out infinite alternate; }
@keyframes vkKenBurns {
    from { transform: scale(1.06) translate3d(0,0,0); }
    to   { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); }
}

/* Warm gradient wash so white text always stays readable */
.hero_slide_container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,18,8,.35) 0%, rgba(62,31,0,.55) 55%, rgba(26,18,8,.78) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero_slide_content { position: relative; z-index: 3; }

/* Floating colour blobs behind the headline */
.vk-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}
.vk-blob--1 { width: 380px; height: 380px; background: #FF8A3D; top: 8%;  left: 6%;  animation: vkFloat 14s ease-in-out infinite; }
.vk-blob--2 { width: 300px; height: 300px; background: #FFB020; bottom: 10%; right: 8%; animation: vkFloat 18s ease-in-out infinite reverse; }
.vk-blob--3 { width: 260px; height: 260px; background: #A0522D; top: 42%; right: 32%; animation: vkFloat 22s ease-in-out infinite; }

@keyframes vkFloat {
    0%,100% { transform: translate3d(0,0,0) scale(1); }
    33%     { transform: translate3d(40px,-30px,0) scale(1.12); }
    66%     { transform: translate3d(-30px,25px,0) scale(.92); }
}

/* Headline: the highlighted word gets the gradient treatment */
.hero_slide_content h1 {
    text-shadow: 0 6px 40px rgba(0,0,0,.35);
    letter-spacing: -1px;
}
/* Kept as a filled highlight box rather than gradient text: the hero sits on a
   busy photo, where gradient glyphs lose contrast. The box stays legible and
   the gradient drifts instead. */
.hero_slide_content h1 span {
    background: linear-gradient(120deg, #7B3F00, #A0522D, #FF8A3D, #FFB020, #FF8A3D, #A0522D, #7B3F00) !important;
    background-size: 300% 100% !important;
    animation: vkPop .8s var(--vk-spring) both .25s, vkShift 9s ease-in-out infinite 1s;
    color: #fff;
    border-radius: 10px;
    padding: 2px 16px !important;
    box-shadow: 0 12px 30px -10px rgba(255,138,61,.75);
    position: relative;
    display: inline-block;
}
@keyframes vkShift {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}
@keyframes vkPop {
    from { opacity: 0; transform: translateY(14px) scale(.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Slider prev/next buttons */
.hero_slider_nav { transition: background .35s var(--vk-ease), transform .35s var(--vk-spring); }
.hero_slider_nav:hover { background: var(--vk-grad) !important; transform: scale(1.12); }

/* Bouncing scroll cue */
.vk-scrollcue {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: .85;
    text-decoration: none;
}
.vk-scrollcue:hover { color: var(--vk-amber); text-decoration: none; }
.vk-scrollcue__mouse {
    width: 26px; height: 42px;
    border: 2px solid currentColor;
    border-radius: 999px;
    position: relative;
}
.vk-scrollcue__mouse::after {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: currentColor;
    animation: vkWheel 1.6s var(--vk-ease) infinite;
}
@keyframes vkWheel {
    0%   { opacity: 0; transform: translateY(0); }
    30%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ============================================================
   4. MARQUEE TICKER
   ============================================================ */
.vk-marquee {
    background: #fff;
    border-top: 1px solid rgba(123,63,0,.14);
    border-bottom: 1px solid rgba(123,63,0,.14);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    /* soften both edges so items fade in/out instead of clipping */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.vk-marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    animation: vkScroll 28s linear infinite;
    will-change: transform;
}
.vk-marquee:hover .vk-marquee__track { animation-play-state: paused; }
.vk-marquee__item {
    color: var(--vk-brown);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 42px;
}
.vk-marquee__dot { color: var(--vk-amber-hot); opacity: 1; font-size: 14px; }
@keyframes vkScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   5. SCROLL REVEAL SYSTEM
   JS adds .is-visible when the element enters the viewport.
   ============================================================ */
.vk-reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .8s var(--vk-ease), transform .8s var(--vk-ease);
    will-change: opacity, transform;
}
.vk-reveal.is-visible { opacity: 1; transform: none; }

.vk-reveal[data-reveal="left"]  { transform: translateX(-48px); }
.vk-reveal[data-reveal="right"] { transform: translateX(48px); }
.vk-reveal[data-reveal="zoom"]  { transform: scale(.9); }
.vk-reveal[data-reveal="flip"]  { transform: perspective(900px) rotateX(-12deg) translateY(30px); }

/* Stagger children of a container */
.vk-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--vk-ease), transform .7s var(--vk-ease);
}
.vk-stagger.is-visible > * { opacity: 1; transform: none; }
.vk-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.vk-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.vk-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.vk-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.vk-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
.vk-stagger.is-visible > *:nth-child(6) { transition-delay: .55s; }

/* ============================================================
   6. SECTION TITLES — gradient text + animated rule
   ============================================================ */
.section_title h1 {
    background: var(--vk-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.8px;
}
.section_title h1::before {
    background: var(--vk-grad) !important;
    height: 4px !important;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .9s var(--vk-ease) .2s;
}
.vk-reveal.is-visible .section_title h1::before,
.section_title.is-visible h1::before { transform: scaleX(1); }

/* ============================================================
   7. CARDS — lift, glow, gradient edge
   ============================================================ */
.hero_box {
    border-radius: 18px;
    transition: transform .45s var(--vk-spring), box-shadow .45s var(--vk-ease), background .45s var(--vk-ease);
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.hero_box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--vk-grad);
    opacity: 0;
    transition: opacity .45s var(--vk-ease);
    z-index: 0;
}
.hero_box > * { position: relative; z-index: 1; }
.hero_box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--vk-shadow-lg);
    background: transparent !important;
}
.hero_box:hover::before { opacity: 1; }
.hero_box:hover .hero_box_title,
.hero_box:hover .hero_box_link { color: #fff !important; }
.hero_box img.svg { transition: transform .5s var(--vk-spring); }
.hero_box:hover img.svg { transform: scale(1.18) rotate(-8deg); }

/* Generic lift for feature/event/testimonial cards */
.vk-card {
    border-radius: 18px;
    transition: transform .45s var(--vk-spring), box-shadow .45s var(--vk-ease);
    will-change: transform;
}
.vk-card:hover { transform: translateY(-8px); box-shadow: var(--vk-shadow-lg); }

/* Events + testimonials get the same treatment */
.event, .testimonial {
    border-radius: 16px;
    transition: transform .45s var(--vk-spring), box-shadow .45s var(--vk-ease);
}
.event:hover, .testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--vk-shadow);
}
.event_date {
    border-radius: 12px;
    transition: transform .45s var(--vk-spring), background .4s var(--vk-ease);
}
.event:hover .event_date { transform: scale(1.08) rotate(-4deg); }

/* ============================================================
   8. STATS COUNTER BAND
   ============================================================ */
.vk-stats {
    background: var(--vk-grad-soft);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.vk-stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255,176,32,.28), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255,138,61,.28), transparent 45%);
    pointer-events: none;
}
.vk-stat { text-align: center; position: relative; z-index: 1; padding: 14px 0; }
.vk-stat__num {
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
    display: block;
}
.vk-stat__num sup { font-size: 26px; color: var(--vk-amber); margin-left: 2px; }
.vk-stat__label {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

/* ============================================================
   9. BUTTONS — shine sweep + magnetic nudge
   ============================================================ */
.vk-btn, .newsletter_submit_btn, .search_submit_button {
    position: relative;
    overflow: hidden;
    border-radius: 999px !important;
    transition: transform .35s var(--vk-spring), box-shadow .35s var(--vk-ease);
    will-change: transform;
}
.vk-btn::before, .newsletter_submit_btn::before, .search_submit_button::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
    transition: left .7s var(--vk-ease);
}
.vk-btn:hover, .newsletter_submit_btn:hover, .search_submit_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -12px rgba(123,63,0,.85);
}
.vk-btn:hover::before, .newsletter_submit_btn:hover::before, .search_submit_button:hover::before { left: 130%; }

.vk-btn {
    display: inline-block;
    padding: 15px 34px;
    background: var(--vk-grad);
    color: #fff !important;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none !important;
    border: none;
}

/* ============================================================
   10. NEWSLETTER / FOOTER polish
   ============================================================ */
.newsletter { background: var(--vk-cream); }
.newsletter_email {
    border-radius: 999px !important;
    transition: box-shadow .35s var(--vk-ease), transform .35s var(--vk-ease);
}
.newsletter_email:focus {
    box-shadow: 0 0 0 4px rgba(255,176,32,.35);
    transform: translateY(-2px);
}
.footer_list_item a { transition: transform .3s var(--vk-ease), color .3s ease; display: inline-block; }
.footer_list_item a:hover { transform: translateX(6px); }
.menu_social_item a i, .footer_social .menu_social_item a i {
    transition: transform .4s var(--vk-spring), color .3s ease;
    display: inline-block;
}
.menu_social_item a:hover i { transform: translateY(-5px) scale(1.2); }

/* ============================================================
   11. RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .vk-blob--1 { width: 220px; height: 220px; }
    .vk-blob--2 { width: 180px; height: 180px; }
    .vk-blob--3 { display: none; }
    .vk-stat__num { font-size: 40px; }
    .vk-marquee__item { font-size: 12px; letter-spacing: 2px; gap: 28px; }
    .vk-marquee__track { gap: 28px; }
}

@media (max-width: 575px) {
    .vk-stat { padding: 18px 0; }
    .vk-stat__num { font-size: 34px; }
    .vk-scrollcue { display: none; }
    .vk-blob { filter: blur(48px); opacity: .42; }
    .vk-reveal { transform: translateY(24px); }
}

/* ============================================================
   12. CUSTOM ANIMATED CURSOR
   A small solid dot that tracks precisely, plus a larger ring
   that trails behind with easing and reacts to what's under it.

   Only activates on real pointer devices (never touch) and never
   under reduced-motion — vk-cursor-on is set by the JS.
   ============================================================ */
/* --- The torch beam --------------------------------------------------
   A warm radial light that follows the pointer. mix-blend-mode: screen
   means it can only ever BRIGHTEN what is under it - like a real torch,
   it lifts dark areas and does nothing to white ones. It never darkens
   text, so readability is unaffected. */
.vk-torch {
    position: fixed;
    top: 0; left: 0;
    width: 460px; height: 460px;
    margin: -230px 0 0 -230px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    opacity: 0;
    mix-blend-mode: screen;
    background: radial-gradient(circle closest-side,
                rgba(255,196,110,.42) 0%,
                rgba(255,150,60,.24)  32%,
                rgba(255,120,40,.10)  58%,
                rgba(255,110,30,0)    76%);
    transition: opacity .45s ease, width .5s var(--vk-ease), height .5s var(--vk-ease),
                margin .5s var(--vk-ease);
    will-change: transform;
}
.vk-cursor-on .vk-torch { opacity: 1; animation: vkTorchBreathe 5s ease-in-out infinite; }

/* Hovering something interactive: the torch flares wider and warmer */
.vk-cursor-on.vk-cursor-hot .vk-torch {
    width: 620px; height: 620px;
    margin: -310px 0 0 -310px;
}
/* Click: the beam punches in briefly */
.vk-cursor-on.vk-cursor-down .vk-torch {
    width: 380px; height: 380px;
    margin: -190px 0 0 -190px;
}
@keyframes vkTorchBreathe {
    0%, 100% { opacity: .92; }
    50%      { opacity: 1; }
}

/* --- The cursor itself -----------------------------------------------
   Two-tone on purpose. A cream core with a dark outline reads against
   BOTH light and dark surfaces, so it never disappears on the brown
   bands the way a single flat colour does. */
.vk-cursor-dot,
.vk-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s ease;
    will-change: transform;
}
.vk-cursor-on .vk-cursor-dot,
.vk-cursor-on .vk-cursor-ring { opacity: 1; }

.vk-cursor-dot {
    width: 9px; height: 9px;
    margin: -4.5px 0 0 -4.5px;
    background: var(--vk-cream);
    /* dark halo = visible on cream/white; cream core = visible on brown */
    box-shadow: 0 0 0 1.5px rgba(26,18,8,.65),
                0 0 12px 2px rgba(255,176,32,.9);
    transition: opacity .3s ease, transform .18s var(--vk-ease), background .25s ease;
}
.vk-cursor-ring {
    width: 38px; height: 38px;
    margin: -19px 0 0 -19px;
    border: 1.5px solid rgba(255,248,240,.95);
    /* paired inner/outer dark shadow keeps the ring legible on light ground */
    box-shadow: 0 0 0 1px rgba(26,18,8,.35),
                inset 0 0 0 1px rgba(26,18,8,.35),
                0 0 18px rgba(255,150,60,.55);
    transition: opacity .3s ease, width .3s var(--vk-spring), height .3s var(--vk-spring),
                margin .3s var(--vk-spring), border-color .3s ease,
                background .3s ease, transform .3s var(--vk-spring);
}

/* Over a link or button: ring swells and fills, dot tucks into it */
.vk-cursor-on.vk-cursor-hot .vk-cursor-dot { transform: scale(0); }
.vk-cursor-on.vk-cursor-hot .vk-cursor-ring {
    width: 68px; height: 68px;
    margin: -34px 0 0 -34px;
    border-color: rgba(255,214,150,.95);
    background: rgba(255,160,70,.18);
    box-shadow: 0 0 0 1px rgba(26,18,8,.25),
                0 0 34px rgba(255,150,60,.75);
}

/* Mouse held down: everything contracts */
.vk-cursor-on.vk-cursor-down .vk-cursor-ring { transform: scale(.78); }

/* Hide the native arrow, but KEEP it on form fields — losing the text
   caret in the contact form would be worse than having no custom cursor. */
.vk-cursor-on, .vk-cursor-on * { cursor: none !important; }
.vk-cursor-on input,
.vk-cursor-on textarea,
.vk-cursor-on select,
.vk-cursor-on [contenteditable] { cursor: auto !important; }

@media (hover: none), (pointer: coarse) {
    .vk-cursor-dot, .vk-cursor-ring, .vk-torch { display: none !important; }
}

/* ============================================================
   13. EVERY BUTTON, ONE MOTION LANGUAGE
   Covers the site's assorted button classes plus raw <button>
   and submit inputs, so nothing is left with a dead hover.
   ============================================================ */
.vk-btn,
.button, .button_1,
.register_button,
.album_btn,
.btn_submit, .btn_cancel,
.contact_submit_btn,
.newsletter_submit_btn,
.search_submit_button,
.hero_box_link,
.btn,
button,
input[type="submit"] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s var(--vk-spring),
                box-shadow .35s var(--vk-ease),
                background-color .3s var(--vk-ease),
                color .3s var(--vk-ease),
                letter-spacing .35s var(--vk-ease);
    will-change: transform;
}

/* Shine sweep */
.vk-btn::after,
.button::after, .button_1::after,
.register_button::after,
.album_btn::after,
.btn_submit::after, .btn_cancel::after,
.contact_submit_btn::after,
.newsletter_submit_btn::after,
.search_submit_button::after,
.btn::after,
button::after,
input[type="submit"]::after {
    content: '';
    position: absolute;
    top: 0; left: -130%;
    width: 55%; height: 100%;
    z-index: -1;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
    transition: left .65s var(--vk-ease);
    pointer-events: none;
}

.vk-btn:hover,
.button:hover, .button_1:hover,
.register_button:hover,
.album_btn:hover,
.btn_submit:hover, .btn_cancel:hover,
.contact_submit_btn:hover,
.newsletter_submit_btn:hover,
.search_submit_button:hover,
.btn:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -12px rgba(123,63,0,.65);
    letter-spacing: .6px;
}

.vk-btn:hover::after,
.button:hover::after, .button_1:hover::after,
.register_button:hover::after,
.album_btn:hover::after,
.btn_submit:hover::after, .btn_cancel:hover::after,
.contact_submit_btn:hover::after,
.newsletter_submit_btn:hover::after,
.search_submit_button:hover::after,
.btn:hover::after,
button:hover::after,
input[type="submit"]:hover::after { left: 135%; }

/* Press: squash down so clicks feel physical */
.vk-btn:active,
.button:active, .button_1:active,
.register_button:active,
.album_btn:active,
.btn_submit:active, .btn_cancel:active,
.contact_submit_btn:active,
.newsletter_submit_btn:active,
.search_submit_button:active,
.btn:active,
button:active,
input[type="submit"]:active {
    transform: translateY(-1px) scale(.97);
    box-shadow: 0 6px 14px -8px rgba(123,63,0,.7);
}

/* Keyboard users get a visible focus ring - never remove this */
.vk-btn:focus-visible,
.button:focus-visible, .button_1:focus-visible,
.register_button:focus-visible,
.album_btn:focus-visible,
.btn_submit:focus-visible, .btn_cancel:focus-visible,
.contact_submit_btn:focus-visible,
.newsletter_submit_btn:focus-visible,
.search_submit_button:focus-visible,
.btn:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: 3px solid var(--vk-amber);
    outline-offset: 3px;
}

/* The hamburger must not inherit button chrome */
.hamburger_container button,
.menu_close_container button { box-shadow: none !important; }

/* Arrow nudge on text CTAs */
.hero_box_link { display: inline-block; }
.hero_box_link:hover { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
    .vk-cursor-dot, .vk-cursor-ring, .vk-torch { display: none !important; }
    .vk-cursor-on, .vk-cursor-on * { cursor: auto !important; }
}
